llvmpipe: Install unit tests on build/xxx/bin
authorJosé Fonseca <jfonseca@vmware.com>
Wed, 23 Dec 2009 15:21:56 +0000 (15:21 +0000)
committerJosé Fonseca <jfonseca@vmware.com>
Wed, 23 Dec 2009 16:38:50 +0000 (16:38 +0000)
scons/gallium.py
src/gallium/drivers/llvmpipe/SConscript

index 5f149f952844945a49e6441c3f7eb5c7e419c612..b7a14af4b1b6d58608833bc5813dc133431af5a0 100644 (file)
@@ -156,6 +156,12 @@ def symlink(target, source, env):
         os.remove(target)
     os.symlink(os.path.basename(source), target)
 
+def install_program(env, source):
+    source = str(source[0])
+    target_dir =  os.path.join(env.Dir('#.').srcnode().abspath, env['build'], 'bin')
+    target_name = str(source)
+    env.InstallAs(os.path.join(target_dir, target_name), source)
+
 def install_shared_library(env, source, version = ()):
     source = str(source[0])
     version = tuple(map(str, version))
@@ -169,6 +175,7 @@ def install_shared_library(env, source, version = ()):
         last = env.Command(os.path.join(target_dir, target_name), last, action) 
 
 def createInstallMethods(env):
+    env.AddMethod(install_program, 'InstallProgram')
     env.AddMethod(install_shared_library, 'InstallSharedLibrary')
 
 
index 3bd2e7001386e933f6b6bd6d16e2d7e37c1d77cd..de6156795d391dd3eab651e2d2a4d2e2556599a2 100644 (file)
@@ -76,19 +76,17 @@ env = env.Clone()
 
 env.Prepend(LIBS = [llvmpipe] + auxiliaries)
 
-env.Program(
-    target = 'lp_test_format',
-    source = ['lp_test_format.c', 'lp_test_main.c'],
-)
-
-env.Program(
-    target = 'lp_test_blend',
-    source = ['lp_test_blend.c', 'lp_test_main.c'],
-)
+tests = [
+    'format',
+    'blend',
+    'conv',
+]
 
-env.Program(
-    target = 'lp_test_conv',
-    source = ['lp_test_conv.c', 'lp_test_main.c'],
-)
+for test in tests:
+    target = env.Program(
+        target = 'lp_test_' + test,
+        source = ['lp_test_' + test + '.c', 'lp_test_main.c'],
+    )
+    env.InstallProgram(target)
 
 Export('llvmpipe')