Skip to content

Commit 3a65f28

Browse files
committed
[lldb][test] Re-enable TestRerunAndExprDylib.py
the `skipTestIfFn` requires a function that return a string to skip or None to run the test. The `isUbuntu18_04` function returns a bool and the test is skipped on all platforms.
1 parent bdebbd9 commit 3a65f28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/test/API/functionalities/rerun_and_expr_dylib/TestRerunAndExprDylib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ def isUbuntu18_04():
2020
with open(path) as f:
2121
contents = f.read()
2222
if "Ubuntu 18.04" in contents:
23-
return True
23+
return "Ubuntu 18.04 is not supported."
2424

25-
return False
25+
return None
2626

2727

2828
class TestRerunExprDylib(TestBase):

0 commit comments

Comments
 (0)