diff options
author | Sean Callanan <scallanan@apple.com> | 2016-01-26 01:15:57 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2016-01-26 01:15:57 +0000 |
commit | bca81c5a18e442767b4e08c2e73daadeaaa3e24d (patch) | |
tree | e69a2aedb37d05bc91eaaa4a42ac45375d90147e /lldb/packages/Python/lldbsuite/test | |
parent | 145abde152ec206aa6857cfed2b6dd785c395cc8 (diff) | |
download | bcm5719-llvm-bca81c5a18e442767b4e08c2e73daadeaaa3e24d.tar.gz bcm5719-llvm-bca81c5a18e442767b4e08c2e73daadeaaa3e24d.zip |
Fix the lldbinline tests so they make well-formed Makefiles.
lldbinline tests previously did not run correctly unless there was already a
Makefile for them. This was because the syntax of the emitted Makefile made the
default make rule be the "cleanup" rule, which is pretty unhelpful. Now the
default rule is the one included from Makefile.rules, which is much better.
llvm-svn: 258763
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbinline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbinline.py b/lldb/packages/Python/lldbsuite/test/lldbinline.py index abde6e790de..6e339f62d08 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbinline.py +++ b/lldb/packages/Python/lldbsuite/test/lldbinline.py @@ -116,8 +116,8 @@ class InlineTest(TestBase): if ('CXX_SOURCES' in list(categories.keys())): makefile.write("CXXFLAGS += -std=c++11\n") - makefile.write("\ncleanup:\n\trm -f Makefile *.d\n\n") makefile.write("include $(LEVEL)/Makefile.rules\n") + makefile.write("\ncleanup:\n\trm -f Makefile *.d\n\n") makefile.flush() makefile.close() |