Files
mercury/tests/declarative_debugger/solns.exp3
Julien Fischer 5deda81dd0 Fix another test a failure in the decldebug grades
tests/declarative_debugger/solns.exp3:
    Conform to changes to the standard library (a while ago)
    that have altered the event numbering here.
2018-07-17 00:05:54 -04:00

32 lines
685 B
Plaintext

1: 1 1 CALL pred solns.main/2-0 (det) solns.m:16
mdb> echo on
Command echo enabled.
mdb> register --quiet
mdb> break p
0: + stop interface pred solns.p/2-0 (det)
mdb> continue
2: 2 2 CALL pred solns.p/2-0 (det) solns.m:23 (solns.m:17)
mdb> finish
206: 2 2 EXIT pred solns.p/2-0 (det) solns.m:23 (solns.m:17)
mdb> dd -d 3 -n 7
p(1, [1, 2, 3])
Valid? no
q(1, 1)
Valid? yes
q(1, 2)
Valid? yes
q(1, 3)
Valid? yes
Call q(1, _)
Solutions:
q(1, 1)
q(1, 2)
q(1, 3)
Complete? yes
Found incorrect contour:
solutions(q(1), [1, 2, 3])
p(1, [1, 2, 3])
Is this a bug? yes
206: 2 2 EXIT pred solns.p/2-0 (det) solns.m:23 (solns.m:17)
mdb> quit -y