Skip to content

Commit f68fc0f

Browse files
committed
tests: fix missed -ignore-dot-ghci
1 parent 445d092 commit f68fc0f

File tree

3 files changed

+3
-3
lines changed
  • tests/integration/tests

3 files changed

+3
-3
lines changed

tests/integration/tests/3926-ghci-with-sublibraries/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ main
1818
replThread
1919

2020
replThread :: IO ()
21-
replThread = repl [] $ do
21+
replThread = repl ["--ghci-options=-ignore-dot-ghci"] $ do
2222
-- The command must be issued before searching the output for the next prompt,
2323
-- otherwise, on Windows from msys2-20230526, `stack repl` encounters a EOF
2424
-- and terminates gracefully.

tests/integration/tests/4270-files-order/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import StackTest
44
main :: IO ()
55
main = do
66
stack ["build"]
7-
repl [] $ do
7+
repl ["--ghci-options=-ignore-dot-ghci"] $ do
88
-- The command must be issued before searching the output for the next
99
-- prompt, otherwise, on Windows from msys2-20230526, `stack repl`
1010
-- encounters a EOF and terminates gracefully.

tests/integration/tests/module-added-multiple-times/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Data.List
33
import StackTest
44

55
main :: IO ()
6-
main = repl [] $ do
6+
main = repl ["--ghci-options=-ignore-dot-ghci"] $ do
77
-- The command must be issued before searching the output for the next prompt,
88
-- otherwise, on Windows from msys2-20230526, `stack repl` encounters a EOF
99
-- and terminates gracefully.

0 commit comments

Comments
 (0)