diff options
author | Gintautas Miliauskas <gintautas.miliauskas@gmail.com> | 2014-10-29 23:14:38 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-10-29 23:14:39 -0500 |
commit | 3d27f6975467ea05bc7e8aaf9e5a3c26d1cd20a6 (patch) | |
tree | 9a56e35ef129b31cecbc04e0b800c708e700c701 | |
parent | f10b67a0d3ca588629f1cddd2f5a2bf1e1a4bc8e (diff) | |
download | haskell-3d27f6975467ea05bc7e8aaf9e5a3c26d1cd20a6.tar.gz |
Do not use a relative path for echo in tests/ghci/prog013.
Trying to run /usr/bin/echo fails when running tests on Windows,
but using plain "echo" works fine. I think it's fine to assume
the environment is not doing anything particularly funny...
Summary:
...with
echo...
Reviewers: austin
Reviewed By: austin
Subscribers: thomie, carter, simonmar, #ghc_windows_task_force
Differential Revision: https://phabricator.haskell.org/D384
-rw-r--r-- | testsuite/tests/ghci/prog013/prog013.script | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/ghci/prog013/prog013.script b/testsuite/tests/ghci/prog013/prog013.script index b9df968933..d4b91deec1 100644 --- a/testsuite/tests/ghci/prog013/prog013.script +++ b/testsuite/tests/ghci/prog013/prog013.script @@ -1,4 +1,4 @@ -:set editor /bin/echo +:set editor echo :l Good.hs :e :l Bad.hs |