diff options
| author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-03-04 00:13:27 +0300 |
|---|---|---|
| committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-03-04 00:13:27 +0300 |
| commit | 3ab6aa3a6d0506e805caa19369bef279c1c789b4 (patch) | |
| tree | 1232b7c9b796c907a7202dcd46f5008724058b05 /tests/run-tests | |
| parent | 89e570a5b4025976da66123032c58611f0f6cb17 (diff) | |
tests/basic: Split tests into working with small ints and not working.
Tests which don't work with small ints are suffixed with _intbig.py. Some
of these may still work with long long ints and need to be reclassified
later.
Diffstat (limited to 'tests/run-tests')
| -rwxr-xr-x | tests/run-tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-tests b/tests/run-tests index d568f23e8..bacaebea8 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -326,7 +326,7 @@ def run_tests(pyb, tests, args): test_name = os.path.splitext(test_basename)[0] is_native = test_name.startswith("native_") or test_name.startswith("viper_") is_endian = test_name.endswith("_endian") - is_int_big = test_name.startswith("int_big_") or test_name.endswith("_intbig") + is_int_big = test_name.startswith("int_big") or test_name.endswith("_intbig") is_set_type = test_name.startswith("set_") or test_name.startswith("frozenset") is_async = test_name.startswith("async_") |
