Refactor to support more varied testing.
Refactor the test harness to support three types of tests:
- unit: White box unit tests. These tests have full access to all
internal jemalloc library symbols. Though in actuality all symbols
are prefixed by jet_, macro-based name mangling abstracts this away
from test code.
- integration: Black box integration tests. These tests link with
the installable shared jemalloc library, and with the exception of
some utility code and configure-generated macro definitions, they have
no access to jemalloc internals.
- stress: Black box stress tests. These tests link with the installable
shared jemalloc library, as well as with an internal allocator with
symbols prefixed by jet_ (same as for unit tests) that can be used to
allocate data structures that are internal to the test code.
Move existing tests into test/{unit,integration}/ as appropriate.
Split out internal parts of jemalloc_defs.h.in and put them in
jemalloc_internal_defs.h.in. This reduces internals exposure to
applications that #include <jemalloc/jemalloc.h>.
Refactor jemalloc.h header generation so that a single header file
results, and the prototypes can be used to generate jet_ prototypes for
tests. Split jemalloc.h.in into multiple parts (jemalloc_defs.h.in,
jemalloc_macros.h.in, jemalloc_protos.h.in, jemalloc_mangle.h.in) and
use a shell script to generate a unified jemalloc.h at configure time.
Change the default private namespace prefix from "" to "je_".
Add missing private namespace mangling.
Remove hard-coded private_namespace.h. Instead generate it and
private_unnamespace.h from private_symbols.txt. Use similar logic for
public symbols, which aids in name mangling for jet_ symbols.
Add test_warn() and test_fail(). Replace existing exit(1) calls with
test_fail() calls.
2013-12-01 07:25:42 +08:00
|
|
|
#include "test/jemalloc_test.h"
|
|
|
|
|
2017-03-29 08:30:54 +08:00
|
|
|
/* Test status state. */
|
|
|
|
|
2013-12-09 12:52:21 +08:00
|
|
|
static unsigned test_count = 0;
|
|
|
|
static test_status_t test_counts[test_status_count] = {0, 0, 0};
|
|
|
|
static test_status_t test_status = test_status_pass;
|
|
|
|
static const char * test_name = "";
|
Refactor to support more varied testing.
Refactor the test harness to support three types of tests:
- unit: White box unit tests. These tests have full access to all
internal jemalloc library symbols. Though in actuality all symbols
are prefixed by jet_, macro-based name mangling abstracts this away
from test code.
- integration: Black box integration tests. These tests link with
the installable shared jemalloc library, and with the exception of
some utility code and configure-generated macro definitions, they have
no access to jemalloc internals.
- stress: Black box stress tests. These tests link with the installable
shared jemalloc library, as well as with an internal allocator with
symbols prefixed by jet_ (same as for unit tests) that can be used to
allocate data structures that are internal to the test code.
Move existing tests into test/{unit,integration}/ as appropriate.
Split out internal parts of jemalloc_defs.h.in and put them in
jemalloc_internal_defs.h.in. This reduces internals exposure to
applications that #include <jemalloc/jemalloc.h>.
Refactor jemalloc.h header generation so that a single header file
results, and the prototypes can be used to generate jet_ prototypes for
tests. Split jemalloc.h.in into multiple parts (jemalloc_defs.h.in,
jemalloc_macros.h.in, jemalloc_protos.h.in, jemalloc_mangle.h.in) and
use a shell script to generate a unified jemalloc.h at configure time.
Change the default private namespace prefix from "" to "je_".
Add missing private namespace mangling.
Remove hard-coded private_namespace.h. Instead generate it and
private_unnamespace.h from private_symbols.txt. Use similar logic for
public symbols, which aids in name mangling for jet_ symbols.
Add test_warn() and test_fail(). Replace existing exit(1) calls with
test_fail() calls.
2013-12-01 07:25:42 +08:00
|
|
|
|
2017-03-29 08:30:54 +08:00
|
|
|
/* Reentrancy testing helpers. */
|
|
|
|
|
|
|
|
#define NUM_REENTRANT_ALLOCS 20
|
|
|
|
static bool reentrant = false;
|
|
|
|
static bool hook_ran = false;
|
|
|
|
static void *to_free[NUM_REENTRANT_ALLOCS];
|
|
|
|
|
|
|
|
static void
|
|
|
|
reentrancy_hook() {
|
|
|
|
hook_ran = true;
|
|
|
|
hooks_libc_hook = NULL;
|
|
|
|
|
|
|
|
void *to_free_local[NUM_REENTRANT_ALLOCS];
|
|
|
|
size_t alloc_size = 1;
|
|
|
|
for (int i = 0; i < NUM_REENTRANT_ALLOCS; i++) {
|
|
|
|
to_free[i] = malloc(alloc_size);
|
|
|
|
to_free_local[i] = malloc(alloc_size);
|
|
|
|
alloc_size *= 2;
|
|
|
|
}
|
|
|
|
for (int i = 0; i < NUM_REENTRANT_ALLOCS; i++) {
|
|
|
|
free(to_free_local[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Actual test infrastructure. */
|
|
|
|
bool
|
|
|
|
test_is_reentrant() {
|
|
|
|
return reentrant;
|
|
|
|
}
|
|
|
|
|
2015-07-23 06:44:47 +08:00
|
|
|
JEMALLOC_FORMAT_PRINTF(1, 2)
|
Refactor to support more varied testing.
Refactor the test harness to support three types of tests:
- unit: White box unit tests. These tests have full access to all
internal jemalloc library symbols. Though in actuality all symbols
are prefixed by jet_, macro-based name mangling abstracts this away
from test code.
- integration: Black box integration tests. These tests link with
the installable shared jemalloc library, and with the exception of
some utility code and configure-generated macro definitions, they have
no access to jemalloc internals.
- stress: Black box stress tests. These tests link with the installable
shared jemalloc library, as well as with an internal allocator with
symbols prefixed by jet_ (same as for unit tests) that can be used to
allocate data structures that are internal to the test code.
Move existing tests into test/{unit,integration}/ as appropriate.
Split out internal parts of jemalloc_defs.h.in and put them in
jemalloc_internal_defs.h.in. This reduces internals exposure to
applications that #include <jemalloc/jemalloc.h>.
Refactor jemalloc.h header generation so that a single header file
results, and the prototypes can be used to generate jet_ prototypes for
tests. Split jemalloc.h.in into multiple parts (jemalloc_defs.h.in,
jemalloc_macros.h.in, jemalloc_protos.h.in, jemalloc_mangle.h.in) and
use a shell script to generate a unified jemalloc.h at configure time.
Change the default private namespace prefix from "" to "je_".
Add missing private namespace mangling.
Remove hard-coded private_namespace.h. Instead generate it and
private_unnamespace.h from private_symbols.txt. Use similar logic for
public symbols, which aids in name mangling for jet_ symbols.
Add test_warn() and test_fail(). Replace existing exit(1) calls with
test_fail() calls.
2013-12-01 07:25:42 +08:00
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
test_skip(const char *format, ...) {
|
Refactor to support more varied testing.
Refactor the test harness to support three types of tests:
- unit: White box unit tests. These tests have full access to all
internal jemalloc library symbols. Though in actuality all symbols
are prefixed by jet_, macro-based name mangling abstracts this away
from test code.
- integration: Black box integration tests. These tests link with
the installable shared jemalloc library, and with the exception of
some utility code and configure-generated macro definitions, they have
no access to jemalloc internals.
- stress: Black box stress tests. These tests link with the installable
shared jemalloc library, as well as with an internal allocator with
symbols prefixed by jet_ (same as for unit tests) that can be used to
allocate data structures that are internal to the test code.
Move existing tests into test/{unit,integration}/ as appropriate.
Split out internal parts of jemalloc_defs.h.in and put them in
jemalloc_internal_defs.h.in. This reduces internals exposure to
applications that #include <jemalloc/jemalloc.h>.
Refactor jemalloc.h header generation so that a single header file
results, and the prototypes can be used to generate jet_ prototypes for
tests. Split jemalloc.h.in into multiple parts (jemalloc_defs.h.in,
jemalloc_macros.h.in, jemalloc_protos.h.in, jemalloc_mangle.h.in) and
use a shell script to generate a unified jemalloc.h at configure time.
Change the default private namespace prefix from "" to "je_".
Add missing private namespace mangling.
Remove hard-coded private_namespace.h. Instead generate it and
private_unnamespace.h from private_symbols.txt. Use similar logic for
public symbols, which aids in name mangling for jet_ symbols.
Add test_warn() and test_fail(). Replace existing exit(1) calls with
test_fail() calls.
2013-12-01 07:25:42 +08:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, format);
|
|
|
|
malloc_vcprintf(NULL, NULL, format, ap);
|
|
|
|
va_end(ap);
|
2013-12-16 07:54:18 +08:00
|
|
|
malloc_printf("\n");
|
2013-12-09 12:52:21 +08:00
|
|
|
test_status = test_status_skip;
|
Refactor to support more varied testing.
Refactor the test harness to support three types of tests:
- unit: White box unit tests. These tests have full access to all
internal jemalloc library symbols. Though in actuality all symbols
are prefixed by jet_, macro-based name mangling abstracts this away
from test code.
- integration: Black box integration tests. These tests link with
the installable shared jemalloc library, and with the exception of
some utility code and configure-generated macro definitions, they have
no access to jemalloc internals.
- stress: Black box stress tests. These tests link with the installable
shared jemalloc library, as well as with an internal allocator with
symbols prefixed by jet_ (same as for unit tests) that can be used to
allocate data structures that are internal to the test code.
Move existing tests into test/{unit,integration}/ as appropriate.
Split out internal parts of jemalloc_defs.h.in and put them in
jemalloc_internal_defs.h.in. This reduces internals exposure to
applications that #include <jemalloc/jemalloc.h>.
Refactor jemalloc.h header generation so that a single header file
results, and the prototypes can be used to generate jet_ prototypes for
tests. Split jemalloc.h.in into multiple parts (jemalloc_defs.h.in,
jemalloc_macros.h.in, jemalloc_protos.h.in, jemalloc_mangle.h.in) and
use a shell script to generate a unified jemalloc.h at configure time.
Change the default private namespace prefix from "" to "je_".
Add missing private namespace mangling.
Remove hard-coded private_namespace.h. Instead generate it and
private_unnamespace.h from private_symbols.txt. Use similar logic for
public symbols, which aids in name mangling for jet_ symbols.
Add test_warn() and test_fail(). Replace existing exit(1) calls with
test_fail() calls.
2013-12-01 07:25:42 +08:00
|
|
|
}
|
|
|
|
|
2015-07-23 06:44:47 +08:00
|
|
|
JEMALLOC_FORMAT_PRINTF(1, 2)
|
Refactor to support more varied testing.
Refactor the test harness to support three types of tests:
- unit: White box unit tests. These tests have full access to all
internal jemalloc library symbols. Though in actuality all symbols
are prefixed by jet_, macro-based name mangling abstracts this away
from test code.
- integration: Black box integration tests. These tests link with
the installable shared jemalloc library, and with the exception of
some utility code and configure-generated macro definitions, they have
no access to jemalloc internals.
- stress: Black box stress tests. These tests link with the installable
shared jemalloc library, as well as with an internal allocator with
symbols prefixed by jet_ (same as for unit tests) that can be used to
allocate data structures that are internal to the test code.
Move existing tests into test/{unit,integration}/ as appropriate.
Split out internal parts of jemalloc_defs.h.in and put them in
jemalloc_internal_defs.h.in. This reduces internals exposure to
applications that #include <jemalloc/jemalloc.h>.
Refactor jemalloc.h header generation so that a single header file
results, and the prototypes can be used to generate jet_ prototypes for
tests. Split jemalloc.h.in into multiple parts (jemalloc_defs.h.in,
jemalloc_macros.h.in, jemalloc_protos.h.in, jemalloc_mangle.h.in) and
use a shell script to generate a unified jemalloc.h at configure time.
Change the default private namespace prefix from "" to "je_".
Add missing private namespace mangling.
Remove hard-coded private_namespace.h. Instead generate it and
private_unnamespace.h from private_symbols.txt. Use similar logic for
public symbols, which aids in name mangling for jet_ symbols.
Add test_warn() and test_fail(). Replace existing exit(1) calls with
test_fail() calls.
2013-12-01 07:25:42 +08:00
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
test_fail(const char *format, ...) {
|
2013-12-09 12:52:21 +08:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, format);
|
|
|
|
malloc_vcprintf(NULL, NULL, format, ap);
|
|
|
|
va_end(ap);
|
2013-12-16 07:54:18 +08:00
|
|
|
malloc_printf("\n");
|
2013-12-09 12:52:21 +08:00
|
|
|
test_status = test_status_fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
2017-01-16 08:56:30 +08:00
|
|
|
test_status_string(test_status_t test_status) {
|
2013-12-09 12:52:21 +08:00
|
|
|
switch (test_status) {
|
|
|
|
case test_status_pass: return "pass";
|
|
|
|
case test_status_skip: return "skip";
|
|
|
|
case test_status_fail: return "fail";
|
|
|
|
default: not_reached();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
p_test_init(const char *name) {
|
2013-12-09 12:52:21 +08:00
|
|
|
test_count++;
|
|
|
|
test_status = test_status_pass;
|
|
|
|
test_name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
p_test_fini(void) {
|
2013-12-09 12:52:21 +08:00
|
|
|
test_counts[test_status]++;
|
2017-03-29 08:30:54 +08:00
|
|
|
malloc_printf("%s: %s (%s)\n", test_name,
|
|
|
|
test_status_string(test_status),
|
|
|
|
reentrant ? "reentrant" : "non-reentrant");
|
2013-12-09 12:52:21 +08:00
|
|
|
}
|
|
|
|
|
2016-05-08 03:42:31 +08:00
|
|
|
static test_status_t
|
2017-03-29 08:30:54 +08:00
|
|
|
p_test_impl(bool do_malloc_init, bool do_reentrant, test_t *t, va_list ap) {
|
2014-05-29 02:08:17 +08:00
|
|
|
test_status_t ret;
|
2013-12-09 12:52:21 +08:00
|
|
|
|
2016-05-08 03:42:31 +08:00
|
|
|
if (do_malloc_init) {
|
|
|
|
/*
|
|
|
|
* Make sure initialization occurs prior to running tests.
|
|
|
|
* Tests are special because they may use internal facilities
|
|
|
|
* prior to triggering initialization as a side effect of
|
|
|
|
* calling into the public API.
|
|
|
|
*/
|
|
|
|
if (nallocx(1, 0) == 0) {
|
|
|
|
malloc_printf("Initialization error");
|
2017-01-20 10:15:45 +08:00
|
|
|
return test_status_fail;
|
2016-05-08 03:42:31 +08:00
|
|
|
}
|
2014-05-29 02:08:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = test_status_pass;
|
2014-05-02 06:51:30 +08:00
|
|
|
for (; t != NULL; t = va_arg(ap, test_t *)) {
|
2017-03-29 08:30:54 +08:00
|
|
|
/* Non-reentrant run. */
|
|
|
|
reentrant = false;
|
2013-12-09 12:52:21 +08:00
|
|
|
t();
|
2017-01-16 08:56:30 +08:00
|
|
|
if (test_status > ret) {
|
2013-12-09 12:52:21 +08:00
|
|
|
ret = test_status;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-03-29 08:30:54 +08:00
|
|
|
/* Reentrant run. */
|
|
|
|
if (do_reentrant) {
|
|
|
|
reentrant = true;
|
|
|
|
hooks_libc_hook = &reentrancy_hook;
|
|
|
|
t();
|
|
|
|
if (test_status > ret) {
|
|
|
|
ret = test_status;
|
|
|
|
}
|
|
|
|
if (hook_ran) {
|
|
|
|
hook_ran = false;
|
|
|
|
for (int i = 0; i < NUM_REENTRANT_ALLOCS; i++) {
|
|
|
|
free(to_free[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-09 12:52:21 +08:00
|
|
|
}
|
|
|
|
|
2013-12-13 06:58:26 +08:00
|
|
|
malloc_printf("--- %s: %u/%u, %s: %u/%u, %s: %u/%u ---\n",
|
|
|
|
test_status_string(test_status_pass),
|
|
|
|
test_counts[test_status_pass], test_count,
|
|
|
|
test_status_string(test_status_skip),
|
|
|
|
test_counts[test_status_skip], test_count,
|
|
|
|
test_status_string(test_status_fail),
|
|
|
|
test_counts[test_status_fail], test_count);
|
2013-12-09 12:52:21 +08:00
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return ret;
|
2013-12-09 12:52:21 +08:00
|
|
|
}
|
|
|
|
|
2016-05-08 03:42:31 +08:00
|
|
|
test_status_t
|
2017-01-16 08:56:30 +08:00
|
|
|
p_test(test_t *t, ...) {
|
2016-05-08 03:42:31 +08:00
|
|
|
test_status_t ret;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
ret = test_status_pass;
|
|
|
|
va_start(ap, t);
|
2017-03-29 08:30:54 +08:00
|
|
|
ret = p_test_impl(true, true, t, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
test_status_t
|
|
|
|
p_test_no_reentrancy(test_t *t, ...) {
|
|
|
|
test_status_t ret;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
ret = test_status_pass;
|
|
|
|
va_start(ap, t);
|
|
|
|
ret = p_test_impl(true, false, t, ap);
|
2016-05-08 03:42:31 +08:00
|
|
|
va_end(ap);
|
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return ret;
|
2016-05-08 03:42:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
test_status_t
|
2017-01-16 08:56:30 +08:00
|
|
|
p_test_no_malloc_init(test_t *t, ...) {
|
2016-05-08 03:42:31 +08:00
|
|
|
test_status_t ret;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
ret = test_status_pass;
|
|
|
|
va_start(ap, t);
|
2017-03-29 08:30:54 +08:00
|
|
|
/*
|
|
|
|
* We also omit reentrancy from bootstrapping tests, since we don't
|
|
|
|
* (yet) care about general reentrancy during bootstrapping.
|
|
|
|
*/
|
|
|
|
ret = p_test_impl(false, false, t, ap);
|
2016-05-08 03:42:31 +08:00
|
|
|
va_end(ap);
|
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return ret;
|
2016-05-08 03:42:31 +08:00
|
|
|
}
|
|
|
|
|
2013-12-09 12:52:21 +08:00
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
p_test_fail(const char *prefix, const char *message) {
|
2014-03-30 14:14:32 +08:00
|
|
|
malloc_cprintf(NULL, NULL, "%s%s\n", prefix, message);
|
2013-12-09 12:52:21 +08:00
|
|
|
test_status = test_status_fail;
|
Refactor to support more varied testing.
Refactor the test harness to support three types of tests:
- unit: White box unit tests. These tests have full access to all
internal jemalloc library symbols. Though in actuality all symbols
are prefixed by jet_, macro-based name mangling abstracts this away
from test code.
- integration: Black box integration tests. These tests link with
the installable shared jemalloc library, and with the exception of
some utility code and configure-generated macro definitions, they have
no access to jemalloc internals.
- stress: Black box stress tests. These tests link with the installable
shared jemalloc library, as well as with an internal allocator with
symbols prefixed by jet_ (same as for unit tests) that can be used to
allocate data structures that are internal to the test code.
Move existing tests into test/{unit,integration}/ as appropriate.
Split out internal parts of jemalloc_defs.h.in and put them in
jemalloc_internal_defs.h.in. This reduces internals exposure to
applications that #include <jemalloc/jemalloc.h>.
Refactor jemalloc.h header generation so that a single header file
results, and the prototypes can be used to generate jet_ prototypes for
tests. Split jemalloc.h.in into multiple parts (jemalloc_defs.h.in,
jemalloc_macros.h.in, jemalloc_protos.h.in, jemalloc_mangle.h.in) and
use a shell script to generate a unified jemalloc.h at configure time.
Change the default private namespace prefix from "" to "je_".
Add missing private namespace mangling.
Remove hard-coded private_namespace.h. Instead generate it and
private_unnamespace.h from private_symbols.txt. Use similar logic for
public symbols, which aids in name mangling for jet_ symbols.
Add test_warn() and test_fail(). Replace existing exit(1) calls with
test_fail() calls.
2013-12-01 07:25:42 +08:00
|
|
|
}
|