diff options
author | sheaf <sam.derbyshire@gmail.com> | 2022-02-11 12:24:18 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2022-02-11 17:55:34 -0500 |
commit | 34dec6b75dbcc2bf057b1dacbb2877faaafa2a74 (patch) | |
tree | a61139c855da2d0b1974f4e04d2040a5a4a6a7bd | |
parent | 19deb002daa74de15cebaae3d861e6f2f932f7fd (diff) | |
download | haskell-34dec6b75dbcc2bf057b1dacbb2877faaafa2a74.tar.gz |
Decrease the size of the LargeRecord test
This test was taking too long to run, so this patch makes it smaller.
-------------------------
Metric Decrease:
LargeRecord
-------------------------
-rw-r--r-- | testsuite/tests/perf/compiler/LargeRecord.hs | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/testsuite/tests/perf/compiler/LargeRecord.hs b/testsuite/tests/perf/compiler/LargeRecord.hs index 6b238b54de..11a35593ab 100644 --- a/testsuite/tests/perf/compiler/LargeRecord.hs +++ b/testsuite/tests/perf/compiler/LargeRecord.hs @@ -29,21 +29,6 @@ type BigFieldList = , "f13" := Int , "f14" := Int , "f15" := Int - , "f16" := Int - , "f17" := Int - , "f18" := Int - , "f19" := Int - , "f20" := Int - , "f21" := Int - , "f22" := Int - , "f23" := Int - , "f24" := Int - , "f25" := Int - , "f26" := Int - , "f27" := Int - , "f28" := Int - , "f29" := Int - , "f30" := Int ] bigRec :: Record BigFieldList @@ -63,21 +48,6 @@ bigRec = & #f13 := 13 & #f14 := 14 & #f15 := 15 - & #f16 := 16 - & #f17 := 17 - & #f18 := 18 - & #f19 := 19 - & #f20 := 20 - & #f21 := 21 - & #f22 := 22 - & #f23 := 23 - & #f24 := 24 - & #f25 := 25 - & #f26 := 26 - & #f27 := 27 - & #f28 := 28 - & #f29 := 29 - & #f30 := 30 & rnil main :: IO () |