Skip to content

Commit fc439bd

Browse files
committed
Fix more test failures
1 parent a241463 commit fc439bd

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

tests/IronPython.Tests/Cases/IronPythonCasesManifest.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,3 +206,6 @@ RunCondition=$(IS_POSIX) # Module resource is Posix-specific
206206
[IronPython.modules.system_related.test_sys_getframe]
207207
IsolationLevel=PROCESS # https://github.com/IronLanguages/ironpython3/issues/489
208208
FullFrames=true
209+
210+
[IronPython.modules.system_related.test_sys]
211+
RunCondition=NOT $(IS_NETCOREAPP) # https://github.com/IronLanguages/ironpython3/issues/2055

tests/suite/test_array_stdlib.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import sys
1010

11-
from iptest import is_ironpython, generate_suite, run_test
11+
from iptest import is_ironpython, generate_suite, run_test, is_posix
1212

1313
import test.test_array
1414

@@ -64,6 +64,10 @@ def load_tests(loader, standard_tests, pattern):
6464
test.test_array.UnsignedShortTest('test_subclass_with_kwargs'), # https://github.com/IronLanguages/ironpython3/issues/767
6565
test.test_array.UnsignedShortTest('test_type_error'), # https://github.com/IronLanguages/ironpython3/issues/767
6666
]
67+
if is_posix:
68+
failing_tests += [
69+
test.test_array.LongTest('test_overflow'), # https://github.com/IronLanguages/ironpython3/issues/767
70+
]
6771

6872
skip_tests = []
6973

0 commit comments

Comments
 (0)