tests: Split out complex reverse-op tests to separate test file.

So they can be skipped if __rOP__'s are not supported on the target.  Also
fix the typo in the complex_special_methods.py filename.

Signed-off-by: Damien George <damien@micropython.org>
pull/6382/head
Damien George 2020-08-29 14:04:59 +10:00
rodzic 40d174ac7d
commit 0c7354afaf
3 zmienionych plików z 12 dodań i 7 usunięć

Wyświetl plik

@ -0,0 +1,10 @@
# test complex interacting with special reverse methods
class A:
def __radd__(self, x):
print("__radd__")
return 2
print(1j + A())

Wyświetl plik

@ -6,10 +6,5 @@ class A:
print("__add__")
return 1
def __radd__(self, x):
print("__radd__")
return 2
print(A() + 1j)
print(1j + A())

Wyświetl plik

@ -367,7 +367,7 @@ def run_tests(pyb, tests, args, result_dir):
if not has_complex:
skip_tests.add('float/complex1.py')
skip_tests.add('float/complex1_intbig.py')
skip_tests.add('float/complex_special_mehods.py')
skip_tests.add('float/complex_special_methods.py')
skip_tests.add('float/int_big_float.py')
skip_tests.add('float/true_value.py')
skip_tests.add('float/types.py')
@ -476,7 +476,7 @@ def run_tests(pyb, tests, args, result_dir):
skip_it |= skip_slice and is_slice
skip_it |= skip_async and is_async
skip_it |= skip_const and is_const
skip_it |= skip_revops and test_name.startswith("class_reverse_op")
skip_it |= skip_revops and "reverse_op" in test_name
skip_it |= skip_io_module and is_io_module
if args.list_tests: