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
This commit is contained in:
parent
145abde152
commit
bca81c5a18
@ -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()
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user