Skip to content

Commit

Permalink
Revert "[lldb] [test] Mark new vFile tests as XFAIL on Windows"
Browse files Browse the repository at this point in the history
This reverts commit 0dc57a6.
  • Loading branch information
mgorny committed Aug 9, 2021
1 parent 4c830b5 commit 816aa9a
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions lldb/test/API/tools/lldb-server/TestGdbRemotePlatformFile.py
Expand Up @@ -17,47 +17,38 @@ class TestGdbRemotePlatformFile(GdbRemoteTestCaseBase):

mydir = TestBase.compute_mydir(__file__)

@expectedFailureAll(oslist=["windows"])
@add_test_categories(["llgs"])
def test_platform_file_rdonly(self):
self.vFile_test(read=True)

@expectedFailureAll(oslist=["windows"])
@add_test_categories(["llgs"])
def test_platform_file_wronly(self):
self.vFile_test(write=True)

@expectedFailureAll(oslist=["windows"])
@add_test_categories(["llgs"])
def test_platform_file_rdwr(self):
self.vFile_test(read=True, write=True)

@expectedFailureAll(oslist=["windows"])
@add_test_categories(["llgs"])
def test_platform_file_wronly_append(self):
self.vFile_test(write=True, append=True)

@expectedFailureAll(oslist=["windows"])
@add_test_categories(["llgs"])
def test_platform_file_rdwr_append(self):
self.vFile_test(read=True, write=True, append=True)

@expectedFailureAll(oslist=["windows"])
@add_test_categories(["llgs"])
def test_platform_file_wronly_trunc(self):
self.vFile_test(write=True, trunc=True)

@expectedFailureAll(oslist=["windows"])
@add_test_categories(["llgs"])
def test_platform_file_rdwr_trunc(self):
self.vFile_test(read=True, write=True, trunc=True)

@expectedFailureAll(oslist=["windows"])
@add_test_categories(["llgs"])
def test_platform_file_wronly_creat(self):
self.vFile_test(write=True, creat=True)

@expectedFailureAll(oslist=["windows"])
@add_test_categories(["llgs"])
def test_platform_file_wronly_creat_excl(self):
self.vFile_test(write=True, creat=True, excl=True)
Expand Down

0 comments on commit 816aa9a

Please sign in to comment.