diff --git a/tests/regression/04-mutex/27-base_rc.c b/tests/regression/04-mutex/27-base_rc.c index 1bf243b5f8..68874fcc07 100644 --- a/tests/regression/04-mutex/27-base_rc.c +++ b/tests/regression/04-mutex/27-base_rc.c @@ -9,7 +9,7 @@ void bad() { } void good() { pthread_mutex_lock(&gm); - global++; // NORACE (MHP) + global++; // NORACE (same unique thread with bad, same lock with main) pthread_mutex_unlock(&gm); } diff --git a/tests/regression/04-mutex/35-trylock_rc.c b/tests/regression/04-mutex/35-trylock_rc.c index 5956a7345d..8eaf93685a 100644 --- a/tests/regression/04-mutex/35-trylock_rc.c +++ b/tests/regression/04-mutex/35-trylock_rc.c @@ -49,7 +49,7 @@ void *monitor_thread (void *arg) { if (status != EBUSY) { if (status != 0) err_abort (status, "Trylock mutex"); - printf ("Counter is %ld\n", counter/SPIN); // NORACE (MHP) + printf ("Counter is %ld\n", counter/SPIN); // NORACE (same lock with counter_thread, same unique thread with monitor_thread) status = pthread_mutex_unlock (&mutex); if (status != 0) err_abort (status, "Unlock mutex"); diff --git a/tests/regression/10-synch/12-join_rc.c b/tests/regression/10-synch/12-join_rc.c index 3cfc07fc5d..238d49954a 100644 --- a/tests/regression/10-synch/12-join_rc.c +++ b/tests/regression/10-synch/12-join_rc.c @@ -18,7 +18,7 @@ int main(void) { for (i=0; i<10; i++) pthread_create(&id[i], NULL, t_fun, NULL); pthread_mutex_lock(&mutex); - myglobal=myglobal+1; // NORACE (MHP) + myglobal=myglobal+1; // NORACE (same lock with t_fun, same unique thread with main) pthread_mutex_unlock(&mutex); for (i=0; i<9; i++) pthread_join(id[i], NULL); diff --git a/tests/regression/53-races-mhp/03-not-created_rc.c b/tests/regression/53-races-mhp/03-not-created_rc.c index d746f14419..5dc75d162c 100644 --- a/tests/regression/53-races-mhp/03-not-created_rc.c +++ b/tests/regression/53-races-mhp/03-not-created_rc.c @@ -19,7 +19,7 @@ void *t_fun2(void *arg) { int main(void) { pthread_t id, id2; pthread_create(&id, NULL, t_fun, NULL); // enter multithreaded - myglobal = 5; // NORACE + myglobal = 5; // NORACE (MHP, t_fun2 not yet created, same unique thread with main) pthread_create(&id2, NULL, t_fun2, NULL); pthread_mutex_lock(&mutex2);