From b2c08ef2e62a72951488c1603113b2d3881bd9d6 Mon Sep 17 00:00:00 2001 From: David Goldblatt Date: Thu, 4 Mar 2021 15:08:41 -0800 Subject: [PATCH] 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. --- test/unit/rb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/rb.c b/test/unit/rb.c index 2509a6dd..a594fb71 100644 --- a/test/unit/rb.c +++ b/test/unit/rb.c @@ -349,7 +349,7 @@ TEST_END int main(void) { - return test( + return test_no_reentrancy( test_rb_empty, test_rb_random); }