mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 17:33:38 +00:00
tests/debugger/Mmakefile:
Delete the bespoke make rules for test cases that do not require
their own special handling.
tests/debugger/all_solutions.exp:
tests/debugger/all_solutions.exp2:
tests/debugger/all_solutions.exp4:
tests/debugger/browse_packed.exp:
tests/debugger/browse_pretty.exp:
tests/debugger/class_decl.exp:
tests/debugger/cmd_quote.exp:
tests/debugger/debugger_regs.exp:
tests/debugger/field_names.exp:
tests/debugger/implied_instance.exp:
tests/debugger/label_layout.exp:
tests/debugger/list_cmd.exp:
tests/debugger/lval_desc_array.exp:
tests/debugger/multi_parameter.exp:
tests/debugger/multi_parameter.exp2:
tests/debugger/mutrec.exp:
tests/debugger/no_inline_builtins.exp:
tests/debugger/queens_rep.exp:
tests/debugger/shallow.exp:
tests/debugger/shallow.exp2:
Expect standardized event numbers and call sequence numbers,
since that is what the implicit rule specifies.
tests/debugger/all_solutions.m:
Fill in missing info about which .expN file is for what situations.
47 lines
1.7 KiB
Plaintext
47 lines
1.7 KiB
Plaintext
E1: C1 CALL pred implied_instance.main/2-0 (det) implied_instance.m:30
|
|
mdb> echo on
|
|
Command echo enabled.
|
|
mdb> register --quiet
|
|
mdb> context none
|
|
Contexts will not be printed.
|
|
mdb> alias P print *
|
|
P => print *
|
|
mdb> goto 2
|
|
E2: C2 CALL pred implied_instance.p/2-0 (det)
|
|
mdb> P
|
|
HeadVar__1 2
|
|
mdb>
|
|
E3: C3 CALL pred implied_instance.ClassMethod_for_implied_instance__sumable____int__arity0______implied_instance__p_2/2-0 (det)
|
|
mdb> P
|
|
HeadVar__1 2
|
|
mdb> break -e p
|
|
0: + stop entry pred implied_instance.p/2-0 (det)
|
|
mdb> continue -a
|
|
E4: C4 CALL pred implied_instance.copy_int/2-0 (det)
|
|
E5: C4 EXIT pred implied_instance.copy_int/2-0 (det)
|
|
E6: C3 EXIT pred implied_instance.ClassMethod_for_implied_instance__sumable____int__arity0______implied_instance__p_2/2-0 (det)
|
|
E7: C2 EXIT pred implied_instance.p/2-0 (det)
|
|
E8: C5 CALL pred implied_instance.p/2-0 (det)
|
|
mdb> P
|
|
HeadVar__1 [42, 24, 1, 2, 3]
|
|
mdb>
|
|
E9: C6 CALL pred implied_instance.ClassMethod_for_implied_instance__sumable____list__list__arity1______implied_instance__p_2/2-0 (det)
|
|
mdb> P
|
|
HeadVar__1 [42, 24, 1, 2, 3]
|
|
mdb>
|
|
E10: C7 CALL pred implied_instance.sum_int_list/2-0 (det)
|
|
mdb> P
|
|
HeadVar__1 [42, 24, 1, 2, 3]
|
|
mdb> continue -a
|
|
E11: C7 SWTC pred implied_instance.sum_int_list/2-0 (det) s2-2;
|
|
E12: C8 CALL pred implied_instance.p/2-0 (det)
|
|
mdb> P
|
|
HeadVar__1 42
|
|
mdb>
|
|
E13: C9 CALL pred implied_instance.ClassMethod_for_implied_instance__sumable____int__arity0______implied_instance__p_2/2-0 (det)
|
|
mdb> P
|
|
HeadVar__1 42
|
|
mdb> continue -S
|
|
2
|
|
72
|