Skip to content

Commit

Permalink
ignore tests in /manual/
Browse files Browse the repository at this point in the history
  • Loading branch information
gfwilliams committed Apr 25, 2024
1 parent a8a7bcb commit c2312c3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions targets/linux/main.c
Expand Up @@ -259,10 +259,12 @@ bool run_test_list(struct filelist *fl) {
}

filelist_foreach(fl, fn) {
if (run_test(fn))
passed++;
else {
filelist_add(&fails, fn);
if (!strstr(fn, "/manual/")) { // ignore anything in the 'manual' subfolder
if (run_test(fn))
passed++;
else {
filelist_add(&fails, fn);
}
}
}

Expand Down

0 comments on commit c2312c3

Please sign in to comment.