Skip to content

Commit e83801f

Browse files
committed
test: Warn if both VERIFY and COVERAGE are defined
1 parent 908e02d commit e83801f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/tests.c

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
#pragma message("Ignoring USE_EXTERNAL_CALLBACKS in tests.")
1515
#undef USE_EXTERNAL_DEFAULT_CALLBACKS
1616
#endif
17+
#if defined(VERIFY) && defined(COVERAGE)
18+
#pragma message("Defining VERIFY for tests being built for coverage analysis support is meaningless.")
19+
#endif
1720
#include "secp256k1.c"
1821

1922
#include "../include/secp256k1.h"

0 commit comments

Comments
 (0)