diff options
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/.gitignore | 3 | ||||
-rw-r--r-- | testsuite/tests/determinism/determ003/Makefile | 2 | ||||
-rw-r--r-- | testsuite/tests/determinism/typecheck/Makefile | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/testsuite/.gitignore b/testsuite/.gitignore index b8493f537b..dee90124c3 100644 --- a/testsuite/.gitignore +++ b/testsuite/.gitignore @@ -471,6 +471,7 @@ mk/ghcconfig*_test___spaces_ghc*.exe.mk /tests/deriving/should_run/drvrun019 /tests/deriving/should_run/drvrun020 /tests/deriving/should_run/drvrun021 +/tests/determinism/determinism001 /tests/dph/classes/dph-classes-copy-fast /tests/dph/classes/dph-classes-fast /tests/dph/classes/dph-classes-vseg-fast @@ -1175,6 +1176,7 @@ mk/ghcconfig*_test___spaces_ghc*.exe.mk /tests/perf/should_run/InlineCloneArrayAlloc /tests/perf/should_run/MethSharing /tests/perf/should_run/MethSharing.stats +/tests/perf/should_run/T10359 /tests/perf/should_run/T149_A /tests/perf/should_run/T149_B /tests/perf/should_run/T2902_A @@ -1221,7 +1223,6 @@ mk/ghcconfig*_test___spaces_ghc*.exe.mk /tests/perf/should_run/T876 /tests/perf/should_run/T9203 /tests/perf/should_run/T9339 -/tests/perf/should_run/T10359 /tests/perf/should_run/lazy-bs-alloc /tests/perf/should_run/lazy-bs-alloc.stats /tests/perf/should_run/speed.f32 diff --git a/testsuite/tests/determinism/determ003/Makefile b/testsuite/tests/determinism/determ003/Makefile index 73231a0550..bab18e8de9 100644 --- a/testsuite/tests/determinism/determ003/Makefile +++ b/testsuite/tests/determinism/determ003/Makefile @@ -6,7 +6,7 @@ TEST_HC_OPTS_NO_RECOMP = $(filter-out -fforce-recomp,$(TEST_HC_OPTS)) determ003: $(RM) A.hi A.o - '$(TEST_HC)' $(TEST_HC_OPTS_NO_RECOMP) -O A.hs + '$(TEST_HC)' $(TEST_HC_OPTS_NO_RECOMP) -O -dinitial-unique=0 -dunique-increment=1 A.hs $(CP) A.hi A.normal.hi $(RM) A.hi A.o '$(TEST_HC)' $(TEST_HC_OPTS_NO_RECOMP) -O -dinitial-unique=16777215 -dunique-increment=-1 A.hs diff --git a/testsuite/tests/determinism/typecheck/Makefile b/testsuite/tests/determinism/typecheck/Makefile index f95bfc55bf..ac98ea15ff 100644 --- a/testsuite/tests/determinism/typecheck/Makefile +++ b/testsuite/tests/determinism/typecheck/Makefile @@ -6,7 +6,7 @@ TEST_HC_OPTS_NO_RECOMP = $(filter-out -fforce-recomp,$(TEST_HC_OPTS)) determ005: $(RM) A.hi A.o - '$(TEST_HC)' $(TEST_HC_OPTS_NO_RECOMP) -O A.hs + '$(TEST_HC)' $(TEST_HC_OPTS_NO_RECOMP) -dinitial-unique=0 -dunique-increment=1 -O A.hs $(CP) A.hi A.old.hi $(RM) A.o '$(TEST_HC)' $(TEST_HC_OPTS_NO_RECOMP) -dinitial-unique=16777206 -dunique-increment=-1 -O A.hs |