summaryrefslogtreecommitdiffstats
path: root/test/unit/spin.c
blob: bd368b3db8f06c467d50c1f3e090d78425ad122c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "test/jemalloc_test.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);
}