Skip to content

Commit 40201f4

Browse files
committed
[GR-23214] run the test_descr unittests as far as possible
1 parent fcc7af6 commit 40201f4

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_tagged_unittests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def parse_unittest_output(output):
208208

209209
# n.b.: we add a '*' in the front, so that unittests doesn't add
210210
# its own asterisks, because now this is already a pattern
211-
for funcname, classname, result in parse_unittest_output(stderr):
211+
for funcname, classname, result in parse_unittest_output(p.stderr):
212212
# We consider skipped tests as passing in order to avoid a situation where a Linux run
213213
# untags a Darwin-only test and vice versa
214214
if result == 'ok' or result.startswith('skipped'):
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*graalpython.lib-python.3.test.test_descrtut.TestMain.test_main

graalpython/lib-python/3/test/test_descrtut.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -460,8 +460,8 @@ def m(self):
460460
"""
461461

462462
__test__ = {"tut1": test_1,
463-
"tut2": test_2,
464-
"tut3": test_3,
463+
# "tut2": test_2, # GR-24022
464+
# "tut3": test_3, # GR-26838
465465
"tut4": test_4,
466466
"tut5": test_5,
467467
"tut6": test_6,

0 commit comments

Comments
 (0)