summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/ghci.debugger/scripts/break016.script
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/ghci.debugger/scripts/break016.script')
-rw-r--r--testsuite/tests/ghc-regress/ghci.debugger/scripts/break016.script11
1 files changed, 0 insertions, 11 deletions
diff --git a/testsuite/tests/ghc-regress/ghci.debugger/scripts/break016.script b/testsuite/tests/ghc-regress/ghci.debugger/scripts/break016.script
deleted file mode 100644
index 2124e045bd..0000000000
--- a/testsuite/tests/ghc-regress/ghci.debugger/scripts/break016.script
+++ /dev/null
@@ -1,11 +0,0 @@
--- conditional breakpoints
-:l break016.hs
-:break 1 7
--- this is one way to do conditional breakpoints. It's a bit
--- horrible: the :undef will complain the first time it is used.
-:def cond (\expr -> return (":undef __cond\n:def __cond (\\_ -> if "++expr++" then return \"\" else return \":cont\")\n:__cond"))
-:set stop 0 :cond (i < 3)
--- this one continues:
-f 4
--- this one stops:
-f 1