summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorKai Harries <kai.harries@gmail.com>2016-03-28 15:18:05 +0200
committerTamar Christina <tamar@zhox.com>2016-03-28 15:21:47 +0200
commit49b9d80a4666504f3f3524928c9ae7cc436bb8ba (patch)
treec6680b41190e4b7dfce0bc3842a067689b90f16b /testsuite
parentafc48f8939b99a1a72b43b3e342d56193ed1f34c (diff)
downloadhaskell-49b9d80a4666504f3f3524928c9ae7cc436bb8ba.tar.gz
Do not test for existence of the executable
Summary: The test for the existence of the executable breaks on MS Windows. It is furthermore needless, because if the test can be executed the executable is obviously there. Reviewers: austin, bgamari, Phyx Reviewed By: Phyx Subscribers: Phyx, thomie Differential Revision: https://phabricator.haskell.org/D2050 GHC Trac Issues: #4114
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/tests/driver/T4114a.hs2
-rw-r--r--testsuite/tests/driver/T4114b.hs2
-rw-r--r--testsuite/tests/driver/T4114c.hs2
-rw-r--r--testsuite/tests/driver/T4114d.hs2
4 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/tests/driver/T4114a.hs b/testsuite/tests/driver/T4114a.hs
index ff835d61a7..9664dabafa 100644
--- a/testsuite/tests/driver/T4114a.hs
+++ b/testsuite/tests/driver/T4114a.hs
@@ -4,7 +4,7 @@ module Main (main) where
import T4114aSub
keep, nokeep :: [FilePath]
-keep = ["T4114a", "T4114aSub.hi", "T4114aSub.o", "T4114a.hi", "T4114a.o"]
+keep = ["T4114aSub.hi", "T4114aSub.o", "T4114a.hi", "T4114a.o"]
nokeep = [ ]
diff --git a/testsuite/tests/driver/T4114b.hs b/testsuite/tests/driver/T4114b.hs
index 07486c54cb..b010a732d5 100644
--- a/testsuite/tests/driver/T4114b.hs
+++ b/testsuite/tests/driver/T4114b.hs
@@ -4,7 +4,7 @@ module Main (main) where
import T4114bSub
keep, nokeep :: [FilePath]
-keep = ["T4114b", "T4114bSub.o", "T4114b.o"]
+keep = ["T4114bSub.o", "T4114b.o"]
nokeep = ["T4114bSub.hi", "T4114b.hi"]
main :: IO ()
diff --git a/testsuite/tests/driver/T4114c.hs b/testsuite/tests/driver/T4114c.hs
index f7802e13de..96e8625941 100644
--- a/testsuite/tests/driver/T4114c.hs
+++ b/testsuite/tests/driver/T4114c.hs
@@ -4,7 +4,7 @@ module Main (main) where
import T4114cSub
keep, nokeep :: [FilePath]
-keep = ["T4114c", "T4114cSub.hi", "T4114c.hi"]
+keep = ["T4114cSub.hi", "T4114c.hi"]
nokeep = ["T4114cSub.o", "T4114c.o"]
diff --git a/testsuite/tests/driver/T4114d.hs b/testsuite/tests/driver/T4114d.hs
index 2ff717b396..45946a0111 100644
--- a/testsuite/tests/driver/T4114d.hs
+++ b/testsuite/tests/driver/T4114d.hs
@@ -4,7 +4,7 @@ module Main (main) where
import T4114dSub
keep, nokeep :: [FilePath]
-keep = ["T4114d", "T4114dSub.myhi", "T4114d.myhi"]
+keep = ["T4114dSub.myhi", "T4114d.myhi"]
nokeep = ["T4114dSub.myo", "T4114d.myo"]