Skip to content

Commit f55df08

Browse files
committed
Fix some tests
1 parent 6ab9ff9 commit f55df08

File tree

4 files changed

+2
-9
lines changed

4 files changed

+2
-9
lines changed

tests/IronPython.Tests/Cases/IronPythonCasesManifest.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ Reason=StackOverflowException - https://github.com/IronLanguages/ironpython2/iss
146146

147147
[IronPython.test_threading_stdlib]
148148
IsolationLevel=PROCESS
149+
RunCondition=NOT $(IS_MONO) # TODO: figure out
149150

150151
[IronPython.test_threadsafety]
151152
Ignore=true

tests/suite/test_functools_stdlib.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def load_tests(loader, standard_tests, pattern):
5858
skip_tests += [
5959
test.test_functools.TestPartialCSubclass('test_weakref'),
6060
test.test_functools.TestPartialPy('test_weakref'),
61+
test.test_functools.TestPartialPySubclass('test_weakref'),
6162
]
6263

6364
return generate_suite(tests, failing_tests, skip_tests)

tests/suite/test_io_stdlib.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,6 @@ def load_tests(loader, standard_tests, pattern):
118118
test.test_io.PyTextIOWrapperTest('test_read_byteslike'),
119119
]
120120

121-
if is_mono:
122-
failing_tests += [
123-
test.test_io.PyMiscIOTest('test_create_fail'),
124-
]
125-
126121
if is_mono or is_windows:
127122
failing_tests += [
128123
test.test_io.PyTextIOWrapperTest('test_seek_append_bom'), # OSError: [Errno -2146232800] Unable seek backward to overwrite data that previously existed in a file opened in Append mode.

tests/suite/test_structures_ctypes_stdlib.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ def load_tests(loader, standard_tests, pattern):
1818
ctypes.test.test_structures.StructureTestCase('test_conflicting_initializers'), # AssertionError
1919
ctypes.test.test_structures.StructureTestCase('test_pass_by_value_in_register'), # NotImplementedError: in dll
2020
]
21-
if is_osx:
22-
failing_tests += [
23-
ctypes.test.test_structures.StructureTestCase('test_pass_by_value'),
24-
]
2521

2622
return generate_suite(tests, failing_tests)
2723

0 commit comments

Comments
 (0)