Skip to content

Commit

Permalink
add (now failing) test 317 to iso_conformity_tests.pl
Browse files Browse the repository at this point in the history
  • Loading branch information
mthom committed Sep 21, 2023
1 parent c26e943 commit c547f67
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests-pl/iso-conformity-tests.pl
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@
test_176 :- X is 0b1mod 2,
X == 1.

test_217_181_290 :-
test_217_181_290_317 :-
setup_call_cleanup(( current_op(P, xfy, '|') ->
true
; P = 0
Expand All @@ -785,7 +785,10 @@
C0 == "a-->b,c | d",
read_from_chars("[(a|b)].", T1),
writeq_term_to_chars(T1, C1),
C1 == "[(a | b)]"
C1 == "[(a | b)]",
read_from_chars("[a,(b,c)|[]].", T2),
writeq_term_to_chars(T2, C2),
C2 == "[a,(b,c)]"
),
op(P, xfy, '|')).

Expand Down

0 comments on commit c547f67

Please sign in to comment.