diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-06-11 09:54:55 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-06-11 17:31:43 -0400 |
commit | 43fd712b4f679fe00d6d75c8bc088357052a0365 (patch) | |
tree | bd33768330b08856d9f82675acb9ce5b78208234 /libraries/base/tests/enum01.hs | |
parent | e5d275f45677ed89df310754973a15c522dc1003 (diff) | |
download | haskell-wip/T16798.tar.gz |
testsuite: A more portable solution to #9399wip/T16798
Previously we used an awful hybrid batch script/Bourne shell script to
allow this test to run both on Windows and Linux (fixing #9399).
However, this breaks on some libc implementations (e.g. musl). Fix this.
Fixes #16798.
Diffstat (limited to 'libraries/base/tests/enum01.hs')
-rw-r--r-- | libraries/base/tests/enum01.hs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libraries/base/tests/enum01.hs b/libraries/base/tests/enum01.hs index 5aea7dea4d..4dfc29978c 100644 --- a/libraries/base/tests/enum01.hs +++ b/libraries/base/tests/enum01.hs @@ -1,8 +1,4 @@ -- !!! Testing the Prelude's Enum instances. -{-# OPTIONS_GHC -F -pgmF ./enum_processor.bat #-} --- The processor is a non-CPP-based equivalent of --- #define printTest(x) (do{ putStr ( " " ++ "x" ++ " = " ) ; print (x) }) --- which is not portable to clang module Main(main) where |