summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh F <josh@vector35.com>2022-04-13 17:08:55 -0400
committerJosh F <josh@vector35.com>2022-04-13 17:08:55 -0400
commit91eb7be1f537b15795559ffc62c1ee6ecdcdf412 (patch)
treeb4f31f72a4755241c1b47f41bc721ef3c24a459f
parent8311f1186ee70ade2d84432d34c4fe406a2a0361 (diff)
Prevent shadowing binary tests with multiple oracles
-rwxr-xr-xsuite/generator.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/suite/generator.py b/suite/generator.py
index c251a89a..ca7b362f 100755
--- a/suite/generator.py
+++ b/suite/generator.py
@@ -234,6 +234,7 @@ class UnitTestFile:
name = binary[len(test_store):].replace(os.path.sep, "_").replace(".", "_")
if os.name == 'nt':
binary = binary.replace(os.sep, '/')
+ name += oracle_suffix
self.binary_tests += binary_test_string.format(name, binary + ".zip", oracle_suffix, config_settings)