[llvm-commits] [test-suite] r51315 - /test-suite/trunk/TEST.example.Makefile

Matthijs Kooijman matthijs at stdin.nl
Tue May 20 04:10:15 PDT 2008


Author: matthijs
Date: Tue May 20 06:10:04 2008
New Revision: 51315

URL: http://llvm.org/viewvc/llvm-project?rev=51315&view=rev
Log:
Make the example test use wc to count bytes instead of characters, words and lines as before. wc doesn't like counting these in binary files that contain invalid multibyte characters.

Modified:
    test-suite/trunk/TEST.example.Makefile

Modified: test-suite/trunk/TEST.example.Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/TEST.example.Makefile?rev=51315&r1=51314&r2=51315&view=diff

==============================================================================
--- test-suite/trunk/TEST.example.Makefile (original)
+++ test-suite/trunk/TEST.example.Makefile Tue May 20 06:10:04 2008
@@ -11,4 +11,4 @@
 test.$(TEST).%: Output/%.llvm.bc
 	@echo "========================================="
 	@echo "Running '$(TEST)' test on '$(TESTNAME)' program"
-	wc $<
+	wc -c $<





More information about the llvm-commits mailing list