[llvm-commits] [test-suite] r91038 - /test-suite/trunk/Makefile.programs

Daniel Dunbar daniel at zuster.org
Wed Dec 9 18:02:51 PST 2009


Author: ddunbar
Date: Wed Dec  9 20:02:51 2009
New Revision: 91038

URL: http://llvm.org/viewvc/llvm-project?rev=91038&view=rev
Log:
NightlyTest: Fix a {think,test}o, need to try a bit harder to find all the
foo.report.txt files, this part of the makefile is only run at the top-level.

Modified:
    test-suite/trunk/Makefile.programs

Modified: test-suite/trunk/Makefile.programs
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.programs?rev=91038&r1=91037&r2=91038&view=diff

==============================================================================
--- test-suite/trunk/Makefile.programs (original)
+++ test-suite/trunk/Makefile.programs Wed Dec  9 20:02:51 2009
@@ -799,7 +799,7 @@
 
 report.$(TEST).raw.out: $(REPORT_DEPENDENCIES) $(TestMakefile)
 	$(MAKE) $(FORCE_SERIAL_ARG) TEST=$(TEST)
-	cat Output/*.$(TEST).report.txt | tee $@
+	find . -name \*.$(TEST).report.txt -exec cat {} \; | tee $@
 
 ifneq ($(TestReport),)
 report.$(TEST).txt: report.$(TEST).raw.out $(TestReport) $(GENERATEREPORT)





More information about the llvm-commits mailing list