aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordan sinclair <dj2@everburning.com>2019-02-21 13:47:33 -0500
committerGitHub <noreply@github.com>2019-02-21 13:47:33 -0500
commitef55db9f9fac6c4b34b494afff83bd0c0be6d180 (patch)
tree65e78d46c496bb24f569ca5623038c744990f85b /tests
parent9f9ce087f79a3012d3e364054be4f73e6be950b1 (diff)
downloadamber-ef55db9f9fac6c4b34b494afff83bd0c0be6d180.tar.gz
Flip the sample app to be less quiet. (#307)
The sample app outputting just an error code by default is confusing to users. The -s flag was originally created to turn on the summary mode. This CL removes -s from the help (but it still parses) and adds a -q flag instead. The quiet flag is used by the test runner to suppress the summary output.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run_tests.py b/tests/run_tests.py
index 578f5fd..ea57b19 100755
--- a/tests/run_tests.py
+++ b/tests/run_tests.py
@@ -47,7 +47,7 @@ class TestRunner:
def RunTest(self, tc):
print "Testing %s" % tc.GetInputPath()
- cmd = [self.options.test_prog_path]
+ cmd = [self.options.test_prog_path, '-q']
if tc.IsParseOnly():
cmd += ['-p']
cmd += [tc.GetInputPath()]