summaryrefslogtreecommitdiff
path: root/deps/jemalloc/test/unit/spin.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/jemalloc/test/unit/spin.c')
-rw-r--r--deps/jemalloc/test/unit/spin.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/deps/jemalloc/test/unit/spin.c b/deps/jemalloc/test/unit/spin.c
deleted file mode 100644
index b965f7427..000000000
--- a/deps/jemalloc/test/unit/spin.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include "test/jemalloc_test.h"
-
-#include "jemalloc/internal/spin.h"
-
-TEST_BEGIN(test_spin) {
- spin_t spinner = SPIN_INITIALIZER;
-
- for (unsigned i = 0; i < 100; i++) {
- spin_adaptive(&spinner);
- }
-}
-TEST_END
-
-int
-main(void) {
- return test(
- test_spin);
-}