slightly more elegant way to pass around which tests to run

This commit is contained in:
Meredith L. Patterson 2013-11-22 12:00:14 -06:00
parent cc3160072b
commit 42e0707fb8
2 changed files with 6 additions and 4 deletions

View file

@ -93,6 +93,7 @@ env["ENV"].update(x for x in os.environ.items() if x[0].startswith("CCC_"))
#rootpath = env['ROOTPATH'] = os.path.abspath('.')
#env.Append(CPPPATH=os.path.join('#', "hammer"))
env['testruns'] = []
testruns = []
targets = ["$libpath",

View file

@ -1,6 +1,6 @@
# -*- python -*-
import os, os.path
Import('env libhammer_shared testruns')
Import('env libhammer_shared')
phpenv = env.Clone(IMPLICIT_COMMAND_DEPENDENCIES = 0)
@ -16,7 +16,8 @@ Default(swig_src, bindings_src, libhammer_php)
phptestenv = phpenv.Clone()
phptestenv['ENV']['LD_LIBRARY_PATH'] = os.path.dirname(str(libhammer_shared[0]))
phptests = phptestenv.Dir('Tests/')
testruns.append(phptestenv.Alias("testphp", phptestenv.Command(phptests, [libhammer_php], "phpunit -v --include-path "+os.getcwd()+" $TARGET")))
phptests = ['Tests']
testphp = phptestenv.Alias("testphp", phptestenv.Command(phptests, [libhammer_php], "phpunit -v --include-path "+os.getcwd()+" $TARGET"))
env['testruns'].append(testphp)
print "Testing: " + str([str(x[0]) for x in env['testruns']])