server-skynet-source-3rd-je.../test/integration
Yinan Zhang 21dfa4300d Change assert_* to expect_* in tests
```
grep -Irl assert_ test/ | xargs sed -i \
    's/witness_assert/witness_do_not_replace/g';
grep -Irl assert_ test/ | xargs sed -i \
    's/malloc_mutex_assert_owner/malloc_mutex_do_not_replace_owner/g';

grep -Ir assert_ test/ | grep -o "[_a-zA-Z]*assert_[_a-zA-Z]*" | \
    grep -v "^assert_"; # confirm no output
grep -Irl assert_ test/ | xargs sed -i 's/assert_/expect_/g';

grep -Irl witness_do_not_replace test/ | xargs sed -i \
    's/witness_do_not_replace/witness_assert/g';
grep -Irl malloc_mutex_do_not_replace_owner test/ | xargs sed -i \
    's/malloc_mutex_do_not_replace_owner/malloc_mutex_assert_owner/g';
```
2020-02-19 16:03:16 -08:00
..
cpp Change assert_* to expect_* in tests 2020-02-19 16:03:16 -08:00
aligned_alloc.c Change assert_* to expect_* in tests 2020-02-19 16:03:16 -08:00
allocated.c Change assert_* to expect_* in tests 2020-02-19 16:03:16 -08:00
extent.c Change assert_* to expect_* in tests 2020-02-19 16:03:16 -08:00
extent.sh Use MALLOC_CONF rather than malloc_conf for tests. 2017-02-23 08:57:02 -08:00
malloc.c add test for zero-sized alloc and aligned alloc 2018-10-17 08:50:58 -07:00
MALLOCX_ARENA.c Change assert_* to expect_* in tests 2020-02-19 16:03:16 -08:00
mallocx.c Change assert_* to expect_* in tests 2020-02-19 16:03:16 -08:00
mallocx.sh Use MALLOC_CONF rather than malloc_conf for tests. 2017-02-23 08:57:02 -08:00
overflow.c Change assert_* to expect_* in tests 2020-02-19 16:03:16 -08:00
posix_memalign.c Change assert_* to expect_* in tests 2020-02-19 16:03:16 -08:00
rallocx.c Change assert_* to expect_* in tests 2020-02-19 16:03:16 -08:00
sdallocx.c Only run test/integration/sdallocx non-reentrantly. 2017-07-24 16:21:24 -07:00
slab_sizes.c Change assert_* to expect_* in tests 2020-02-19 16:03:16 -08:00
slab_sizes.sh Add MALLOC_CONF parsing for dynamic slab sizes. 2018-07-12 20:53:06 -07:00
smallocx.c Change assert_* to expect_* in tests 2020-02-19 16:03:16 -08:00
smallocx.sh Adapts mallocx integration tests for smallocx 2018-10-17 07:12:28 -07:00
thread_arena.c Change assert_* to expect_* in tests 2020-02-19 16:03:16 -08:00
thread_tcache_enabled.c Change assert_* to expect_* in tests 2020-02-19 16:03:16 -08:00
xallocx.c Change assert_* to expect_* in tests 2020-02-19 16:03:16 -08:00
xallocx.sh Use MALLOC_CONF rather than malloc_conf for tests. 2017-02-23 08:57:02 -08:00