reorganization
authorEduardo Ramos Testillano <eduardo.ramos.testillano@gmail.com>
Tue, 18 Jun 2013 23:14:44 +0000 (16:14 -0700)
committerEduardo Ramos Testillano <eduardo.ramos.testillano@gmail.com>
Tue, 18 Jun 2013 23:14:44 +0000 (16:14 -0700)
test/config/SConscript
test/core/SConscript
test/time/SConscript

index 9289358..2618190 100644 (file)
@@ -14,6 +14,6 @@ current_directory = str (pwd);
 libpath = current_directory.replace ('test/', 'source/');
 env.Append (LIBPATH = [libpath])
 
-result = env.Program ('anna_config_test', Glob ('*.cpp'))
+result = env.Program ('anna_test_config', Glob ('*.cpp'))
 
 Return ('result')
index f10ba20..3b28786 100644 (file)
@@ -14,6 +14,6 @@ current_directory = str (pwd);
 libpath = current_directory.replace ('test/', 'source/');
 env.Append (LIBPATH = [libpath])
 
-result = env.Program ('anna_core_test', Glob ('*.cpp'))
+result = env.Program ('anna_test_core', Glob ('*.cpp'))
 
 Return ('result')
index 21d24cf..b735337 100644 (file)
@@ -21,6 +21,6 @@ libpath_time = current_directory.replace (context, 'source/time/');
 
 localEnv.Append(LIBPATH = [libpath_core, libpath_xml, libpath_time])
 
-result = localEnv.Program ('anna_time_test', Glob ('*.cpp'))
+result = localEnv.Program ('anna_test_time', Glob ('*.cpp'))
 
 Return ('result')