diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2016-06-15 16:57:05 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2016-06-18 12:46:05 +0200 |
commit | f72f23f9f6ff2914ec99fc86f67c89927f18ba47 (patch) | |
tree | 7389733b86a221d9007f8fd17c30ffaaec55fc2e /testsuite/tests/ghci.debugger/scripts/break011.stdout | |
parent | e02beb1849416f5af8ec56acd17f37b5dc7c24a4 (diff) | |
download | haskell-f72f23f9f6ff2914ec99fc86f67c89927f18ba47.tar.gz |
Testsuite: run tests in <testdir>.run instead of /tmp
As discussed in Phab:D1187, this approach makes it a bit easier to
inspect the test directory while working on a new test.
The only tests that needed changes are the ones that refer to files in
ancestor directories. Those files are now copied directly into the test
directory.
validate still runs the tests in a temporary directory in /tmp, see
`Note [Running tests in /tmp]` in testsuite/driver/runtests.py.
Update submodule hpc.
Reviewed by: simonmar
Differential Revision: https://phabricator.haskell.org/D2333
GHC Trac Issues: #11980
Diffstat (limited to 'testsuite/tests/ghci.debugger/scripts/break011.stdout')
-rw-r--r-- | testsuite/tests/ghci.debugger/scripts/break011.stdout | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/testsuite/tests/ghci.debugger/scripts/break011.stdout b/testsuite/tests/ghci.debugger/scripts/break011.stdout index c49db52b05..47fb7b135d 100644 --- a/testsuite/tests/ghci.debugger/scripts/break011.stdout +++ b/testsuite/tests/ghci.debugger/scripts/break011.stdout @@ -5,15 +5,15 @@ Stopped in <exception thrown>, <unknown> _exception :: e = _ Stopped in <exception thrown>, <unknown> _exception :: e = _ --1 : main (../Test7.hs:2:18-28) --2 : main (../Test7.hs:2:8-29) +-1 : main (Test7.hs:2:18-28) +-2 : main (Test7.hs:2:8-29) <end of history> -Logged breakpoint at ../Test7.hs:2:18-28 +Logged breakpoint at Test7.hs:2:18-28 _result :: a -Logged breakpoint at ../Test7.hs:2:8-29 +Logged breakpoint at Test7.hs:2:8-29 _result :: IO a no more logged breakpoints -Logged breakpoint at ../Test7.hs:2:18-28 +Logged breakpoint at Test7.hs:2:18-28 _result :: a Stopped at <unknown> _exception :: e @@ -22,28 +22,28 @@ _exception = SomeException (ErrorCallWithLocation "foo" "CallStack (from HasCallStack): - error, called at ../Test7.hs:2:18 in main:Main") + error, called at Test7.hs:2:18 in main:Main") _result :: a = _ _exception :: SomeException = SomeException (ErrorCallWithLocation "foo" "CallStack (from HasCallStack): - error, called at ../Test7.hs:2:18 in main:Main") + error, called at Test7.hs:2:18 in main:Main") *** Exception: foo CallStack (from HasCallStack): - error, called at ../Test7.hs:2:18 in main:Main + error, called at Test7.hs:2:18 in main:Main Stopped in <exception thrown>, <unknown> _exception :: e = SomeException (ErrorCallWithLocation "foo" "CallStack (from HasCallStack): - error, called at ../Test7.hs:2:18 in main:Main") + error, called at Test7.hs:2:18 in main:Main") Stopped in <exception thrown>, <unknown> _exception :: e = SomeException (ErrorCallWithLocation "foo" "CallStack (from HasCallStack): - error, called at ../Test7.hs:2:18 in main:Main") + error, called at Test7.hs:2:18 in main:Main") *** Exception: foo CallStack (from HasCallStack): - error, called at ../Test7.hs:2:18 in main:Main + error, called at Test7.hs:2:18 in main:Main |