commit | e2b88b593cf7f9350e9fc2703f831ff273322b4d | [log] [tgz] |
---|---|---|
author | Gavin Howard <yzena.tech@gmail.com> | Sun Jun 23 12:29:36 2019 -0600 |
committer | Gavin Howard <yzena.tech@gmail.com> | Sun Jun 23 12:29:36 2019 -0600 |
tree | b3c284a2464d29c9d0586fa98a1a57b22b261651 | |
parent | 1115ac26d0f3cc32fd325c65fd86133772d079bd [diff] [blame] |
Fix randmath.py
diff --git a/tests/randmath.py b/tests/randmath.py index 49d1c8f..d20d94c 100755 --- a/tests/randmath.py +++ b/tests/randmath.py
@@ -178,7 +178,10 @@ print("Test {}: {}".format(t, test)) - args = [ exe, options ] + if exe == "bc": + args = [ exe, options ] + else: + args = [ exe ] p = subprocess.run(args, input=indata.encode(), stdout=subprocess.PIPE, stderr=subprocess.PIPE)