Merge bitcoin-core/secp256k1#1286: tests: remove extra semicolon in macro
c4062d6b5d83572c1932f32003a7c0e901fffc23 debug: move helper for printing buffers into util.h (Jonas Nick) 3858bad2c6493aa66cbfa62540d89da9c5a16040 tests: remove extra semicolon in macro (Jonas Nick) Pull request description: ACKs for top commit: real-or-random: utACK c4062d6b5d83572c1932f32003a7c0e901fffc23 hebasto: ACK c4062d6b5d83572c1932f32003a7c0e901fffc23, I have reviewed the code and it looks OK. Tree-SHA512: a2c97433d82c1ab2ba976c4fd8aaf337de5f225abcd459e84dcdab689e77e43d4ed654c971ab7f11f27af12e7a744122a0fdd9ece8e635d7a7041c45e9484de8
This commit is contained in:
commit
1c89536718
19
src/tests.c
19
src/tests.c
@ -44,25 +44,6 @@ static int all_bytes_equal(const void* s, unsigned char value, size_t n) {
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Debug helper for printing arrays of unsigned char. */
|
|
||||||
#define PRINT_BUF(buf, len) do { \
|
|
||||||
printf("%s[%lu] = ", #buf, (unsigned long)len); \
|
|
||||||
print_buf_plain(buf, len); \
|
|
||||||
} while(0);
|
|
||||||
static void print_buf_plain(const unsigned char *buf, size_t len) {
|
|
||||||
size_t i;
|
|
||||||
printf("{");
|
|
||||||
for (i = 0; i < len; i++) {
|
|
||||||
if (i % 8 == 0) {
|
|
||||||
printf("\n ");
|
|
||||||
} else {
|
|
||||||
printf(" ");
|
|
||||||
}
|
|
||||||
printf("0x%02X,", buf[i]);
|
|
||||||
}
|
|
||||||
printf("\n}\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
/* TODO Use CHECK_ILLEGAL(_VOID) everywhere and get rid of the uncounting callback */
|
/* TODO Use CHECK_ILLEGAL(_VOID) everywhere and get rid of the uncounting callback */
|
||||||
/* CHECK that expr_or_stmt calls the illegal callback of ctx exactly once
|
/* CHECK that expr_or_stmt calls the illegal callback of ctx exactly once
|
||||||
*
|
*
|
||||||
|
20
src/util.h
20
src/util.h
@ -19,6 +19,26 @@
|
|||||||
#define DEBUG_CONFIG_MSG(x) "DEBUG_CONFIG: " x
|
#define DEBUG_CONFIG_MSG(x) "DEBUG_CONFIG: " x
|
||||||
#define DEBUG_CONFIG_DEF(x) DEBUG_CONFIG_MSG(#x "=" STR(x))
|
#define DEBUG_CONFIG_DEF(x) DEBUG_CONFIG_MSG(#x "=" STR(x))
|
||||||
|
|
||||||
|
/* Debug helper for printing arrays of unsigned char. */
|
||||||
|
#define PRINT_BUF(buf, len) do { \
|
||||||
|
printf("%s[%lu] = ", #buf, (unsigned long)len); \
|
||||||
|
print_buf_plain(buf, len); \
|
||||||
|
} while(0)
|
||||||
|
|
||||||
|
static void print_buf_plain(const unsigned char *buf, size_t len) {
|
||||||
|
size_t i;
|
||||||
|
printf("{");
|
||||||
|
for (i = 0; i < len; i++) {
|
||||||
|
if (i % 8 == 0) {
|
||||||
|
printf("\n ");
|
||||||
|
} else {
|
||||||
|
printf(" ");
|
||||||
|
}
|
||||||
|
printf("0x%02X,", buf[i]);
|
||||||
|
}
|
||||||
|
printf("\n}\n");
|
||||||
|
}
|
||||||
|
|
||||||
# if (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L) )
|
# if (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L) )
|
||||||
# if SECP256K1_GNUC_PREREQ(2,7)
|
# if SECP256K1_GNUC_PREREQ(2,7)
|
||||||
# define SECP256K1_INLINE __inline__
|
# define SECP256K1_INLINE __inline__
|
||||||
|
Loading…
x
Reference in New Issue
Block a user