diff options
author | David Terei <davidterei@gmail.com> | 2011-07-20 11:09:03 -0700 |
---|---|---|
committer | David Terei <davidterei@gmail.com> | 2011-07-20 11:26:35 -0700 |
commit | 16514f272fb42af6e9c7674a9bd6c9dce369231f (patch) | |
tree | e4f332b45fe65e2a7a2451be5674f887b42bf199 /testsuite/tests/ghc-regress/gadt/Makefile | |
parent | ebd422aed41048476aa61dd4c520d43becd78682 (diff) | |
download | haskell-16514f272fb42af6e9c7674a9bd6c9dce369231f.tar.gz |
Move tests from tests/ghc-regress/* to just tests/*
Diffstat (limited to 'testsuite/tests/ghc-regress/gadt/Makefile')
-rw-r--r-- | testsuite/tests/ghc-regress/gadt/Makefile | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/testsuite/tests/ghc-regress/gadt/Makefile b/testsuite/tests/ghc-regress/gadt/Makefile deleted file mode 100644 index c2dff37de1..0000000000 --- a/testsuite/tests/ghc-regress/gadt/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -TOP=../../.. -include $(TOP)/mk/boilerplate.mk -include $(TOP)/mk/test.mk - -.PHONY: gadt17 gadt23 - -# A mulit-module test that made GHC 6.4.1 crash -gadt17: - @$(RM) gadt17.hi Gadt17_help.hi - @$(RM) A$(OBJSUFFIX) - '$(TEST_HC)' $(TEST_HC_OPTS) -c Gadt17_help.hs - '$(TEST_HC)' $(TEST_HC_OPTS) -c gadt17.hs - -gadt23: - $(RM) gadt23 gadt23.hi gadt23.o Gadt23_AST.hi Gadt23_AST.o - '$(TEST_HC)' $(TEST_HC_OPTS) -v0 --make gadt23.hs - # We want to "touch gadt23.hs" really, but we then have issues with - # everything happening in the same second so the touch having no - # effect. Thus make gadt23.hi/o older instead. - touch -t 01010000 gadt23.hi gadt23.o - '$(TEST_HC)' $(TEST_HC_OPTS) -v0 --make gadt23.hs - |