diff options
author | David Goldblatt <davidgoldblatt@fb.com> | 2017-07-24 19:56:02 (GMT) |
---|---|---|
committer | David Goldblatt <davidtgoldblatt@gmail.com> | 2017-07-24 23:21:24 (GMT) |
commit | 7c22ea7a93f16c90f49de8ee226e3bcd1521c93e (patch) | |
tree | 4de4796f07b7b86a3dead7f4aaf635c2aafeb7bb /test | |
parent | e6aeceb6068ace14ca530506fdfeb5f1cadd9a19 (diff) | |
download | jemalloc-7c22ea7a93f16c90f49de8ee226e3bcd1521c93e.zip jemalloc-7c22ea7a93f16c90f49de8ee226e3bcd1521c93e.tar.gz jemalloc-7c22ea7a93f16c90f49de8ee226e3bcd1521c93e.tar.bz2 |
Only run test/integration/sdallocx non-reentrantly.
This is a temporary workaround until we add some beefier CI machines. Right
now, we're seeing too many OOMs for this to be useful.
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/sdallocx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/sdallocx.c b/test/integration/sdallocx.c index e7ea1d8..ca01448 100644 --- a/test/integration/sdallocx.c +++ b/test/integration/sdallocx.c @@ -49,7 +49,7 @@ TEST_END int main(void) { - return test( + return test_no_reentrancy( test_basic, test_alignment_and_size); } |