diff options
Diffstat (limited to 'test/runtest')
-rw-r--r-- | test/runtest/baseline/combined.py | 2 | ||||
-rw-r--r-- | test/runtest/baseline/fail.py | 2 | ||||
-rw-r--r-- | test/runtest/baseline/no_result.py | 2 | ||||
-rw-r--r-- | test/runtest/baseline/pass.py | 2 | ||||
-rw-r--r-- | test/runtest/fallback.py | 14 | ||||
-rw-r--r-- | test/runtest/print_time.py | 2 | ||||
-rw-r--r-- | test/runtest/python.py | 2 | ||||
-rw-r--r-- | test/runtest/simple/combined.py | 2 | ||||
-rw-r--r-- | test/runtest/simple/fail.py | 2 | ||||
-rw-r--r-- | test/runtest/simple/no_result.py | 2 | ||||
-rw-r--r-- | test/runtest/simple/pass.py | 2 | ||||
-rw-r--r-- | test/runtest/src.py | 2 | ||||
-rw-r--r-- | test/runtest/testlistfile.py | 2 |
13 files changed, 20 insertions, 18 deletions
diff --git a/test/runtest/baseline/combined.py b/test/runtest/baseline/combined.py index ab91e87..f575bc8 100644 --- a/test/runtest/baseline/combined.py +++ b/test/runtest/baseline/combined.py @@ -51,7 +51,7 @@ test.write_passing_test(['test', 'pass.py']) # NOTE: The "test/fail.py : FAIL" and "test/pass.py : PASS" lines both # have spaces at the end. -expect = r"""qmtest.py run --output baseline.qmr --format none --result-stream="scons_tdb.AegisBaselineStream" test +expect = r"""qmtest run --output baseline.qmr --format none --result-stream="scons_tdb.AegisBaselineStream" test --- TEST RESULTS ------------------------------------------------------------- %(test_fail_py)s : FAIL diff --git a/test/runtest/baseline/fail.py b/test/runtest/baseline/fail.py index b61e5da..3a50925 100644 --- a/test/runtest/baseline/fail.py +++ b/test/runtest/baseline/fail.py @@ -38,7 +38,7 @@ test.write_failing_test(['test', 'fail.py']) # NOTE: The "test/fail.py : FAIL" line has spaces at the end. -expect = r"""qmtest.py run --output baseline.qmr --format none --result-stream="scons_tdb.AegisBaselineStream" test/fail.py +expect = r"""qmtest run --output baseline.qmr --format none --result-stream="scons_tdb.AegisBaselineStream" test/fail.py --- TEST RESULTS ------------------------------------------------------------- test/fail.py : FAIL diff --git a/test/runtest/baseline/no_result.py b/test/runtest/baseline/no_result.py index 9ef815d..9b1782c 100644 --- a/test/runtest/baseline/no_result.py +++ b/test/runtest/baseline/no_result.py @@ -36,7 +36,7 @@ test.subdir('test') test.write_no_result_test(['test', 'no_result.py']) -expect = r"""qmtest.py run --output baseline.qmr --format none --result-stream="scons_tdb.AegisBaselineStream" test/no_result.py +expect = r"""qmtest run --output baseline.qmr --format none --result-stream="scons_tdb.AegisBaselineStream" test/no_result.py --- TEST RESULTS ------------------------------------------------------------- test/no_result.py : NO_RESULT diff --git a/test/runtest/baseline/pass.py b/test/runtest/baseline/pass.py index f574e57..1bc6af1 100644 --- a/test/runtest/baseline/pass.py +++ b/test/runtest/baseline/pass.py @@ -38,7 +38,7 @@ test.write_passing_test(['test', 'pass.py']) # NOTE: The "test/pass.py : PASS" line has spaces at the end. -expect = r"""qmtest.py run --output baseline.qmr --format none --result-stream="scons_tdb.AegisBaselineStream" test/pass.py +expect = r"""qmtest run --output baseline.qmr --format none --result-stream="scons_tdb.AegisBaselineStream" test/pass.py --- TEST RESULTS ------------------------------------------------------------- test/pass.py : PASS diff --git a/test/runtest/fallback.py b/test/runtest/fallback.py index 8b6ae42..76aebe6 100644 --- a/test/runtest/fallback.py +++ b/test/runtest/fallback.py @@ -26,7 +26,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" """ Test that runtest.py falls back (with a warning) using --noqmtest -if it can't find qmtest.py on the $PATH. +if it can't find qmtest on the $PATH. """ import os @@ -41,14 +41,16 @@ _python_ = TestRuntest._python_ test = TestRuntest.TestRuntest(noqmtest=1) -qmtest_py = test.where_is('qmtest.py') - -if qmtest_py: - dir = os.path.split(qmtest_py)[0] +# qmtest may be in more than one location in your path +while test.where_is('qmtest'): + qmtest=test.where_is('qmtest') + dir = os.path.split(qmtest)[0] path = string.split(os.environ['PATH'], os.pathsep) path.remove(dir) os.environ['PATH'] = string.join(path, os.pathsep) +print "PATH: %s"%os.environ['PATH'] + test.subdir('test') test_pass_py = os.path.join('test', 'pass.py') @@ -92,7 +94,7 @@ NO RESULT from the following test: """ % locals() expect_stderr = """\ -Warning: qmtest.py not found on $PATH, assuming --noqmtest option. +Warning: qmtest not found on $PATH, assuming --noqmtest option. FAILING TEST STDERR NO RESULT TEST STDERR PASSING TEST STDERR diff --git a/test/runtest/print_time.py b/test/runtest/print_time.py index 39bf810..0abfe93 100644 --- a/test/runtest/print_time.py +++ b/test/runtest/print_time.py @@ -52,7 +52,7 @@ test.write_passing_test(['test', 'pass.py']) # NOTE: The "test/fail.py : FAIL" and "test/pass.py : PASS" lines both # have spaces at the end. -expect = r"""qmtest.py run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream\(print_time='1'\)" test +expect = r"""qmtest run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream\(print_time='1'\)" test --- TEST RESULTS ------------------------------------------------------------- %(test_fail_py)s : FAIL diff --git a/test/runtest/python.py b/test/runtest/python.py index 95b5f0f..aa1af22 100644 --- a/test/runtest/python.py +++ b/test/runtest/python.py @@ -52,7 +52,7 @@ test.write_passing_test(['test', 'pass.py']) # NOTE: The "test/pass.py : PASS" line has spaces at the end. -expect = r"""qmtest.py run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream" --context python="%(mypython)s" test +expect = r"""qmtest run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream" --context python="%(mypython)s" test --- TEST RESULTS ------------------------------------------------------------- %(test_pass_py)s : PASS diff --git a/test/runtest/simple/combined.py b/test/runtest/simple/combined.py index 58d2f27..6bee872 100644 --- a/test/runtest/simple/combined.py +++ b/test/runtest/simple/combined.py @@ -51,7 +51,7 @@ test.write_passing_test(['test', 'pass.py']) # NOTE: The "test/fail.py : FAIL" and "test/pass.py : PASS" lines both # have spaces at the end. -expect = r"""qmtest.py run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream" test +expect = r"""qmtest run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream" test --- TEST RESULTS ------------------------------------------------------------- %(test_fail_py)s : FAIL diff --git a/test/runtest/simple/fail.py b/test/runtest/simple/fail.py index ec9f532..1e8e7b6 100644 --- a/test/runtest/simple/fail.py +++ b/test/runtest/simple/fail.py @@ -38,7 +38,7 @@ test.write_failing_test(['test', 'fail.py']) # NOTE: The "test/fail.py : FAIL" line has spaces at the end. -expect = r"""qmtest.py run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream" test/fail.py +expect = r"""qmtest run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream" test/fail.py --- TEST RESULTS ------------------------------------------------------------- test/fail.py : FAIL diff --git a/test/runtest/simple/no_result.py b/test/runtest/simple/no_result.py index 4ec6e78..16499c8 100644 --- a/test/runtest/simple/no_result.py +++ b/test/runtest/simple/no_result.py @@ -36,7 +36,7 @@ test.subdir('test') test.write_no_result_test(['test', 'no_result.py']) -expect = r"""qmtest.py run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream" test/no_result.py +expect = r"""qmtest run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream" test/no_result.py --- TEST RESULTS ------------------------------------------------------------- test/no_result.py : NO_RESULT diff --git a/test/runtest/simple/pass.py b/test/runtest/simple/pass.py index c3a8b02..561665a 100644 --- a/test/runtest/simple/pass.py +++ b/test/runtest/simple/pass.py @@ -38,7 +38,7 @@ test.write_passing_test(['test', 'pass.py']) # NOTE: The "test/pass.py : PASS" line has spaces at the end. -expect = r"""qmtest.py run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream" test/pass.py +expect = r"""qmtest run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream" test/pass.py --- TEST RESULTS ------------------------------------------------------------- test/pass.py : PASS diff --git a/test/runtest/src.py b/test/runtest/src.py index 3063a4e..eebdce4 100644 --- a/test/runtest/src.py +++ b/test/runtest/src.py @@ -52,7 +52,7 @@ test.write_passing_test(['src', 'suite', 'passTests.py']) # NOTE: The "test/pass.py : PASS" and "test/passTests.py : PASS" lines # both have spaces at the end. -expect = r"""qmtest.py run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream" src +expect = r"""qmtest run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream" src --- TEST RESULTS ------------------------------------------------------------- %(src_passTests_py)s : PASS diff --git a/test/runtest/testlistfile.py b/test/runtest/testlistfile.py index d738530..0ca822d 100644 --- a/test/runtest/testlistfile.py +++ b/test/runtest/testlistfile.py @@ -55,7 +55,7 @@ test.write('t.txt', """\ # NOTE: The "test/fail.py : FAIL" and "test/pass.py : PASS" lines both # have spaces at the end. -expect = """qmtest.py run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream" %(test_pass_py)s +expect = """qmtest run --output results.qmr --format none --result-stream="scons_tdb.AegisChangeStream" %(test_pass_py)s --- TEST RESULTS ------------------------------------------------------------- %(test_pass_py)s : PASS |