Skip to content

Commit 1715ccf

Browse files
committed
Make pass/fail output more consistent
1 parent 6358c60 commit 1715ccf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/fileioc/resize/autotest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"description": "Pass",
2525
"start": "vram_start",
2626
"size": "vram_16_size",
27-
"expected_CRCs": [ "E8F8335D" ]
27+
"expected_CRCs": [ "38E2AD5A" ]
2828
},
2929
"2":
3030
{

test/fileioc/resize/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ int main(void)
7676

7777
if (!error)
7878
{
79-
os_PutStrFull("Pass");
79+
puts("All tests passed");
8080
}
8181
else
8282
{
83-
printf("Failed at test %d", test);
83+
printf("Test %d failed\n", test);
8484
}
8585

8686
while (!os_GetCSC());

0 commit comments

Comments
 (0)