Add a trivial script to extract the times from *.report.txt files.
[llvm-testsuite.git] / TEST.example.Makefile
blob3da799e978487069f11f508a2577d86ab5a16cad
1 ##===- TEST.example.Makefile -------------------------------*- Makefile -*-===##
3 # Example to show a custom test.  This test just prints the size of the bytecode
4 # file for each program.
6 ##===----------------------------------------------------------------------===##
8 TESTNAME = $*
10 $(PROGRAMS_TO_TEST:%=test.$(TEST).%): \
11 test.$(TEST).%: Output/%.llvm.bc
12         @echo "========================================="
13         @echo "Running '$(TEST)' test on '$(TESTNAME)' program"
14         wc -c $<