Skip hanging watchpoint test on Windows (rather than just xfailing).

llvm-svn: 250576
This commit is contained in:
Adrian McCarthy 2015-10-16 23:19:22 +00:00
parent 4f05f32bb7
commit 128d4ab71f
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class WatchpointConditionAPITestCase(TestBase):
self.d = {'CXX_SOURCES': self.source, 'EXE': self.exe_name}
@expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported
@expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows
@skipIfWindows # Watchpoints not supported on Windows, and this test hangs
def test_watchpoint_cond_api(self):
"""Test watchpoint condition API."""
self.build(dictionary=self.d)