RB unit tests: don't test reentrantly.

The RB code doesn't do any allocation, and takes a little bit of time to run.
There's no sense in doing everything three times.
This commit is contained in:
David Goldblatt 2021-03-04 15:08:41 -08:00 committed by David Goldblatt
parent aea91b8c33
commit b2c08ef2e6

View File

@ -349,7 +349,7 @@ TEST_END
int
main(void) {
return test(
return test_no_reentrancy(
test_rb_empty,
test_rb_random);
}