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/th/2014 | |
parent | ebd422aed41048476aa61dd4c520d43becd78682 (diff) | |
download | haskell-16514f272fb42af6e9c7674a9bd6c9dce369231f.tar.gz |
Move tests from tests/ghc-regress/* to just tests/*
Diffstat (limited to 'testsuite/tests/ghc-regress/th/2014')
-rw-r--r-- | testsuite/tests/ghc-regress/th/2014/A.hs | 1 | ||||
-rw-r--r-- | testsuite/tests/ghc-regress/th/2014/A.hs-boot | 1 | ||||
-rw-r--r-- | testsuite/tests/ghc-regress/th/2014/B.hs | 9 | ||||
-rw-r--r-- | testsuite/tests/ghc-regress/th/2014/C.hs | 8 | ||||
-rw-r--r-- | testsuite/tests/ghc-regress/th/2014/Makefile | 9 | ||||
-rw-r--r-- | testsuite/tests/ghc-regress/th/2014/all.T | 8 |
6 files changed, 0 insertions, 36 deletions
diff --git a/testsuite/tests/ghc-regress/th/2014/A.hs b/testsuite/tests/ghc-regress/th/2014/A.hs deleted file mode 100644 index d843c00b78..0000000000 --- a/testsuite/tests/ghc-regress/th/2014/A.hs +++ /dev/null @@ -1 +0,0 @@ -module A where diff --git a/testsuite/tests/ghc-regress/th/2014/A.hs-boot b/testsuite/tests/ghc-regress/th/2014/A.hs-boot deleted file mode 100644 index d843c00b78..0000000000 --- a/testsuite/tests/ghc-regress/th/2014/A.hs-boot +++ /dev/null @@ -1 +0,0 @@ -module A where diff --git a/testsuite/tests/ghc-regress/th/2014/B.hs b/testsuite/tests/ghc-regress/th/2014/B.hs deleted file mode 100644 index 0233a40209..0000000000 --- a/testsuite/tests/ghc-regress/th/2014/B.hs +++ /dev/null @@ -1,9 +0,0 @@ -{-# LANGUAGE TemplateHaskell #-} -module B where - -import {-# SOURCE #-} A () ---import A () -import Language.Haskell.TH - -expQ :: ExpQ -expQ = [| () |] diff --git a/testsuite/tests/ghc-regress/th/2014/C.hs b/testsuite/tests/ghc-regress/th/2014/C.hs deleted file mode 100644 index 5ddff11497..0000000000 --- a/testsuite/tests/ghc-regress/th/2014/C.hs +++ /dev/null @@ -1,8 +0,0 @@ -{-# LANGUAGE TemplateHaskell #-} -module C where - -import B - -foo :: a -foo = undefined - where second = $( expQ ) diff --git a/testsuite/tests/ghc-regress/th/2014/Makefile b/testsuite/tests/ghc-regress/th/2014/Makefile deleted file mode 100644 index 862ea725d6..0000000000 --- a/testsuite/tests/ghc-regress/th/2014/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -TOP=../../../.. -include $(TOP)/mk/boilerplate.mk -include $(TOP)/mk/test.mk - -2014 : - '$(TEST_HC)' $(TEST_HC_OPTS) -fforce-recomp -c A.hs-boot - '$(TEST_HC)' $(TEST_HC_OPTS) -fforce-recomp -c A.hs - '$(TEST_HC)' $(TEST_HC_OPTS) -fforce-recomp -c B.hs - '$(TEST_HC)' $(TEST_HC_OPTS) -fforce-recomp -c C.hs -v0 diff --git a/testsuite/tests/ghc-regress/th/2014/all.T b/testsuite/tests/ghc-regress/th/2014/all.T deleted file mode 100644 index c6792677d9..0000000000 --- a/testsuite/tests/ghc-regress/th/2014/all.T +++ /dev/null @@ -1,8 +0,0 @@ -setTestOpts(if_compiler_profiled(skip)) - -test('2014', - [req_interp, - extra_clean(['A.hi-boot','A.hi','A.o','A.o-boot', - 'B.hi', 'B.o', 'C.hi', 'C.o'])], - run_command, - ['$MAKE -s --no-print-directory 2014']) |