test: silence some Clang warnings

They only show up on OSX for some reason, though.

PR-URL: https://github.com/libuv/libuv/pull/67
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
Saúl Ibarra Corretgé 2014-12-13 18:15:10 +01:00
parent 86fcc20f96
commit 96f164e52b

View File

@ -39,6 +39,11 @@
# include <sys/resource.h> /* setrlimit() */
#endif
#ifdef __clang__
# pragma clang diagnostic ignored "-Wvariadic-macros"
# pragma clang diagnostic ignored "-Wc99-extensions"
#endif
#define TEST_PORT 9123
#define TEST_PORT_2 9124