Compare commits

...

2 Commits

Author SHA1 Message Date
Mark Andrews
b66d3f00ee set working directory 2020-08-20 14:58:08 +10:00
Mark Andrews
7043d890f4 look for more tsan.* files 2020-08-20 14:36:00 +10:00
4 changed files with 7 additions and 1 deletions

View File

@@ -327,10 +327,11 @@ stages:
allow_failure: true
after_script:
- *kyua_report_html
- find lib -name 'tsan.*' -exec python3 util/parse_tsan.py {} \;
- find . -name 'tsan.*' -exec python3 util/parse_tsan.py {} \;
artifacts:
expire_in: "1 day"
paths:
- tsan.*
- lib/*/tests/tsan.*
- tsan/
- kyua.log

View File

@@ -844,6 +844,8 @@ main(void) {
_setup, _teardown),
};
chdir(TESTS);
return (cmocka_run_group_tests(tests, NULL, NULL));
}

View File

@@ -1516,6 +1516,7 @@ main(int argc, char **argv) {
}
}
chdir(TESTS);
return (cmocka_run_group_tests(tests, NULL, NULL));
}

View File

@@ -595,6 +595,8 @@ main(int argc, char **argv) {
}
}
chdir(TESTS);
return (cmocka_run_group_tests(tests, NULL, NULL));
#else
UNUSED(argc);