diff options
author | Pavel Labath <labath@google.com> | 2016-06-07 21:29:46 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-06-07 21:29:46 +0000 |
commit | f0f62d8451da35c2557e1385bac160b93b005b89 (patch) | |
tree | 7c31eccac83b95e293ab750c31fc48bc376ef2c2 /lldb/packages/Python/lldbsuite/test/lldbinline.py | |
parent | 1d0a9fd08930e800dc5e57f246f4e50dd1577f4b (diff) | |
download | bcm5719-llvm-f0f62d8451da35c2557e1385bac160b93b005b89.tar.gz bcm5719-llvm-f0f62d8451da35c2557e1385bac160b93b005b89.zip |
Revert "Make lldbinline.py regenerate the Makefile each time it builds."
This reverts commit r272024 as it is not windows-compatible.
llvm-svn: 272062
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbinline.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbinline.py | 24 |
1 files changed, 5 insertions, 19 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbinline.py b/lldb/packages/Python/lldbsuite/test/lldbinline.py index 8d619cf829d..6a61b2eaf55 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbinline.py +++ b/lldb/packages/Python/lldbsuite/test/lldbinline.py @@ -2,9 +2,7 @@ from __future__ import print_function from __future__ import absolute_import # System modules -import filecmp import os -import sys # Third-party modules @@ -91,6 +89,9 @@ class InlineTest(TestBase): return "-N dsym %s" % (self.mydir) def BuildMakefile(self): + if os.path.exists("Makefile"): + return + categories = {} for f in os.listdir(os.getcwd()): @@ -101,7 +102,7 @@ class InlineTest(TestBase): else: categories[t] = [f] - makefile = open("Makefile.tmp", 'w+') + makefile = open("Makefile", 'w+') level = os.sep.join([".."] * len(self.mydir.split(os.sep))) + os.sep + "make" @@ -117,26 +118,11 @@ class InlineTest(TestBase): if ('CXX_SOURCES' in list(categories.keys())): makefile.write("CXXFLAGS += -std=c++11\n") - # clang-3.5+ outputs FullDebugInfo by default for Darwin/FreeBSD - # targets. Other targets do not, which causes this test to fail. - # This flag enables FullDebugInfo for all targets. - - makefile.write("ifneq (,$(findstring clang,$(CC)))\n") - makefile.write(" CFLAGS_EXTRAS += -fno-limit-debug-info\n") - makefile.write("endif\n\n") - - makefile.write("include $(LEVEL)/Makefile.rules\n\n") - + makefile.write("include $(LEVEL)/Makefile.rules\n") makefile.write("\ncleanup:\n\trm -f Makefile *.d\n\n") makefile.flush() makefile.close() - if os.path.exists("Makefile"): - if not filecmp.cmp("Makefile", "Makefile.tmp"): - sys.exit("Existing Makefile doesn't match generated Makefile!") - - os.rename("Makefile.tmp", "Makefile") - @skipUnlessDarwin def __test_with_dsym(self): self.using_dsym = True |