summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci.debugger/scripts/break023/break023.script
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghci.debugger/scripts/break023/break023.script')
-rw-r--r--testsuite/tests/ghci.debugger/scripts/break023/break023.script17
1 files changed, 17 insertions, 0 deletions
diff --git a/testsuite/tests/ghci.debugger/scripts/break023/break023.script b/testsuite/tests/ghci.debugger/scripts/break023/break023.script
new file mode 100644
index 0000000000..4ddd2d6be4
--- /dev/null
+++ b/testsuite/tests/ghci.debugger/scripts/break023/break023.script
@@ -0,0 +1,17 @@
+
+-- We have this structure of modules:
+
+-- A (imports B.boot)
+-- B (imports A)
+-- B.boot (imports A)
+-- C (imports A and B)
+
+-- And we load C, to debug some function called b in B.
+-- But first we touch A, and reload. B.boot will be reloaded, but not B, which will end up with an empty modbreaks. We can no longer set a breakpoint in B.b
+-- The effect we want is B.boot being reloaded while B is not.
+
+:l C
+:break b -- it works ok at this point
+:! touch A.hs
+:r
+:break b -- it does not work anymore