diff options
author | Simon Marlow <marlowsd@gmail.com> | 2012-03-02 11:42:25 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2012-03-02 11:42:25 +0000 |
commit | 7a29e7e2e17b47360adfca59d049b77f8ec3f0f7 (patch) | |
tree | c7c5aa511617daf925f7c22955e446e89161f072 /testsuite/tests | |
parent | ff74e75571c9ff78e333e96458cd165b2b665031 (diff) | |
download | haskell-7a29e7e2e17b47360adfca59d049b77f8ec3f0f7.tar.gz |
fix test for the new TASKS stats output
Diffstat (limited to 'testsuite/tests')
-rw-r--r-- | testsuite/tests/rts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/rts/Makefile b/testsuite/tests/rts/Makefile index 3f931478d8..8f4acc0f9c 100644 --- a/testsuite/tests/rts/Makefile +++ b/testsuite/tests/rts/Makefile @@ -35,7 +35,7 @@ exec_signals-prep: 4850: $(RM) 4850.o 4850.hi 4850$(exeext) "$(TEST_HC)" $(TEST_HC_OPTS) -v0 -rtsopts -debug -threaded --make 4850 - ./4850 +RTS -s 2>&1 | grep Task | wc -l | tr -d ' ' + ./4850 +RTS -s 2>&1 | grep TASKS | sed 's/^ *TASKS: *\([0-9]*\).*$$/\1/' .PHONY: T5423 T5423: |