23 |
# Code to run unit_test executables |
# Code to run unit_test executables |
24 |
def runUnitTest(target, source, env): |
def runUnitTest(target, source, env): |
25 |
time_start = time.time() |
time_start = time.time() |
26 |
|
print "Executing test: " + str(source[0].abspath) |
27 |
app = str(source[0].abspath) |
app = str(source[0].abspath) |
28 |
if not env.Execute(app): |
if not env.Execute(app): |
29 |
open(str(target[0]),'w').write("PASSED\n") |
open(str(target[0]),'w').write("PASSED\n") |
30 |
else: |
else: |
31 |
return 1 |
return 1 |
32 |
print "Test execution time: ", round(time.time() - time_start), "seconds wall time" |
print "Test execution time: ", round(time.time() - time_start, 1), " seconds wall time for " + str(source[0].abspath) |
33 |
return None |
return None |
34 |
|
|
35 |
def runPyUnitTest(target, source, env): |
def runPyUnitTest(target, source, env): |
36 |
time_start = time.time() |
time_start = time.time() |
37 |
|
print "Executing test: " + str(source[0].abspath) |
38 |
app = 'python '+str(source[0].abspath) |
app = 'python '+str(source[0].abspath) |
39 |
if not env.Execute(app): |
if not env.Execute(app): |
40 |
open(str(target[0]),'w').write("PASSED\n") |
open(str(target[0]),'w').write("PASSED\n") |
41 |
else: |
else: |
42 |
return 1 |
return 1 |
43 |
print "Test execution time: ", round(time.time() - time_start), "seconds wall time" |
print "Test execution time: ", round(time.time() - time_start, 1), " seconds wall time for " + str(source[0].abspath) |
44 |
return None |
return None |