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/lib/exceptions | |
parent | ebd422aed41048476aa61dd4c520d43becd78682 (diff) | |
download | haskell-16514f272fb42af6e9c7674a9bd6c9dce369231f.tar.gz |
Move tests from tests/ghc-regress/* to just tests/*
Diffstat (limited to 'testsuite/tests/ghc-regress/lib/exceptions')
-rw-r--r-- | testsuite/tests/ghc-regress/lib/exceptions/Makefile | 3 | ||||
-rw-r--r-- | testsuite/tests/ghc-regress/lib/exceptions/all.T | 1 | ||||
-rw-r--r-- | testsuite/tests/ghc-regress/lib/exceptions/exceptions001.hs | 7 |
3 files changed, 0 insertions, 11 deletions
diff --git a/testsuite/tests/ghc-regress/lib/exceptions/Makefile b/testsuite/tests/ghc-regress/lib/exceptions/Makefile deleted file mode 100644 index 1c39d1c1fe..0000000000 --- a/testsuite/tests/ghc-regress/lib/exceptions/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -TOP=../../../.. -include $(TOP)/mk/boilerplate.mk -include $(TOP)/mk/test.mk diff --git a/testsuite/tests/ghc-regress/lib/exceptions/all.T b/testsuite/tests/ghc-regress/lib/exceptions/all.T deleted file mode 100644 index 04b3a7fce4..0000000000 --- a/testsuite/tests/ghc-regress/lib/exceptions/all.T +++ /dev/null @@ -1 +0,0 @@ -test('exceptions001', normal, compile_and_run, ['']) diff --git a/testsuite/tests/ghc-regress/lib/exceptions/exceptions001.hs b/testsuite/tests/ghc-regress/lib/exceptions/exceptions001.hs deleted file mode 100644 index f5fcbf0087..0000000000 --- a/testsuite/tests/ghc-regress/lib/exceptions/exceptions001.hs +++ /dev/null @@ -1,7 +0,0 @@ - --- trac #2508 - -import System.Exit -import Control.OldException - -main = exitWith ExitSuccess `finally` return () |