[commit: ghc] master: Do not test for existence of the executable (49b9d80)
git at git.haskell.org
git at git.haskell.org
Mon Mar 28 13:19:54 UTC 2016
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/49b9d80a4666504f3f3524928c9ae7cc436bb8ba/ghc
>---------------------------------------------------------------
commit 49b9d80a4666504f3f3524928c9ae7cc436bb8ba
Author: Kai Harries <kai.harries at gmail.com>
Date: Mon Mar 28 15:18:05 2016 +0200
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
>---------------------------------------------------------------
49b9d80a4666504f3f3524928c9ae7cc436bb8ba
testsuite/tests/driver/T4114a.hs | 2 +-
testsuite/tests/driver/T4114b.hs | 2 +-
testsuite/tests/driver/T4114c.hs | 2 +-
testsuite/tests/driver/T4114d.hs | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/testsuite/tests/driver/T4114a.hs b/testsuite/tests/driver/T4114a.hs
index ff835d6..9664dab 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 07486c5..b010a73 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 f7802e1..96e8625 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 2ff717b..45946a0 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"]
More information about the ghc-commits
mailing list