diff options
author | Fedor Indutny <fedor@indutny.com> | 2016-05-26 02:06:03 -0400 |
---|---|---|
committer | Fedor Indutny <fedor@indutny.com> | 2016-05-26 02:06:03 -0400 |
commit | 1e6358c6e292beafaa09cd4298552d73b5aaa3a0 (patch) | |
tree | 0bb5e40db07be1bdff2b1262c12733baf58dc7b5 /test/src/test-common.h | |
parent | a4e614177addfebb6f669e707dc5552c3d3ced1a (diff) | |
download | uv_link_t-1e6358c6e292beafaa09cd4298552d73b5aaa3a0.tar.gz |
test: kind of run all
Diffstat (limited to 'test/src/test-common.h')
-rw-r--r-- | test/src/test-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/test-common.h b/test/src/test-common.h index a78bf9d..925a63d 100644 --- a/test/src/test-common.h +++ b/test/src/test-common.h @@ -15,7 +15,7 @@ if ((VALUE)) break; \ fprintf(stderr, "Assertion failure: " #MESSAGE "\n"); \ abort(); \ - } while (0); + } while (0) #define CHECK_EQ(A, B, MESSAGE) CHECK((A) == (B), MESSAGE) #define CHECK_NE(A, B, MESSAGE) CHECK((A) != (B), MESSAGE) |