diff options
author | Daniel Malea <daniel.malea@intel.com> | 2013-05-15 18:48:32 +0000 |
---|---|---|
committer | Daniel Malea <daniel.malea@intel.com> | 2013-05-15 18:48:32 +0000 |
commit | e8bdd1f5c05fb617354bca8ce3c8bc933b00d350 (patch) | |
tree | f474c4656273c8dd864482fe70dbb4e660f18993 /lldb/test/functionalities/thread/state/TestThreadStates.py | |
parent | 5c42d8a87ca7e3744c42926092444994595a688e (diff) | |
download | bcm5719-llvm-e8bdd1f5c05fb617354bca8ce3c8bc933b00d350.tar.gz bcm5719-llvm-e8bdd1f5c05fb617354bca8ce3c8bc933b00d350.zip |
Clean up linux test decorators and add links to known bugs
- s/skipOnLinux/skipIfLinux/ to match style of every other decorator
- linkify bugizilla/PR numbers in comments
No intended change in functionality.
llvm-svn: 181913
Diffstat (limited to 'lldb/test/functionalities/thread/state/TestThreadStates.py')
-rw-r--r-- | lldb/test/functionalities/thread/state/TestThreadStates.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/test/functionalities/thread/state/TestThreadStates.py b/lldb/test/functionalities/thread/state/TestThreadStates.py index 185eb50106a..22b51bf1a95 100644 --- a/lldb/test/functionalities/thread/state/TestThreadStates.py +++ b/lldb/test/functionalities/thread/state/TestThreadStates.py @@ -53,14 +53,14 @@ class StopThreadsTestCase(TestBase): @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") @dsym_test - @unittest2.expectedFailure("PR-15824") # thread states not properly maintained + @unittest2.expectedFailure("llvm.org/pr15824") # thread states not properly maintained def test_process_interrupt_with_dsym(self): """Test process interrupt.""" self.buildDsym() self.process_interrupt_test() @dwarf_test - @unittest2.expectedFailure("PR-15824") # thread states not properly maintained + @unittest2.expectedFailure("llvm.org/pr15824") # thread states not properly maintained def test_process_interrupt_with_dwarf(self): """Test process interrupt.""" self.buildDwarf() @@ -68,14 +68,14 @@ class StopThreadsTestCase(TestBase): @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") @dsym_test - @unittest2.expectedFailure("PR-15824") # thread states not properly maintained + @unittest2.expectedFailure("llvm.org/pr15824") # thread states not properly maintained def test_process_state_with_dsym(self): """Test thread states (comprehensive).""" self.buildDsym() self.thread_states_test() @dwarf_test - @unittest2.expectedFailure("PR-15824") # thread states not properly maintained + @unittest2.expectedFailure("llvm.org/pr15824") # thread states not properly maintained def test_process_state_with_dwarf(self): """Test thread states (comprehensive).""" self.buildDwarf() |