forked from OSchip/llvm-project
Skip libc++ data formmatting tests on Windows. libc++ hasn't been ported to windows yet.
llvm-svn: 234794
This commit is contained in:
parent
cab9ce9163
commit
54700b05c7
|
@ -20,6 +20,7 @@ class LibcxxIteratorDataFormatterTestCase(TestBase):
|
|||
self.data_formatter_commands()
|
||||
|
||||
@skipIfLinux # No standard locations for libc++ on Linux, so skip for now
|
||||
@skipIfWindows # libc++ not ported to Windows yet
|
||||
@dwarf_test
|
||||
def test_with_dwarf_and_run_command(self):
|
||||
"""Test data formatter commands."""
|
||||
|
|
|
@ -20,6 +20,7 @@ class LibcxxListDataFormatterTestCase(TestBase):
|
|||
self.data_formatter_commands()
|
||||
|
||||
@skipIfLinux # No standard locations for libc++ on Linux, so skip for now
|
||||
@skipIfWindows # libc++ not ported to Windows yet
|
||||
@dwarf_test
|
||||
def test_with_dwarf_and_run_command(self):
|
||||
"""Test data formatter commands."""
|
||||
|
|
|
@ -20,6 +20,7 @@ class LibcxxMapDataFormatterTestCase(TestBase):
|
|||
self.data_formatter_commands()
|
||||
|
||||
@skipIfLinux # No standard locations for libc++ on Linux, so skip for now
|
||||
@skipIfWindows # libc++ not ported to Windows yet
|
||||
@dwarf_test
|
||||
def test_with_dwarf_and_run_command(self):
|
||||
"""Test data formatter commands."""
|
||||
|
|
|
@ -20,6 +20,7 @@ class LibcxxMultiMapDataFormatterTestCase(TestBase):
|
|||
self.data_formatter_commands()
|
||||
|
||||
@skipIfLinux # No standard locations for libc++ on Linux, so skip for now
|
||||
@skipIfWindows # libc++ not ported to Windows yet
|
||||
@dwarf_test
|
||||
def test_with_dwarf_and_run_command(self):
|
||||
"""Test data formatter commands."""
|
||||
|
|
|
@ -20,6 +20,7 @@ class LibcxxMultiSetDataFormatterTestCase(TestBase):
|
|||
self.data_formatter_commands()
|
||||
|
||||
@skipIfLinux # No standard locations for libc++ on Linux, so skip for now
|
||||
@skipIfWindows # libc++ not ported to Windows yet
|
||||
@dwarf_test
|
||||
def test_with_dwarf_and_run_command(self):
|
||||
"""Test data formatter commands."""
|
||||
|
|
|
@ -20,6 +20,7 @@ class LibcxxSetDataFormatterTestCase(TestBase):
|
|||
self.data_formatter_commands()
|
||||
|
||||
@skipIfLinux # No standard locations for libc++ on Linux, so skip for now
|
||||
@skipIfWindows # libc++ not ported to Windows yet
|
||||
@dwarf_test
|
||||
def test_with_dwarf_and_run_command(self):
|
||||
"""Test data formatter commands."""
|
||||
|
|
|
@ -21,6 +21,7 @@ class LibcxxStringDataFormatterTestCase(TestBase):
|
|||
self.data_formatter_commands()
|
||||
|
||||
@skipIfLinux # No standard locations for libc++ on Linux, so skip for now
|
||||
@skipIfWindows # libc++ not ported to Windows yet
|
||||
@dwarf_test
|
||||
def test_with_dwarf_and_run_command(self):
|
||||
"""Test data formatter commands."""
|
||||
|
|
|
@ -20,6 +20,7 @@ class LibcxxVectorDataFormatterTestCase(TestBase):
|
|||
self.data_formatter_commands()
|
||||
|
||||
@skipIfLinux # No standard locations for libc++ on Linux, so skip for now
|
||||
@skipIfWindows # libc++ not ported to Windows yet
|
||||
@dwarf_test
|
||||
def test_with_dwarf_and_run_command(self):
|
||||
"""Test data formatter commands."""
|
||||
|
|
Loading…
Reference in New Issue