From 014a4bdbf3f927a92e4c3e7a9c15814aa2f64c7c Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 21 Feb 2009 04:12:52 -0400 Subject: Run regression and baseline tests using --verify --- test/regress.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'test/regress.py') diff --git a/test/regress.py b/test/regress.py index 745c9d5f..33efb06b 100755 --- a/test/regress.py +++ b/test/regress.py @@ -41,9 +41,10 @@ def test_regression(test_file): use_stdin = True if re.search('--columns', command): - command = ("%s" % ledger) + " --args-only " + command + command = ("%s" % ledger) + " --verify --args-only " + command else: - command = ("%s" % ledger) + " --args-only --columns=80 " + command + command = (("%s" % ledger) + + " --verify --args-only --columns=80 " + command) else: tempdata = tempfile.mkstemp() @@ -52,10 +53,10 @@ def test_regression(test_file): if re.search('--columns', command): command = (("%s -f \"%s\" " % (ledger, tempdata[1])) + - " --args-only " + command) + " --verify --args-only " + command) else: command = (("%s -f \"%s\" " % (ledger, tempdata[1])) + - " --args-only --columns=80 " + command) + " --verify --args-only --columns=80 " + command) output = [] while line != ">>>2\n": -- cgit v1.2.3