From b94512e4cce884ad2df4f86e0947f610468e89c2 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 20 Feb 2009 18:15:43 -0400 Subject: Added several more option baseline tests --- test/regress.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'test/regress.py') diff --git a/test/regress.py b/test/regress.py index 43cdef32..7035c42b 100755 --- a/test/regress.py +++ b/test/regress.py @@ -40,14 +40,15 @@ def test_regression(test_file): if command.startswith("-f - "): use_stdin = True - command = ("%s" % ledger) + command + command = ("%s" % ledger) + " --args-only --columns=80 " + command else: tempdata = tempfile.mkstemp() os.write(tempdata[0], string.join(data, '')) os.close(tempdata[0]) - command = ("%s -f \"%s\" " % (ledger, tempdata[1])) + command + command = (("%s -f \"%s\" " % (ledger, tempdata[1])) + + " --args-only --columns=80 " + command) output = [] while line != ">>>2\n": -- cgit v1.2.3