diff options
| author | Josh F <josh@vector35.com> | 2022-04-13 17:08:55 -0400 |
|---|---|---|
| committer | Josh F <josh@vector35.com> | 2022-04-13 17:08:55 -0400 |
| commit | 91eb7be1f537b15795559ffc62c1ee6ecdcdf412 (patch) | |
| tree | b4f31f72a4755241c1b47f41bc721ef3c24a459f | |
| parent | 8311f1186ee70ade2d84432d34c4fe406a2a0361 (diff) | |
Prevent shadowing binary tests with multiple oracles
| -rwxr-xr-x | suite/generator.py | 1 |
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) |
