Generate configure for Jemalloc.

This commit is contained in:
antirez 2018-05-24 18:21:13 +02:00
parent 98d5d3f118
commit 4e729fcdaf
3 changed files with 13746 additions and 0 deletions

1
deps/jemalloc/VERSION vendored Normal file
View File

@ -0,0 +1 @@
5.1.0-0-g0

13720
deps/jemalloc/configure vendored Executable file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,25 @@
#include <memory>
#include "test/jemalloc_test.h"
TEST_BEGIN(test_basic) {
auto foo = new long(4);
assert_ptr_not_null(foo, "Unexpected new[] failure");
delete foo;
// Test nullptr handling.
foo = nullptr;
delete foo;
auto bar = new long;
assert_ptr_not_null(bar, "Unexpected new failure");
delete bar;
// Test nullptr handling.
bar = nullptr;
delete bar;
}
TEST_END
int
main() {
return test(
test_basic);
}