summaryrefslogtreecommitdiff
path: root/test/regress.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress.py')
-rwxr-xr-xtest/regress.py5
1 files changed, 3 insertions, 2 deletions
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":