Skip to content

Commit

Permalink
asan gc-test: make all tests pass with address-sanitizer
Browse files Browse the repository at this point in the history
skip gc tests, asan needs to much memory
  • Loading branch information
Reini Urban committed May 10, 2013
1 parent 1ae685a commit a57ca51
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/api/gc-test.c
Expand Up @@ -61,9 +61,11 @@ void gc_test_forward(CuTest *T) {
CuSuite *gc_suite() {
CuSuite *S = CuSuiteNew();
SUITE_ADD_TEST(S, gc_test_start);
#ifndef __SANITIZE_ADDRESS__
SUITE_ADD_TEST(S, gc_test_alloc1);
SUITE_ADD_TEST(S, gc_test_alloc4);
SUITE_ADD_TEST(S, gc_test_forward);
#endif
return S;
}

Expand Down

0 comments on commit a57ca51

Please sign in to comment.