summaryrefslogtreecommitdiff
path: root/testsuite/tests/perf/should_run/all.T
diff options
context:
space:
mode:
authorJoachim Breitner <mail@joachim-breitner.de>2014-02-10 11:13:19 +0000
committerJoachim Breitner <mail@joachim-breitner.de>2014-02-10 13:30:05 +0000
commit393ea739567206d848f53e9ca75f532a49218694 (patch)
tree45b42954406b8cf2993f8e36a4333921fb284135 /testsuite/tests/perf/should_run/all.T
parent9bc826569ec2ae9bfd1e3bd882fcb406da8f26b3 (diff)
downloadhaskell-393ea739567206d848f53e9ca75f532a49218694.tar.gz
Update test cases due to call arity
Some nice improvements on already succeeding test cases (#876, #7954 and #4267) Test #149 needed a little change, lest call arity causes a allocation change that we do not want to test here.
Diffstat (limited to 'testsuite/tests/perf/should_run/all.T')
-rw-r--r--testsuite/tests/perf/should_run/all.T10
1 files changed, 7 insertions, 3 deletions
diff --git a/testsuite/tests/perf/should_run/all.T b/testsuite/tests/perf/should_run/all.T
index 98f9dc2ad3..9ce4d45e51 100644
--- a/testsuite/tests/perf/should_run/all.T
+++ b/testsuite/tests/perf/should_run/all.T
@@ -57,8 +57,9 @@ test('lazy-bs-alloc',
test('T876',
[stats_num_field('bytes allocated',
- [(wordsize(64), 1263712 , 5),
+ [(wordsize(64), 63216 , 5),
# 2013-02-14: 1263712 (x86_64/Linux)
+ # 2014-02-10: 63216 (x86_64/Linux), call arity analysis
(wordsize(32), 663712, 5)]),
only_ways(['normal']),
extra_run_opts('10000')
@@ -289,7 +290,8 @@ test('T7797',
test('T7954',
[stats_num_field('bytes allocated',
[(wordsize(32), 1380051408, 10),
- (wordsize(64), 2720051528, 10)]),
+ (wordsize(64), 1680051336, 10)]),
+ # 2014-02-10: 1680051336 (x86_64/Linux), call arity analysis
only_ways(['normal'])
],
compile_and_run,
@@ -313,8 +315,10 @@ test('T5949',
test('T4267',
[stats_num_field('bytes allocated',
- [ (wordsize(64), 130000, 10)]),
+ [ (wordsize(64), 40992, 10)]),
# previously, it was >170000 bytes
+ # 2014-01-17: 130000
+ # 2014-02-10: 40992 (x86_64/Linux), call arity analysis
only_ways(['normal'])],
compile_and_run,
['-O'])