Skip to content

Commit

Permalink
Ignore two tests for compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulKlint committed Feb 25, 2024
1 parent 1a39d43 commit 8bc6141
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ test bool tstToReal() = toReal(false) == 0.0 && toInt(true) == 1.0;

test bool tstToString() = toString(false) == "false" && toString(true) == "true";

@ignoreCompiler{Undetermined}
test bool shortCircuiting() {
try { return false ==> (1/0 == 0) && true || (1/0 == 0) && !(false && (1/0 == 0)); }
catch ArithmeticException(str _): { return false; }
Expand Down Expand Up @@ -229,6 +230,7 @@ test bool compositeAndBothBTCnt() {
return n == 9;
}
@ignoreCompiler{Undetermined cause}
test bool compositeOrCntBTLast() {
n = 0;
if( int _ := 3 || ([*int _,*int _] := [4,5,6]) ) {
Expand Down

0 comments on commit 8bc6141

Please sign in to comment.