mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 09:23:44 +00:00
tests/accumulator/*.m:
tests/analysis_*/*.m:
tests/benchmarks*/*.m:
tests/debugger*/*.{m,exp,inp}:
tests/declarative_debugger*/*.{m,exp,inp}:
tests/dppd*/*.m:
tests/exceptions*/*.m:
tests/general*/*.m:
tests/grade_subdirs*/*.m:
tests/hard_coded*/*.m:
Make these tests use four-space indentation, and ensure that
each module is imported on its own line. (I intend to use the latter
to figure out which subdirectories' tests can be executed in parallel.)
These changes usually move code to different lines. For the debugger tests,
specify the new line numbers in .inp files and expect them in .exp files.
34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
E1: C1 CALL pred exception_value.main/2-0 (cc_multi) exception_value.m:18
|
|
mdb> echo on
|
|
Command echo enabled.
|
|
mdb> register --quiet
|
|
mdb> break p
|
|
0: + stop interface pred exception_value.p/1-0 (det)
|
|
mdb> break q
|
|
1: + stop interface pred exception_value.q/1-0 (det)
|
|
mdb> continue
|
|
E2: C2 CALL pred exception_value.p/1-0 (det) exception_value.m:36
|
|
mdb> finish
|
|
E3: C2 EXCP pred exception_value.p/1-0 (det)
|
|
mdb> print exception
|
|
"p exception"
|
|
mdb> continue
|
|
mdb: warning: reached unknown label
|
|
This may result in some exception events
|
|
being omitted from the trace.
|
|
exception(univ_cons("p exception"))
|
|
E4: C3 CALL pred exception_value.q/1-0 (det) exception_value.m:41
|
|
mdb> finish
|
|
E5: C3 EXCP pred exception_value.q/1-0 (det)
|
|
mdb> browse exception
|
|
browser> depth 9
|
|
browser> size 99
|
|
browser> ls
|
|
"q oops" - [1, 2, 3]
|
|
browser> quit
|
|
mdb> continue
|
|
mdb: warning: reached unknown label
|
|
This may result in some exception events
|
|
being omitted from the trace.
|
|
exception(univ_cons("q oops" - [1, 2, 3]))
|