mirror of
https://github.com/git/git.git
synced 2024-11-15 14:14:08 +01:00
e32b8ece64
The `EXPECT` macros used by the reftable test framework are all using a single `if` statement with the actual condition. This results in weird syntax when using them in if/else statements like the following: ``` if (foo) EXPECT(foo == 2) else EXPECT(bar == 2) ``` Note that there need not be a trailing semicolon. Furthermore, it is not immediately obvious whether the else now belongs to the `if (foo)` or whether it belongs to the expanded `if (foo == 2)` from the macro. Fix this by wrapping the macros in a do/while loop. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
60 lines
2.4 KiB
C
60 lines
2.4 KiB
C
/*
|
|
Copyright 2020 Google LLC
|
|
|
|
Use of this source code is governed by a BSD-style
|
|
license that can be found in the LICENSE file or at
|
|
https://developers.google.com/open-source/licenses/bsd
|
|
*/
|
|
|
|
#ifndef TEST_FRAMEWORK_H
|
|
#define TEST_FRAMEWORK_H
|
|
|
|
#include "system.h"
|
|
#include "reftable-error.h"
|
|
|
|
#define EXPECT_ERR(c) \
|
|
do { \
|
|
if (c != 0) { \
|
|
fflush(stderr); \
|
|
fflush(stdout); \
|
|
fprintf(stderr, "%s: %d: error == %d (%s), want 0\n", \
|
|
__FILE__, __LINE__, c, reftable_error_str(c)); \
|
|
abort(); \
|
|
} \
|
|
} while (0)
|
|
|
|
#define EXPECT_STREQ(a, b) \
|
|
do { \
|
|
if (strcmp(a, b)) { \
|
|
fflush(stderr); \
|
|
fflush(stdout); \
|
|
fprintf(stderr, "%s:%d: %s (%s) != %s (%s)\n", __FILE__, \
|
|
__LINE__, #a, a, #b, b); \
|
|
abort(); \
|
|
} \
|
|
} while (0)
|
|
|
|
#define EXPECT(c) \
|
|
do { \
|
|
if (!(c)) { \
|
|
fflush(stderr); \
|
|
fflush(stdout); \
|
|
fprintf(stderr, "%s: %d: failed assertion %s\n", __FILE__, \
|
|
__LINE__, #c); \
|
|
abort(); \
|
|
} \
|
|
} while (0)
|
|
|
|
#define RUN_TEST(f) \
|
|
fprintf(stderr, "running %s\n", #f); \
|
|
fflush(stderr); \
|
|
f();
|
|
|
|
void set_test_hash(uint8_t *p, int i);
|
|
|
|
/* Like strbuf_add, but suitable for passing to reftable_new_writer
|
|
*/
|
|
ssize_t strbuf_add_void(void *b, const void *data, size_t sz);
|
|
|
|
#endif
|