Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@ def isUbuntu18_04():
with open(path) as f:
contents = f.read()
if "Ubuntu 18.04" in contents:
return True
return "Ubuntu 18.04 is not supported."

return False
return None


class TestRerunExprDylib(TestBase):
@skipTestIfFn(isUbuntu18_04, bugnumber="rdar://103831050")
@skipIfWindows
@skipIfRemote
def test(self):
"""
Tests whether re-launching a process without destroying
Expand Down