diff options
| author | Robert Flack <flackr@gmail.com> | 2015-03-30 14:12:17 +0000 |
|---|---|---|
| committer | Robert Flack <flackr@gmail.com> | 2015-03-30 14:12:17 +0000 |
| commit | 13c7ad9cd245fca52773ac47e53da1cb46b38320 (patch) | |
| tree | 98bf6753d53607c6ddbc1faf7ea6d2d419b1a22b /lldb/test/functionalities/step-avoids-no-debug | |
| parent | ab6216d050a5c3191a9f0db8e2dde426a5876f9d (diff) | |
| download | bcm5719-llvm-13c7ad9cd245fca52773ac47e53da1cb46b38320.tar.gz bcm5719-llvm-13c7ad9cd245fca52773ac47e53da1cb46b38320.zip | |
Replace sys.platform skips in tests with @skip decorators which check against remote platform.
Adds @skipIfPlatform and @skipUnlessPlatform decorators which will skip if /
unless the target platform is in the provided platform list.
Test Plan:
ninja check-lldb shows no regressions.
When running cross platform, tests which cannot run on the target platform are
skipped.
Differential Revision: http://reviews.llvm.org/D8665
llvm-svn: 233547
Diffstat (limited to 'lldb/test/functionalities/step-avoids-no-debug')
| -rw-r--r-- | lldb/test/functionalities/step-avoids-no-debug/TestStepNoDebug.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/test/functionalities/step-avoids-no-debug/TestStepNoDebug.py b/lldb/test/functionalities/step-avoids-no-debug/TestStepNoDebug.py index f6c6a275c94..3b86f3b55c5 100644 --- a/lldb/test/functionalities/step-avoids-no-debug/TestStepNoDebug.py +++ b/lldb/test/functionalities/step-avoids-no-debug/TestStepNoDebug.py @@ -13,7 +13,7 @@ class ReturnValueTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) - @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") + @skipUnlessDarwin @python_api_test @dsym_test def test_step_out_with_dsym_python(self): @@ -30,7 +30,7 @@ class ReturnValueTestCase(TestBase): self.get_to_starting_point() self.do_step_out_past_nodebug() - @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") + @skipUnlessDarwin @python_api_test @dsym_test def test_step_over_with_dsym_python(self): @@ -48,7 +48,7 @@ class ReturnValueTestCase(TestBase): self.get_to_starting_point() self.do_step_over_past_nodebug() - @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") + @skipUnlessDarwin @python_api_test @dsym_test def test_step_in_with_dsym_python(self): |

