From dd17d6f1a71fe0787d0e781f3490e7f9a66a6b0d Mon Sep 17 00:00:00 2001 From: anatoly techtonik Date: Thu, 20 Mar 2014 15:25:34 +0300 Subject: runtest.py: Remove double check if no tests are found. --- runtest.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/runtest.py b/runtest.py index 902b2a3..91ff8ba 100755 --- a/runtest.py +++ b/runtest.py @@ -280,13 +280,6 @@ for o, a in opts: elif o in ['-x', '--exec']: scons = a -if not args and not options.all and not testlistfile: - sys.stderr.write(usagestr + """ -runtest.py: No tests were specified. - Tests can be specified on the command line, read from file - with -f option, or discovered with -a to run all tests. -""") - sys.exit(1) # --- setup stdout/stderr --- @@ -721,8 +714,10 @@ else: tests.sort() if not tests: - sys.stderr.write("""\ + sys.stderr.write(usagestr + """ runtest.py: No tests were found. + Tests can be specified on the command line, read from file + with -f option, or discovered with -a to run all tests. """) sys.exit(1) -- cgit v0.12