Skip to content

Commit 660103e

Browse files
committed
test:bool: improve printout
1 parent d884471 commit 660103e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/bool/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ bool b = logical_not(true);
1010
int c = 0;
1111

1212
if(b) {
13-
fprintf(stderr, "logical_not(true) should be false\n");
13+
fprintf(stderr, "logical_not(true) should be false: %d\n", b);
1414
c++;
1515
}
1616

1717
b = logical_not(false);
1818

1919
if (!b) {
20-
fprintf(stderr, "logical_not(false) should be true\n");
20+
fprintf(stderr, "logical_not(false) should be true: %d\n", b);
2121
c++;
2222
}
2323

0 commit comments

Comments
 (0)