Skip to content
Snippets Groups Projects
Commit 99a9611f authored by kristenk's avatar kristenk
Browse files

Test cabal exec error message in a more portable way

This change allows the tests "can run executables installed in the sandbox" and
"adds the sandbox bin directory to the PATH" to run on Windows by removing the
executable name from the required error message.
parent 94a83b14
No related branches found
No related tags found
No related merge requests found
......@@ -130,7 +130,7 @@ assertMyExecutableNotFound paths = do
result <- cabal_exec paths dir ["my-executable"]
assertExecFailed result
let output = outputText result
expected = "cabal: The program 'my-executable' is required but it " ++
expected = "The program 'my-executable' is required but it " ++
"could not be found"
errMsg = "should not have found a my-executable\n" ++ output
assertBool errMsg $
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment