mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-05-01 09:14:08 +00:00
Estimated hours taken: 0.5 Branches: main Fix test case failures in the decldebug grade caused by recent library changes. tests/debugger/declarative/condition_bug.m: Import the pair module. tests/declarative/typed_unify.m: Import the univ module. tests/debugger/shallow.exp2: tests/debugger/declarative/backtrack.exp: tests/debugger/declarative/condition_bug.exp: tests/debugger/declarative/ite_2.exp: tests/debugger/declarative/priv_builtin_bug.exp: tests/debugger/declarative/track_through_catch.exp: tests/debugger/declarative/typed_unify.exp: Update the expected outputs for these test cases.
18 lines
608 B
Plaintext
18 lines
608 B
Plaintext
1: 1 1 CALL pred shallow.main/2-0 (cc_multi) shallow.m:15
|
|
mdb> echo on
|
|
Command echo enabled.
|
|
mdb> context before
|
|
Contexts will be printed before, on the same line.
|
|
mdb> context
|
|
Contexts are printed before, on the same line.
|
|
mdb> step
|
|
2: 2 2 CALL shallow2.m:14 (shallow.m:38) pred shallow2.safe/1-0 (semidet)
|
|
mdb> print *
|
|
HeadVar__1 [1, 2, 3, 4, 5]
|
|
mdb> stack
|
|
0 pred shallow2.safe/1-0 (semidet) (shallow2.m:14)
|
|
1 pred shallow.queen/2-0 (nondet) (shallow.m:38)
|
|
2 pred shallow.main/2-0 (cc_multi) (shallow.m:16)
|
|
mdb> c -S
|
|
[1, 3, 5, 2, 4]
|