* Add copyright and license to all librz/include/*.h files in dep5
* SPDX headers for most include files except bin/arch/debug
* Add SPDX headers in asm/arch/{8051,arm}
* Add SPDX header for shlr/gdb include files
* Add SPDX header for shlr/bochs include files
* Add SPDX header for librz/reg
* Add SPDX header for librz/debug/p/native/xnu
* Add SPDX header for librz/debug/p/native/windows
* Add SPDX header for librz/debug/p/native/reg include files
* Add SPDX header for librz/debug/p/native/maps include files
* Add SPDX header for librz/debug/p/native/linux include files
34 lines
848 B
C
34 lines
848 B
C
// SPDX-FileCopyrightText: 2020 Florian Märkl <info@florianmaerkl.de>
|
|
// SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
#ifndef TEST_SDB_H
|
|
#define TEST_SDB_H
|
|
|
|
#define PERTURBATOR "\\,\";] [}{'"
|
|
#define PERTURBATOR_JSON "\\\\,\\\";] [}{'"
|
|
|
|
static void diff_cb(const SdbDiff *diff, void *user) {
|
|
char buf[2048];
|
|
if (sdb_diff_format(buf, sizeof(buf), diff) < 0) {
|
|
return;
|
|
}
|
|
printf("%s\n", buf);
|
|
}
|
|
|
|
static inline void print_sdb(Sdb *sdb) {
|
|
Sdb *e = sdb_new0();
|
|
sdb_diff(e, sdb, diff_cb, NULL);
|
|
sdb_free(e);
|
|
}
|
|
|
|
#define assert_sdb_eq(actual, expected, msg) mu_assert((msg), sdb_diff(expected, actual, diff_cb, NULL));
|
|
|
|
#define assert_streq_null(actual, expected, message) \
|
|
do { \
|
|
mu_assert(message, (!(actual)) == (!(expected))); \
|
|
if (expected) { \
|
|
mu_assert_streq(actual, expected, message); \
|
|
} \
|
|
} while (0)
|
|
|
|
#endif // TEST_SDB_H
|