Skip to content
Snippets Groups Projects
Commit 7bab0339 authored by Alexandre Abadie's avatar Alexandre Abadie
Browse files

tests/pthread_cleanup: small improvements

parent 1e8104f2
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ static void *run(void *unused) {
}
int main(void) {
puts("Start.");
puts("START");
pthread_t th_id;
pthread_create(&th_id, NULL, run, NULL);
......@@ -69,6 +69,12 @@ int main(void) {
pthread_join(th_id, (void **) &res);
printf("Result: %i\n", (int) (intptr_t) res);
puts("Done.");
if (res == RET_EXIT) {
puts("SUCCESS");
}
else {
puts("FAILURE");
}
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment