diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2019-01-27 17:29:37 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2019-01-27 17:29:37 +0000 |
commit | c9ded6c8e4883c7ca88b30ca4b0473bff562ee8f (patch) | |
tree | afb6ada7b08dddcd9c79fd6a8355a18f8dd45437 /gnu/llvm/tools | |
parent | 9f7f4e0b505dd9323870cc465e12102b79a966a3 (diff) |
Tedu files that got removed in LLVM 7.0.1.
Diffstat (limited to 'gnu/llvm/tools')
41 files changed, 0 insertions, 1040 deletions
diff --git a/gnu/llvm/tools/lldb/include/lldb/API/SystemInitializerFull.h b/gnu/llvm/tools/lldb/include/lldb/API/SystemInitializerFull.h deleted file mode 100644 index 9cfc6896da6..00000000000 --- a/gnu/llvm/tools/lldb/include/lldb/API/SystemInitializerFull.h +++ /dev/null @@ -1,38 +0,0 @@ -//===-- SystemInitializerFull.h ---------------------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#ifndef LLDB_API_SYSTEM_INITIALIZER_FULL_H -#define LLDB_API_SYSTEM_INITIALIZER_FULL_H - -#include "lldb/Initialization/SystemInitializerCommon.h" - -namespace lldb_private { -//------------------------------------------------------------------ -/// Initializes lldb. -/// -/// This class is responsible for initializing all of lldb system -/// services needed to use the full LLDB application. This class is -/// not intended to be used externally, but is instead used -/// internally by SBDebugger to initialize the system. -//------------------------------------------------------------------ -class SystemInitializerFull : public SystemInitializerCommon { -public: - SystemInitializerFull(); - ~SystemInitializerFull() override; - - void Initialize() override; - void Terminate() override; - -private: - void InitializeSWIG(); -}; - -} // namespace lldb_private - -#endif // LLDB_API_SYSTEM_INITIALIZER_FULL_H diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/my_working_dir/.keep b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/my_working_dir/.keep deleted file mode 100644 index e69de29bb2d..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/my_working_dir/.keep +++ /dev/null diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/path with '09/.keep b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/path with '09/.keep deleted file mode 100644 index e69de29bb2d..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/path with '09/.keep +++ /dev/null diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/breakpoint_delay_breakpoint_one_signal/TestConcurrentBreakpointDelayBreakpointOneSignal.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/breakpoint_delay_breakpoint_one_signal/TestConcurrentBreakpointDelayBreakpointOneSignal.py deleted file mode 100644 index 2506a823188..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/breakpoint_delay_breakpoint_one_signal/TestConcurrentBreakpointDelayBreakpointOneSignal.py +++ /dev/null @@ -1,23 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentBreakpointDelayBreakpointOneSignal(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test two threads that trigger a breakpoint (one with a 1 second delay) and one signal thread. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_breakpoint_threads=1, - num_delay_breakpoint_threads=1, - num_signal_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/breakpoint_one_delay_breakpoint_threads/TestConcurrentBreakpointOneDelayBreakpointThreads.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/breakpoint_one_delay_breakpoint_threads/TestConcurrentBreakpointOneDelayBreakpointThreads.py deleted file mode 100644 index 8712342e581..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/breakpoint_one_delay_breakpoint_threads/TestConcurrentBreakpointOneDelayBreakpointThreads.py +++ /dev/null @@ -1,22 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentBreakpointOneDelayBreakpointThreads(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test threads that trigger a breakpoint where one thread has a 1 second delay. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_breakpoint_threads=1, - num_delay_breakpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/breakpoints_delayed_breakpoint_one_watchpoint/TestConcurrentBreakpointsDelayedBreakpointOneWatchpoint.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/breakpoints_delayed_breakpoint_one_watchpoint/TestConcurrentBreakpointsDelayedBreakpointOneWatchpoint.py deleted file mode 100644 index c600d8ed21b..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/breakpoints_delayed_breakpoint_one_watchpoint/TestConcurrentBreakpointsDelayedBreakpointOneWatchpoint.py +++ /dev/null @@ -1,25 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentBreakpointsDelayedBreakpointOneWatchpoint( - ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test a breakpoint, a delayed breakpoint, and one watchpoint thread. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_breakpoint_threads=1, - num_delay_breakpoint_threads=1, - num_watchpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/crash_with_break/TestConcurrentCrashWithBreak.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/crash_with_break/TestConcurrentCrashWithBreak.py deleted file mode 100644 index 33d1074211e..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/crash_with_break/TestConcurrentCrashWithBreak.py +++ /dev/null @@ -1,21 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentCrashWithBreak(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """ Test a thread that crashes while another thread hits a breakpoint.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_crash_threads=1, num_breakpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/crash_with_signal/TestConcurrentCrashWithSignal.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/crash_with_signal/TestConcurrentCrashWithSignal.py deleted file mode 100644 index 560c79ed8a8..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/crash_with_signal/TestConcurrentCrashWithSignal.py +++ /dev/null @@ -1,21 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentCrashWithSignal(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """ Test a thread that crashes while another thread generates a signal.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_crash_threads=1, num_signal_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/crash_with_watchpoint/TestConcurrentCrashWithWatchpoint.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/crash_with_watchpoint/TestConcurrentCrashWithWatchpoint.py deleted file mode 100644 index 169903816fa..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/crash_with_watchpoint/TestConcurrentCrashWithWatchpoint.py +++ /dev/null @@ -1,22 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentCrashWithWatchpoint(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """ Test a thread that crashes while another thread hits a watchpoint.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_crash_threads=1, num_watchpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/crash_with_watchpoint_breakpoint_signal/TestConcurrentCrashWithWatchpointBreakpointSignal.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/crash_with_watchpoint_breakpoint_signal/TestConcurrentCrashWithWatchpointBreakpointSignal.py deleted file mode 100644 index 4a58e7cf6d7..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/crash_with_watchpoint_breakpoint_signal/TestConcurrentCrashWithWatchpointBreakpointSignal.py +++ /dev/null @@ -1,25 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentCrashWithWatchpointBreakpointSignal(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """ Test a thread that crashes while other threads generate a signal and hit a watchpoint and breakpoint. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_crash_threads=1, - num_breakpoint_threads=1, - num_signal_threads=1, - num_watchpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delay_signal_break/TestConcurrentDelaySignalBreak.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delay_signal_break/TestConcurrentDelaySignalBreak.py deleted file mode 100644 index 442134f4a0c..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delay_signal_break/TestConcurrentDelaySignalBreak.py +++ /dev/null @@ -1,23 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentDelaySignalBreak(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test (1-second delay) signal and a breakpoint in multiple threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions( - num_breakpoint_threads=1, - num_delay_signal_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delay_signal_watch/TestConcurrentDelaySignalWatch.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delay_signal_watch/TestConcurrentDelaySignalWatch.py deleted file mode 100644 index d5d4641bc16..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delay_signal_watch/TestConcurrentDelaySignalWatch.py +++ /dev/null @@ -1,24 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentDelaySignalWatch(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test a watchpoint and a (1 second delay) signal in multiple threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions( - num_delay_signal_threads=1, - num_watchpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delay_watch_break/TestConcurrentDelayWatchBreak.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delay_watch_break/TestConcurrentDelayWatchBreak.py deleted file mode 100644 index 9cbb40cb601..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delay_watch_break/TestConcurrentDelayWatchBreak.py +++ /dev/null @@ -1,24 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentDelayWatchBreak(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test (1-second delay) watchpoint and a breakpoint in multiple threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions( - num_breakpoint_threads=1, - num_delay_watchpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delayed_crash_with_breakpoint_signal/TestConcurrentDelayedCrashWithBreakpointSignal.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delayed_crash_with_breakpoint_signal/TestConcurrentDelayedCrashWithBreakpointSignal.py deleted file mode 100644 index 2b7e1b45726..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delayed_crash_with_breakpoint_signal/TestConcurrentDelayedCrashWithBreakpointSignal.py +++ /dev/null @@ -1,23 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentDelayedCrashWithBreakpointSignal(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """ Test a thread with a delayed crash while other threads generate a signal and hit a breakpoint. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_delay_crash_threads=1, - num_breakpoint_threads=1, - num_signal_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delayed_crash_with_breakpoint_watchpoint/TestConcurrentDelayedCrashWithBreakpointWatchpoint.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delayed_crash_with_breakpoint_watchpoint/TestConcurrentDelayedCrashWithBreakpointWatchpoint.py deleted file mode 100644 index ccbeeb07d3a..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/delayed_crash_with_breakpoint_watchpoint/TestConcurrentDelayedCrashWithBreakpointWatchpoint.py +++ /dev/null @@ -1,24 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentDelayedCrashWithBreakpointWatchpoint(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """ Test a thread with a delayed crash while other threads hit a watchpoint and a breakpoint. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_delay_crash_threads=1, - num_breakpoint_threads=1, - num_watchpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/many_breakpoints/TestConcurrentManyBreakpoints.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/many_breakpoints/TestConcurrentManyBreakpoints.py deleted file mode 100644 index a9f3fbb799f..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/many_breakpoints/TestConcurrentManyBreakpoints.py +++ /dev/null @@ -1,23 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentManyBreakpoints(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @unittest2.skipIf( - TestBase.skipLongRunningTest(), - "Skip this long running test") - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test 100 breakpoints from 100 threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_breakpoint_threads=100) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/many_crash/TestConcurrentManyCrash.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/many_crash/TestConcurrentManyCrash.py deleted file mode 100644 index 88ab1d5e204..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/many_crash/TestConcurrentManyCrash.py +++ /dev/null @@ -1,23 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentManyCrash(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @unittest2.skipIf( - TestBase.skipLongRunningTest(), - "Skip this long running test") - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test 100 threads that cause a segfault.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_crash_threads=100) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/many_signals/TestConcurrentManySignals.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/many_signals/TestConcurrentManySignals.py deleted file mode 100644 index 232b694c80f..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/many_signals/TestConcurrentManySignals.py +++ /dev/null @@ -1,23 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentManySignals(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @unittest2.skipIf( - TestBase.skipLongRunningTest(), - "Skip this long running test") - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test 100 signals from 100 threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_signal_threads=100) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/many_watchpoints/TestConcurrentManyWatchpoints.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/many_watchpoints/TestConcurrentManyWatchpoints.py deleted file mode 100644 index 73c1704e7e5..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/many_watchpoints/TestConcurrentManyWatchpoints.py +++ /dev/null @@ -1,23 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentManyWatchpoints(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @unittest2.skipIf( - TestBase.skipLongRunningTest(), - "Skip this long running test") - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test 100 watchpoints from 100 threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_watchpoint_threads=100) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/n_watch_n_break/TestConcurrentNWatchNBreak.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/n_watch_n_break/TestConcurrentNWatchNBreak.py deleted file mode 100644 index b9a7c5f568c..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/n_watch_n_break/TestConcurrentNWatchNBreak.py +++ /dev/null @@ -1,23 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentNWatchNBreak(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test with 5 watchpoint and breakpoint threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_watchpoint_threads=5, - num_breakpoint_threads=5) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_break/TestConcurrentSignalBreak.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_break/TestConcurrentSignalBreak.py deleted file mode 100644 index b8819f28698..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_break/TestConcurrentSignalBreak.py +++ /dev/null @@ -1,21 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentSignalBreak(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test signal and a breakpoint in multiple threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_breakpoint_threads=1, num_signal_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_delay_break/TestConcurrentSignalDelayBreak.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_delay_break/TestConcurrentSignalDelayBreak.py deleted file mode 100644 index b7d8cb174d2..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_delay_break/TestConcurrentSignalDelayBreak.py +++ /dev/null @@ -1,23 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentSignalDelayBreak(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test signal and a (1 second delay) breakpoint in multiple threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions( - num_delay_breakpoint_threads=1, - num_signal_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_delay_watch/TestConcurrentSignalDelayWatch.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_delay_watch/TestConcurrentSignalDelayWatch.py deleted file mode 100644 index 12824534380..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_delay_watch/TestConcurrentSignalDelayWatch.py +++ /dev/null @@ -1,24 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentSignalDelayWatch(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test a (1 second delay) watchpoint and a signal in multiple threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions( - num_signal_threads=1, - num_delay_watchpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_n_watch_n_break/TestConcurrentSignalNWatchNBreak.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_n_watch_n_break/TestConcurrentSignalNWatchNBreak.py deleted file mode 100644 index 56217e1e8c3..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_n_watch_n_break/TestConcurrentSignalNWatchNBreak.py +++ /dev/null @@ -1,24 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentSignalNWatchNBreak(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test one signal thread with 5 watchpoint and breakpoint threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_signal_threads=1, - num_watchpoint_threads=5, - num_breakpoint_threads=5) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_watch/TestConcurrentSignalWatch.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_watch/TestConcurrentSignalWatch.py deleted file mode 100644 index 00106289626..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_watch/TestConcurrentSignalWatch.py +++ /dev/null @@ -1,22 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentSignalWatch(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test a watchpoint and a signal in multiple threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_signal_threads=1, num_watchpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_watch_break/TestConcurrentSignalWatchBreak.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_watch_break/TestConcurrentSignalWatchBreak.py deleted file mode 100644 index d7725002f2b..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/signal_watch_break/TestConcurrentSignalWatchBreak.py +++ /dev/null @@ -1,24 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentSignalWatchBreak(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test a signal/watchpoint/breakpoint in multiple threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_signal_threads=1, - num_watchpoint_threads=1, - num_breakpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_breakpoint_threads/TestConcurrentTwoBreakpointThreads.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_breakpoint_threads/TestConcurrentTwoBreakpointThreads.py deleted file mode 100644 index 4e6bed2d5cb..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_breakpoint_threads/TestConcurrentTwoBreakpointThreads.py +++ /dev/null @@ -1,21 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentTwoBreakpointThreads(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test two threads that trigger a breakpoint. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_breakpoint_threads=2) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_breakpoints_one_delay_signal/TestConcurrentTwoBreakpointsOneDelaySignal.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_breakpoints_one_delay_signal/TestConcurrentTwoBreakpointsOneDelaySignal.py deleted file mode 100644 index d7630575cb3..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_breakpoints_one_delay_signal/TestConcurrentTwoBreakpointsOneDelaySignal.py +++ /dev/null @@ -1,23 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentTwoBreakpointsOneDelaySignal(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test two threads that trigger a breakpoint and one (1 second delay) signal thread. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions( - num_breakpoint_threads=2, - num_delay_signal_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_breakpoints_one_signal/TestConcurrentTwoBreakpointsOneSignal.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_breakpoints_one_signal/TestConcurrentTwoBreakpointsOneSignal.py deleted file mode 100644 index 4c4caa53373..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_breakpoints_one_signal/TestConcurrentTwoBreakpointsOneSignal.py +++ /dev/null @@ -1,21 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentTwoBreakpointsOneSignal(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test two threads that trigger a breakpoint and one signal thread. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_breakpoint_threads=2, num_signal_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_breakpoints_one_watchpoint/TestConcurrentTwoBreakpointsOneWatchpoint.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_breakpoints_one_watchpoint/TestConcurrentTwoBreakpointsOneWatchpoint.py deleted file mode 100644 index f26a5dc6f84..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_breakpoints_one_watchpoint/TestConcurrentTwoBreakpointsOneWatchpoint.py +++ /dev/null @@ -1,24 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentTwoBreakpointsOneWatchpoint(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test two threads that trigger a breakpoint and one watchpoint thread. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions( - num_breakpoint_threads=2, - num_watchpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoint_threads/TestConcurrentTwoWatchpointThreads.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoint_threads/TestConcurrentTwoWatchpointThreads.py deleted file mode 100644 index 059e077be98..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoint_threads/TestConcurrentTwoWatchpointThreads.py +++ /dev/null @@ -1,22 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentTwoWatchpointThreads(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test two threads that trigger a watchpoint. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_watchpoint_threads=2) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_breakpoint/TestConcurrentTwoWatchpointsOneBreakpoint.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_breakpoint/TestConcurrentTwoWatchpointsOneBreakpoint.py deleted file mode 100644 index 4b3c35ea8e6..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_breakpoint/TestConcurrentTwoWatchpointsOneBreakpoint.py +++ /dev/null @@ -1,24 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentTwoWatchpointsOneBreakpoint(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test two threads that trigger a watchpoint and one breakpoint thread. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions( - num_watchpoint_threads=2, - num_breakpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_delay_breakpoint/TestConcurrentTwoWatchpointsOneDelayBreakpoint.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_delay_breakpoint/TestConcurrentTwoWatchpointsOneDelayBreakpoint.py deleted file mode 100644 index ae6f64451ab..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_delay_breakpoint/TestConcurrentTwoWatchpointsOneDelayBreakpoint.py +++ /dev/null @@ -1,24 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentTwoWatchpointsOneDelayBreakpoint(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test two threads that trigger a watchpoint and one (1 second delay) breakpoint thread. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions( - num_watchpoint_threads=2, - num_delay_breakpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_signal/TestConcurrentTwoWatchpointsOneSignal.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_signal/TestConcurrentTwoWatchpointsOneSignal.py deleted file mode 100644 index 78f2dbbc832..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/two_watchpoints_one_signal/TestConcurrentTwoWatchpointsOneSignal.py +++ /dev/null @@ -1,22 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentTwoWatchpointsOneSignal(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test two threads that trigger a watchpoint and one signal thread. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_watchpoint_threads=2, num_signal_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/watch_break/TestConcurrentWatchBreak.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/watch_break/TestConcurrentWatchBreak.py deleted file mode 100644 index ffa6909129a..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/watch_break/TestConcurrentWatchBreak.py +++ /dev/null @@ -1,24 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentWatchBreak(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test watchpoint and a breakpoint in multiple threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions( - num_breakpoint_threads=1, - num_watchpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/watch_break_delay/TestConcurrentWatchBreakDelay.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/watch_break_delay/TestConcurrentWatchBreakDelay.py deleted file mode 100644 index 4c8b5b319ae..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/watch_break_delay/TestConcurrentWatchBreakDelay.py +++ /dev/null @@ -1,24 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentWatchBreakDelay(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test watchpoint and a (1 second delay) breakpoint in multiple threads.""" - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions( - num_delay_breakpoint_threads=1, - num_watchpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/watchpoint_delay_watchpoint_one_breakpoint/TestConcurrentWatchpointDelayWatchpointOneBreakpoint.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/watchpoint_delay_watchpoint_one_breakpoint/TestConcurrentWatchpointDelayWatchpointOneBreakpoint.py deleted file mode 100644 index 0d545b31230..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/watchpoint_delay_watchpoint_one_breakpoint/TestConcurrentWatchpointDelayWatchpointOneBreakpoint.py +++ /dev/null @@ -1,24 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentWatchpointDelayWatchpointOneBreakpoint(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test two threads that trigger a watchpoint (one with a 1 second delay) and one breakpoint thread. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_watchpoint_threads=1, - num_delay_watchpoint_threads=1, - num_breakpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/watchpoint_with_delay_watchpoint_threads/TestConcurrentWatchpointWithDelayWatchpointThreads.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/watchpoint_with_delay_watchpoint_threads/TestConcurrentWatchpointWithDelayWatchpointThreads.py deleted file mode 100644 index 56cd85da88d..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/watchpoint_with_delay_watchpoint_threads/TestConcurrentWatchpointWithDelayWatchpointThreads.py +++ /dev/null @@ -1,23 +0,0 @@ -from __future__ import print_function - -import unittest2 - -from lldbsuite.test.decorators import * -from lldbsuite.test.concurrent_base import ConcurrentEventsBase -from lldbsuite.test.lldbtest import TestBase - - -@skipIfWindows -class ConcurrentWatchpointWithDelayWatchpointThreads(ConcurrentEventsBase): - - mydir = ConcurrentEventsBase.compute_mydir(__file__) - - @skipIfFreeBSD # timing out on buildbot - @skipIfRemoteDueToDeadlock - # Atomic sequences are not supported yet for MIPS in LLDB. - @skipIf(triple='^mips') - def test(self): - """Test two threads that trigger a watchpoint where one thread has a 1 second delay. """ - self.build(dictionary=self.getBuildFlags()) - self.do_thread_actions(num_watchpoint_threads=1, - num_delay_watchpoint_threads=1) diff --git a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/exit-code/TestGdbRemoteExitCode.py b/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/exit-code/TestGdbRemoteExitCode.py deleted file mode 100644 index e77f2b7acec..00000000000 --- a/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/exit-code/TestGdbRemoteExitCode.py +++ /dev/null @@ -1,124 +0,0 @@ -from __future__ import print_function - -# lldb test suite imports -from lldbsuite.test.decorators import * -from lldbsuite.test.lldbtest import TestBase - -# gdb-remote-specific imports -import lldbgdbserverutils -from gdbremote_testcase import GdbRemoteTestCaseBase - - -class TestGdbRemoteExitCode(GdbRemoteTestCaseBase): - - mydir = TestBase.compute_mydir(__file__) - - FAILED_LAUNCH_CODE = "E08" - - def get_launch_fail_reason(self): - self.reset_test_sequence() - self.test_sequence.add_log_lines( - ["read packet: $qLaunchSuccess#00"], - True) - self.test_sequence.add_log_lines( - [{"direction": "send", "regex": r"^\$(.+)#[0-9a-fA-F]{2}$", - "capture": {1: "launch_result"}}], - True) - context = self.expect_gdbremote_sequence() - self.assertIsNotNone(context) - return context.get("launch_result")[1:] - - def start_inferior(self): - launch_args = self.install_and_create_launch_args() - - server = self.connect_to_debug_monitor() - self.assertIsNotNone(server) - - self.add_no_ack_remote_stream() - self.test_sequence.add_log_lines( - ["read packet: %s" % lldbgdbserverutils.build_gdbremote_A_packet( - launch_args)], - True) - self.test_sequence.add_log_lines( - [{"direction": "send", "regex": r"^\$(.+)#[0-9a-fA-F]{2}$", - "capture": {1: "A_result"}}], - True) - context = self.expect_gdbremote_sequence() - self.assertIsNotNone(context) - - launch_result = context.get("A_result") - self.assertIsNotNone(launch_result) - if launch_result == self.FAILED_LAUNCH_CODE: - fail_reason = self.get_launch_fail_reason() - self.fail("failed to launch inferior: " + fail_reason) - - @debugserver_test - def test_start_inferior_debugserver(self): - self.init_debugserver_test() - self.build() - self.start_inferior() - - @llgs_test - def test_start_inferior_llgs(self): - self.init_llgs_test() - self.build() - self.start_inferior() - - def inferior_exit_0(self): - launch_args = self.install_and_create_launch_args() - - server = self.connect_to_debug_monitor() - self.assertIsNotNone(server) - - self.add_no_ack_remote_stream() - self.add_verified_launch_packets(launch_args) - self.test_sequence.add_log_lines( - ["read packet: $vCont;c#a8", - "send packet: $W00#00"], - True) - - self.expect_gdbremote_sequence() - - @debugserver_test - def test_inferior_exit_0_debugserver(self): - self.init_debugserver_test() - self.build() - self.inferior_exit_0() - - @llgs_test - def test_inferior_exit_0_llgs(self): - self.init_llgs_test() - self.build() - self.inferior_exit_0() - - def inferior_exit_42(self): - launch_args = self.install_and_create_launch_args() - - server = self.connect_to_debug_monitor() - self.assertIsNotNone(server) - - RETVAL = 42 - - # build launch args - launch_args += ["retval:%d" % RETVAL] - - self.add_no_ack_remote_stream() - self.add_verified_launch_packets(launch_args) - self.test_sequence.add_log_lines( - ["read packet: $vCont;c#a8", - "send packet: $W{0:02x}#00".format(RETVAL)], - True) - - self.expect_gdbremote_sequence() - - @debugserver_test - def test_inferior_exit_42_debugserver(self): - self.init_debugserver_test() - self.build() - self.inferior_exit_42() - - @llgs_test - def test_inferior_exit_42_llgs(self): - self.init_llgs_test() - self.build() - self.inferior_exit_42() diff --git a/gnu/llvm/tools/lldb/source/Host/macosx/HostThreadMacOSX.mm b/gnu/llvm/tools/lldb/source/Host/macosx/HostThreadMacOSX.mm deleted file mode 100644 index c5051cdf30d..00000000000 --- a/gnu/llvm/tools/lldb/source/Host/macosx/HostThreadMacOSX.mm +++ /dev/null @@ -1,70 +0,0 @@ -//===-- HostThreadMacOSX.cpp ------------------------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include "lldb/Host/macosx/HostThreadMacOSX.h" -#include "lldb/Host/Host.h" - -#include <CoreFoundation/CoreFoundation.h> -#include <Foundation/Foundation.h> - -#include <pthread.h> - -using namespace lldb_private; - -namespace { - -pthread_once_t g_thread_create_once = PTHREAD_ONCE_INIT; -pthread_key_t g_thread_create_key = 0; - -class MacOSXDarwinThread { -public: - MacOSXDarwinThread() : m_pool(nil) { - m_pool = [[NSAutoreleasePool alloc] init]; - } - - ~MacOSXDarwinThread() { - if (m_pool) { - [m_pool drain]; - m_pool = nil; - } - } - - static void PThreadDestructor(void *v) { - if (v) - delete static_cast<MacOSXDarwinThread *>(v); - ::pthread_setspecific(g_thread_create_key, NULL); - } - -protected: - NSAutoreleasePool *m_pool; - -private: - DISALLOW_COPY_AND_ASSIGN(MacOSXDarwinThread); -}; - -void InitThreadCreated() { - ::pthread_key_create(&g_thread_create_key, - MacOSXDarwinThread::PThreadDestructor); -} -} // namespace - -HostThreadMacOSX::HostThreadMacOSX() : HostThreadPosix() {} - -HostThreadMacOSX::HostThreadMacOSX(lldb::thread_t thread) - : HostThreadPosix(thread) {} - -lldb::thread_result_t -HostThreadMacOSX::ThreadCreateTrampoline(lldb::thread_arg_t arg) { - ::pthread_once(&g_thread_create_once, InitThreadCreated); - if (g_thread_create_key) { - ::pthread_setspecific(g_thread_create_key, new MacOSXDarwinThread()); - } - - return HostThreadPosix::ThreadCreateTrampoline(arg); -} diff --git a/gnu/llvm/tools/msbuild/.gitignore b/gnu/llvm/tools/msbuild/.gitignore deleted file mode 100644 index 01c1f5a9d0b..00000000000 --- a/gnu/llvm/tools/msbuild/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -bin
-obj
|