summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2012-11-12 20:54:09 +0100
committerTorbjorn Granlund <tege@gmplib.org>2012-11-12 20:54:09 +0100
commit277795b88c143c4658fdf1149b7decbf2de250a3 (patch)
tree0286aa002293c712ac21e5cb571d10ccc0c8d2c8 /tests
parentaf9612e071b9bc036182e4b67ac4d54c5ab5a9a1 (diff)
downloadgmp-277795b88c143c4658fdf1149b7decbf2de250a3.tar.gz
Remove a redundant abort().
Diffstat (limited to 'tests')
-rw-r--r--tests/mpz/t-popcount.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/mpz/t-popcount.c b/tests/mpz/t-popcount.c
index 313bc076b..83d6c5632 100644
--- a/tests/mpz/t-popcount.c
+++ b/tests/mpz/t-popcount.c
@@ -84,7 +84,7 @@ check_data (void)
printf (" 0x"); mpz_out_str (stdout, 16, n); printf ("\n");
printf (" got %lu\n", got);
printf (" want %lu\n", data[i].want);
- abort();
+ abort ();
}
}
mpz_clear (n);
@@ -147,7 +147,6 @@ check_random (void)
printf (" 0x"); mpz_out_str (stdout, 16, arg); printf ("\n");
printf (" got %lu\n", got);
printf (" want %lu\n", ref);
- abort();
abort ();
}
}