Error checking for valgrind is redundant since overlapping with other tests

This commit is contained in:
Pithikos 2015-12-12 11:11:32 +00:00
commit 594f1eee02
2 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,6 @@
# ---------------------------- Tests -----------------------------------
function test_thread_free { #threads
echo "Testing creation and destruction of threads(=$1)"
compile src/no_work.c

View File

@ -308,6 +308,8 @@ static void* thread_do(struct thread* thread_p){
/* Register signal handler */
struct sigaction act;
sigemptyset(&act.sa_mask);
act.sa_flags = 0;
act.sa_handler = thread_hold;
if (sigaction(SIGUSR1, &act, NULL) == -1) {
fprintf(stderr, "thread_do(): cannot handle SIGUSR1");