diff options
| author | Zachary Turner <zturner@google.com> | 2015-12-08 22:15:48 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2015-12-08 22:15:48 +0000 |
| commit | d865c6b70770d44b1b5e9230299d1597cda6422f (patch) | |
| tree | 0ee7104229e0e3f48c1ca92cf17a5a17d558aa87 /lldb/packages/Python/lldbsuite/test/api | |
| parent | 6b63d576c3baef27ca053dd18625e6e47acd2ae0 (diff) | |
| download | bcm5719-llvm-d865c6b70770d44b1b5e9230299d1597cda6422f.tar.gz bcm5719-llvm-d865c6b70770d44b1b5e9230299d1597cda6422f.zip | |
Remove the -c option from dotest.py.
This seems to be a legacy relic from days gone by where the
remote test suite runner operated completely differently than it
does today. git blames and comments traced this functionality
back to about 2012, and nobody seems to know anything about it
now.
llvm-svn: 255060
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/api')
| -rw-r--r-- | lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/TestPublicAPIHeaders.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/TestPublicAPIHeaders.py b/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/TestPublicAPIHeaders.py index 64687dfe6a3..0d0507f1d70 100644 --- a/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/TestPublicAPIHeaders.py +++ b/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/TestPublicAPIHeaders.py @@ -26,8 +26,8 @@ class SBDirCheckerCase(TestBase): """Test the SB API directory and make sure there's no unwanted stuff.""" # Only proceed if this is an Apple OS, "x86_64", and local platform. - if not (self.platformIsDarwin() and self.getArchitecture() == "x86_64" and not configuration.test_remote): - self.skipTest("This test is only for LLDB.framework built 64-bit and !configuration.test_remote") + if not (self.platformIsDarwin() and self.getArchitecture() == "x86_64"): + self.skipTest("This test is only for LLDB.framework built 64-bit") if self.getArchitecture() == "i386": self.skipTest("LLDB is 64-bit and cannot be linked to 32-bit test program.") |

