diff options
author | Zachary Turner <zturner@google.com> | 2015-12-11 19:21:49 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-12-11 19:21:49 +0000 |
commit | 742afdb3d285d579e10fe6cde67f21bdb661d862 (patch) | |
tree | 40140076d0ed56462efe1260cb37a277582a32fa /lldb/packages/Python/lldbsuite/test/lldbtest.py | |
parent | 6a188e6c1e89a2e55905c7b8615ca3dc53754fa2 (diff) | |
download | bcm5719-llvm-742afdb3d285d579e10fe6cde67f21bdb661d862.tar.gz bcm5719-llvm-742afdb3d285d579e10fe6cde67f21bdb661d862.zip |
Remove -S option from dotest.py.
llvm-svn: 255361
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbtest.py | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index 34481a2d0d2..77caab5f6f0 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -1349,7 +1349,7 @@ class Base(unittest2.TestCase): Do class-wide cleanup. """ - if doCleanup and not configuration.skip_build_and_cleanup: + if doCleanup: # First, let's do the platform-specific cleanup. module = builder_module() module.cleanup() @@ -2133,8 +2133,6 @@ class Base(unittest2.TestCase): def buildDefault(self, architecture=None, compiler=None, dictionary=None, clean=True): """Platform specific way to build the default binaries.""" - if configuration.skip_build_and_cleanup: - return module = builder_module() if target_is_android(): dictionary = append_android_envs(dictionary) @@ -2143,16 +2141,12 @@ class Base(unittest2.TestCase): def buildDsym(self, architecture=None, compiler=None, dictionary=None, clean=True): """Platform specific way to build binaries with dsym info.""" - if configuration.skip_build_and_cleanup: - return module = builder_module() if not module.buildDsym(self, architecture, compiler, dictionary, clean): raise Exception("Don't know how to build binary with dsym") def buildDwarf(self, architecture=None, compiler=None, dictionary=None, clean=True): """Platform specific way to build binaries with dwarf maps.""" - if configuration.skip_build_and_cleanup: - return module = builder_module() if target_is_android(): dictionary = append_android_envs(dictionary) @@ -2161,8 +2155,6 @@ class Base(unittest2.TestCase): def buildDwo(self, architecture=None, compiler=None, dictionary=None, clean=True): """Platform specific way to build binaries with dwarf maps.""" - if configuration.skip_build_and_cleanup: - return module = builder_module() if target_is_android(): dictionary = append_android_envs(dictionary) @@ -2238,8 +2230,6 @@ class Base(unittest2.TestCase): def cleanup(self, dictionary=None): """Platform specific way to do cleanup after build.""" - if configuration.skip_build_and_cleanup: - return module = builder_module() if not module.cleanup(self, dictionary): raise Exception("Don't know how to do cleanup with dictionary: "+dictionary) @@ -2755,8 +2745,6 @@ class TestBase(Base): def build(self, architecture=None, compiler=None, dictionary=None, clean=True): """Platform specific way to build the default binaries.""" - if configuration.skip_build_and_cleanup: - return module = builder_module() if target_is_android(): dictionary = append_android_envs(dictionary) |