diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-20 04:14:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-20 04:14:19 +0000 |
commit | 2560bd8cdb3d721a8e6ddf8663b4d402b22b3d07 (patch) | |
tree | b644d94450303b432421216c136a8ec2fa842f3c | |
parent | 6eaa46956aa0b35d7b4b1d49fd70d077870a296e (diff) |
Add stats output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5110 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Jello/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Jello/Makefile b/test/Jello/Makefile index e9c15a7b4e..eef9f914c8 100644 --- a/test/Jello/Makefile +++ b/test/Jello/Makefile @@ -12,7 +12,7 @@ all:: $(addprefix Output/, $(TESTS:%.ll=%.out)) Output/%.out: Output/%.bc $(LJELLO) @echo "======== Running $< ===================" - $(VERB) jello $< > $@ 2>&1 || \ + $(VERB) jello -stats $< > $@ 2>&1 || \ ( cat $@; rm -f $@; $(FAILURE) $@ ) |