aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.test.include
blob: 742022ca93e8c52ac77711f9dc04255d5b97df81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# Copyright (c) 2013-2016 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

if ENABLE_FUZZ_BINARY
noinst_PROGRAMS += test/fuzz/fuzz
endif

if ENABLE_TESTS
bin_PROGRAMS += test/test_bitcoin
endif

TEST_SRCDIR = test
TEST_BINARY=test/test_bitcoin$(EXEEXT)
FUZZ_BINARY=test/fuzz/fuzz$(EXEEXT)

JSON_TEST_FILES = \
  test/data/script_tests.json \
  test/data/bip341_wallet_vectors.json \
  test/data/base58_encode_decode.json \
  test/data/blockfilters.json \
  test/data/key_io_valid.json \
  test/data/key_io_invalid.json \
  test/data/script_tests.json \
  test/data/sighash.json \
  test/data/tx_invalid.json \
  test/data/tx_valid.json

RAW_TEST_FILES = \
  test/data/asmap.raw

GENERATED_TEST_FILES = $(JSON_TEST_FILES:.json=.json.h) $(RAW_TEST_FILES:.raw=.raw.h)

BITCOIN_TEST_SUITE = \
  test/main.cpp \
  $(TEST_UTIL_H)

FUZZ_SUITE_LD_COMMON = \
 $(LIBTEST_UTIL) \
 $(LIBTEST_FUZZ) \
 $(LIBBITCOIN_NODE) \
 $(LIBBITCOIN_WALLET) \
 $(LIBBITCOIN_COMMON) \
 $(LIBBITCOIN_UTIL) \
 $(LIBBITCOIN_CONSENSUS) \
 $(LIBBITCOIN_CRYPTO) \
 $(LIBBITCOIN_CLI) \
 $(LIBUNIVALUE) \
 $(LIBLEVELDB) \
 $(LIBMEMENV) \
 $(LIBSECP256K1) \
 $(MINISKETCH_LIBS) \
 $(EVENT_LIBS) \
 $(EVENT_PTHREADS_LIBS)

if USE_UPNP
FUZZ_SUITE_LD_COMMON += $(MINIUPNPC_LIBS)
endif

if USE_NATPMP
FUZZ_SUITE_LD_COMMON += $(NATPMP_LIBS)
endif

# test_bitcoin binary #
BITCOIN_TESTS =\
  test/addrman_tests.cpp \
  test/allocator_tests.cpp \
  test/amount_tests.cpp \
  test/argsman_tests.cpp \
  test/arith_uint256_tests.cpp \
  test/banman_tests.cpp \
  test/base32_tests.cpp \
  test/base58_tests.cpp \
  test/base64_tests.cpp \
  test/bech32_tests.cpp \
  test/bip32_tests.cpp \
  test/bip324_tests.cpp \
  test/blockchain_tests.cpp \
  test/blockencodings_tests.cpp \
  test/blockfilter_index_tests.cpp \
  test/blockfilter_tests.cpp \
  test/blockmanager_tests.cpp \
  test/bloom_tests.cpp \
  test/bswap_tests.cpp \
  test/checkqueue_tests.cpp \
  test/coins_tests.cpp \
  test/coinstatsindex_tests.cpp \
  test/common_url_tests.cpp \
  test/compilerbug_tests.cpp \
  test/compress_tests.cpp \
  test/crypto_tests.cpp \
  test/cuckoocache_tests.cpp \
  test/dbwrapper_tests.cpp \
  test/denialofservice_tests.cpp \
  test/descriptor_tests.cpp \
  test/disconnected_transactions.cpp \
  test/feefrac_tests.cpp \
  test/flatfile_tests.cpp \
  test/fs_tests.cpp \
  test/getarg_tests.cpp \
  test/hash_tests.cpp \
  test/headers_sync_chainwork_tests.cpp \
  test/httpserver_tests.cpp \
  test/i2p_tests.cpp \
  test/interfaces_tests.cpp \
  test/key_io_tests.cpp \
  test/key_tests.cpp \
  test/logging_tests.cpp \
  test/mempool_tests.cpp \
  test/merkle_tests.cpp \
  test/merkleblock_tests.cpp \
  test/miner_tests.cpp \
  test/miniminer_tests.cpp \
  test/miniscript_tests.cpp \
  test/minisketch_tests.cpp \
  test/multisig_tests.cpp \
  test/net_peer_connection_tests.cpp \
  test/net_peer_eviction_tests.cpp \
  test/net_tests.cpp \
  test/netbase_tests.cpp \
  test/orphanage_tests.cpp \
  test/peerman_tests.cpp \
  test/pmt_tests.cpp \
  test/policy_fee_tests.cpp \
  test/policyestimator_tests.cpp \
  test/pool_tests.cpp \
  test/pow_tests.cpp \
  test/prevector_tests.cpp \
  test/raii_event_tests.cpp \
  test/random_tests.cpp \
  test/rbf_tests.cpp \
  test/rest_tests.cpp \
  test/result_tests.cpp \
  test/reverselock_tests.cpp \
  test/rpc_tests.cpp \
  test/sanity_tests.cpp \
  test/scheduler_tests.cpp \
  test/script_p2sh_tests.cpp \
  test/script_parse_tests.cpp \
  test/script_segwit_tests.cpp \
  test/script_standard_tests.cpp \
  test/script_tests.cpp \
  test/scriptnum10.h \
  test/scriptnum_tests.cpp \
  test/serfloat_tests.cpp \
  test/serialize_tests.cpp \
  test/settings_tests.cpp \
  test/sighash_tests.cpp \
  test/sigopcount_tests.cpp \
  test/skiplist_tests.cpp \
  test/sock_tests.cpp \
  test/span_tests.cpp \
  test/streams_tests.cpp \
  test/sync_tests.cpp \
  test/system_tests.cpp \
  test/timeoffsets_tests.cpp \
  test/torcontrol_tests.cpp \
  test/transaction_tests.cpp \
  test/translation_tests.cpp \
  test/txindex_tests.cpp \
  test/txpackage_tests.cpp \
  test/txreconciliation_tests.cpp \
  test/txrequest_tests.cpp \
  test/txvalidation_tests.cpp \
  test/txvalidationcache_tests.cpp \
  test/uint256_tests.cpp \
  test/util_tests.cpp \
  test/util_threadnames_tests.cpp \
  test/validation_block_tests.cpp \
  test/validation_chainstate_tests.cpp \
  test/validation_chainstatemanager_tests.cpp \
  test/validation_flush_tests.cpp \
  test/validation_tests.cpp \
  test/validationinterface_tests.cpp \
  test/versionbits_tests.cpp \
  test/xoroshiro128plusplus_tests.cpp

if ENABLE_WALLET
BITCOIN_TESTS += \
  wallet/test/feebumper_tests.cpp \
  wallet/test/psbt_wallet_tests.cpp \
  wallet/test/spend_tests.cpp \
  wallet/test/wallet_tests.cpp \
  wallet/test/walletdb_tests.cpp \
  wallet/test/wallet_crypto_tests.cpp \
  wallet/test/wallet_transaction_tests.cpp \
  wallet/test/coinselector_tests.cpp \
  wallet/test/init_tests.cpp \
  wallet/test/ismine_tests.cpp \
  wallet/test/rpc_util_tests.cpp \
  wallet/test/scriptpubkeyman_tests.cpp \
  wallet/test/walletload_tests.cpp \
  wallet/test/group_outputs_tests.cpp

FUZZ_SUITE_LD_COMMON +=\
 $(SQLITE_LIBS) \
 $(BDB_LIBS)

if USE_BDB
BITCOIN_TESTS += wallet/test/db_tests.cpp
endif

FUZZ_WALLET_SRC = \
 wallet/test/fuzz/coincontrol.cpp \
 wallet/test/fuzz/coinselection.cpp \
 wallet/test/fuzz/crypter.cpp \
 wallet/test/fuzz/fees.cpp \
 wallet/test/fuzz/parse_iso8601.cpp \
 wallet/test/fuzz/wallet_bdb_parser.cpp

if USE_SQLITE
FUZZ_WALLET_SRC += \
 wallet/test/fuzz/notifications.cpp \
 wallet/test/fuzz/scriptpubkeyman.cpp
endif # USE_SQLITE

BITCOIN_TEST_SUITE += \
  wallet/test/wallet_test_fixture.cpp \
  wallet/test/wallet_test_fixture.h \
  wallet/test/init_test_fixture.cpp \
  wallet/test/init_test_fixture.h
endif # ENABLE_WALLET

if BUILD_MULTIPROCESS
# Add boost ipc_tests definition to BITCOIN_TESTS
BITCOIN_TESTS += test/ipc_tests.cpp

# Build ipc_test code in a separate library so it can be compiled with custom
# LIBMULTIPROCESS_CFLAGS without those flags affecting other tests
LIBBITCOIN_IPC_TEST=libbitcoin_ipc_test.a
EXTRA_LIBRARIES += $(LIBBITCOIN_IPC_TEST)
libbitcoin_ipc_test_a_SOURCES = \
  test/ipc_test.cpp \
  test/ipc_test.h
libbitcoin_ipc_test_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
libbitcoin_ipc_test_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) $(LIBMULTIPROCESS_CFLAGS)

# Generate various .c++/.h files from the ipc_test.capnp file
include $(MPGEN_PREFIX)/include/mpgen.mk
EXTRA_DIST += test/ipc_test.capnp
libbitcoin_ipc_test_mpgen_output = \
  test/ipc_test.capnp.c++ \
  test/ipc_test.capnp.h \
  test/ipc_test.capnp.proxy-client.c++ \
  test/ipc_test.capnp.proxy-server.c++ \
  test/ipc_test.capnp.proxy-types.c++ \
  test/ipc_test.capnp.proxy-types.h \
  test/ipc_test.capnp.proxy.h
nodist_libbitcoin_ipc_test_a_SOURCES = $(libbitcoin_ipc_test_mpgen_output)
CLEANFILES += $(libbitcoin_ipc_test_mpgen_output)
endif

# Explicitly list dependencies on generated headers as described in
# https://www.gnu.org/software/automake/manual/html_node/Built-Sources-Example.html#Recording-Dependencies-manually
test/libbitcoin_ipc_test_a-ipc_test.$(OBJEXT): test/ipc_test.capnp.h

test_test_bitcoin_SOURCES = $(BITCOIN_TEST_SUITE) $(BITCOIN_TESTS) $(JSON_TEST_FILES) $(RAW_TEST_FILES)
test_test_bitcoin_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(TESTDEFS) $(BOOST_CPPFLAGS) $(EVENT_CFLAGS)
test_test_bitcoin_LDADD = $(LIBTEST_UTIL)
if ENABLE_WALLET
test_test_bitcoin_LDADD += $(LIBBITCOIN_WALLET)
test_test_bitcoin_CPPFLAGS += $(BDB_CPPFLAGS)
endif
if BUILD_MULTIPROCESS
test_test_bitcoin_LDADD += $(LIBBITCOIN_IPC_TEST) $(LIBMULTIPROCESS_LIBS)
endif

test_test_bitcoin_LDADD += $(LIBBITCOIN_NODE) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CONSENSUS) $(LIBBITCOIN_CRYPTO) $(LIBUNIVALUE) \
  $(LIBLEVELDB) $(LIBMEMENV) $(LIBSECP256K1) $(EVENT_LIBS) $(EVENT_PTHREADS_LIBS) $(MINISKETCH_LIBS)
test_test_bitcoin_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)

test_test_bitcoin_LDADD += $(BDB_LIBS) $(MINIUPNPC_LIBS) $(NATPMP_LIBS) $(SQLITE_LIBS)
test_test_bitcoin_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) $(PTHREAD_FLAGS) -static

if ENABLE_ZMQ
test_test_bitcoin_LDADD += $(LIBBITCOIN_ZMQ) $(ZMQ_LIBS)
FUZZ_SUITE_LD_COMMON += $(LIBBITCOIN_ZMQ) $(ZMQ_LIBS)
endif

if ENABLE_FUZZ_BINARY
test_fuzz_fuzz_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(BOOST_CPPFLAGS) $(EVENT_CFLAGS)
test_fuzz_fuzz_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
test_fuzz_fuzz_LDADD = $(FUZZ_SUITE_LD_COMMON)
test_fuzz_fuzz_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) $(PTHREAD_FLAGS)
test_fuzz_fuzz_SOURCES = \
 $(FUZZ_WALLET_SRC) \
 test/fuzz/addition_overflow.cpp \
 test/fuzz/addrman.cpp \
 test/fuzz/asmap.cpp \
 test/fuzz/asmap_direct.cpp \
 test/fuzz/autofile.cpp \
 test/fuzz/banman.cpp \
 test/fuzz/base_encode_decode.cpp \
 test/fuzz/bech32.cpp \
 test/fuzz/bip324.cpp \
 test/fuzz/bitdeque.cpp \
 test/fuzz/block.cpp \
 test/fuzz/block_header.cpp \
 test/fuzz/blockfilter.cpp \
 test/fuzz/bloom_filter.cpp \
 test/fuzz/buffered_file.cpp \
 test/fuzz/chain.cpp \
 test/fuzz/checkqueue.cpp \
 test/fuzz/coins_view.cpp \
 test/fuzz/coinscache_sim.cpp \
 test/fuzz/connman.cpp \
 test/fuzz/crypto.cpp \
 test/fuzz/crypto_aes256.cpp \
 test/fuzz/crypto_aes256cbc.cpp \
 test/fuzz/crypto_chacha20.cpp \
 test/fuzz/crypto_common.cpp \
 test/fuzz/crypto_diff_fuzz_chacha20.cpp \
 test/fuzz/crypto_hkdf_hmac_sha256_l32.cpp \
 test/fuzz/crypto_poly1305.cpp \
 test/fuzz/cuckoocache.cpp \
 test/fuzz/decode_tx.cpp \
 test/fuzz/descriptor_parse.cpp \
 test/fuzz/deserialize.cpp \
 test/fuzz/eval_script.cpp \
 test/fuzz/feefrac.cpp \
 test/fuzz/fee_rate.cpp \
 test/fuzz/feeratediagram.cpp \
 test/fuzz/fees.cpp \
 test/fuzz/flatfile.cpp \
 test/fuzz/float.cpp \
 test/fuzz/golomb_rice.cpp \
 test/fuzz/headerssync.cpp \
 test/fuzz/hex.cpp \
 test/fuzz/http_request.cpp \
 test/fuzz/integer.cpp \
 test/fuzz/key.cpp \
 test/fuzz/key_io.cpp \
 test/fuzz/kitchen_sink.cpp \
 test/fuzz/load_external_block_file.cpp \
 test/fuzz/locale.cpp \
 test/fuzz/merkleblock.cpp \
 test/fuzz/message.cpp \
 test/fuzz/miniscript.cpp \
 test/fuzz/minisketch.cpp \
 test/fuzz/mini_miner.cpp \
 test/fuzz/muhash.cpp \
 test/fuzz/multiplication_overflow.cpp \
 test/fuzz/net.cpp \
 test/fuzz/net_permissions.cpp \
 test/fuzz/netaddress.cpp \
 test/fuzz/netbase_dns_lookup.cpp \
 test/fuzz/node_eviction.cpp \
 test/fuzz/p2p_transport_serialization.cpp \
 test/fuzz/package_eval.cpp \
 test/fuzz/parse_hd_keypath.cpp \
 test/fuzz/parse_numbers.cpp \
 test/fuzz/parse_script.cpp \
 test/fuzz/parse_univalue.cpp \
 test/fuzz/partially_downloaded_block.cpp \
 test/fuzz/policy_estimator.cpp \
 test/fuzz/policy_estimator_io.cpp \
 test/fuzz/poolresource.cpp \
 test/fuzz/pow.cpp \
 test/fuzz/prevector.cpp \
 test/fuzz/primitives_transaction.cpp \
 test/fuzz/process_message.cpp \
 test/fuzz/process_messages.cpp \
 test/fuzz/protocol.cpp \
 test/fuzz/psbt.cpp \
 test/fuzz/random.cpp \
 test/fuzz/rbf.cpp \
 test/fuzz/rolling_bloom_filter.cpp \
 test/fuzz/rpc.cpp \
 test/fuzz/script.cpp \
 test/fuzz/script_assets_test_minimizer.cpp \
 test/fuzz/script_descriptor_cache.cpp \
 test/fuzz/script_flags.cpp \
 test/fuzz/script_format.cpp \
 test/fuzz/script_interpreter.cpp \
 test/fuzz/script_ops.cpp \
 test/fuzz/script_sigcache.cpp \
 test/fuzz/script_sign.cpp \
 test/fuzz/scriptnum_ops.cpp \
 test/fuzz/secp256k1_ec_seckey_import_export_der.cpp \
 test/fuzz/secp256k1_ecdsa_signature_parse_der_lax.cpp \
 test/fuzz/signature_checker.cpp \
 test/fuzz/signet.cpp \
 test/fuzz/socks5.cpp \
 test/fuzz/span.cpp \
 test/fuzz/spanparsing.cpp \
 test/fuzz/string.cpp \
 test/fuzz/strprintf.cpp \
 test/fuzz/system.cpp \
 test/fuzz/timeoffsets.cpp \
 test/fuzz/torcontrol.cpp \
 test/fuzz/transaction.cpp \
 test/fuzz/tx_in.cpp \
 test/fuzz/tx_out.cpp \
 test/fuzz/tx_pool.cpp \
 test/fuzz/txorphan.cpp \
 test/fuzz/txrequest.cpp \
 test/fuzz/utxo_snapshot.cpp \
 test/fuzz/utxo_total_supply.cpp \
 test/fuzz/validation_load_mempool.cpp \
 test/fuzz/versionbits.cpp
endif # ENABLE_FUZZ_BINARY

nodist_test_test_bitcoin_SOURCES = $(GENERATED_TEST_FILES)

$(BITCOIN_TESTS): $(GENERATED_TEST_FILES)

CLEAN_BITCOIN_TEST = test/*.gcda test/*.gcno test/fuzz/*.gcda test/fuzz/*.gcno test/util/*.gcda test/util/*.gcno $(GENERATED_TEST_FILES) $(addsuffix .log,$(basename $(BITCOIN_TESTS)))

CLEANFILES += $(CLEAN_BITCOIN_TEST)

if TARGET_WINDOWS
bitcoin_test: $(TEST_BINARY)
else
if ENABLE_BENCH
bitcoin_test: $(TEST_BINARY) $(BENCH_BINARY)
else
bitcoin_test: $(TEST_BINARY)
endif
endif

bitcoin_test_check: $(TEST_BINARY) FORCE
	$(MAKE) check-TESTS TESTS=$^

bitcoin_test_clean : FORCE
	rm -f $(CLEAN_BITCOIN_TEST) $(test_test_bitcoin_OBJECTS) $(TEST_BINARY)

check-unit: $(BITCOIN_TESTS:.cpp=.cpp.test)

check-local: check-unit
if BUILD_BITCOIN_TX
	@echo "Running test/util/test_runner.py..."
	$(PYTHON) $(top_builddir)/test/util/test_runner.py
endif
	@echo "Running test/util/rpcauth-test.py..."
	$(PYTHON) $(top_builddir)/test/util/rpcauth-test.py
if TARGET_WINDOWS
else
if ENABLE_BENCH
	@echo "Running bench/bench_bitcoin (one iteration sanity check, only high priority)..."
	$(BENCH_BINARY) -sanity-check -priority-level=high
endif
endif
	$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check

if ENABLE_TESTS
UNIVALUE_TESTS = univalue/test/object univalue/test/unitester
noinst_PROGRAMS += $(UNIVALUE_TESTS)
TESTS += $(UNIVALUE_TESTS)

univalue_test_unitester_SOURCES = $(UNIVALUE_TEST_UNITESTER_INT)
univalue_test_unitester_LDADD = $(LIBUNIVALUE)
univalue_test_unitester_CPPFLAGS = -I$(srcdir)/$(UNIVALUE_INCLUDE_DIR_INT) -DJSON_TEST_SRC=\"$(srcdir)/$(UNIVALUE_TEST_DATA_DIR_INT)\"
univalue_test_unitester_LDFLAGS = -static $(LIBTOOL_APP_LDFLAGS)

univalue_test_object_SOURCES = $(UNIVALUE_TEST_OBJECT_INT)
univalue_test_object_LDADD = $(LIBUNIVALUE)
univalue_test_object_CPPFLAGS = -I$(srcdir)/$(UNIVALUE_INCLUDE_DIR_INT)
univalue_test_object_LDFLAGS = -static $(LIBTOOL_APP_LDFLAGS)
endif

%.cpp.test: %.cpp
	@echo Running tests: $$(\
	  cat $< | \
	  grep -E "(BOOST_FIXTURE_TEST_SUITE\\(|BOOST_AUTO_TEST_SUITE\\()" | \
	  cut -d '(' -f 2 | cut -d ',' -f 1 | cut -d ')' -f 1\
	) from $<
	$(AM_V_at)export TEST_LOGFILE=$(abs_builddir)/$$(\
	  echo $< | grep -E -o "(wallet/test/.*\.cpp|test/.*\.cpp)" | $(SED) -e s/\.cpp/.log/ \
	) && \
	$(TEST_BINARY) --catch_system_errors=no -l test_suite -t "$$(\
	  cat $< | \
	  grep -E "(BOOST_FIXTURE_TEST_SUITE\\(|BOOST_AUTO_TEST_SUITE\\()" | \
	  cut -d '(' -f 2 | cut -d ',' -f 1 | cut -d ')' -f 1\
	)" -- DEBUG_LOG_OUT > "$$TEST_LOGFILE" 2>&1 || (cat "$$TEST_LOGFILE" && false)

%.json.h: %.json
	@$(MKDIR_P) $(@D)
	$(AM_V_GEN) { \
	 echo "#include <string>" && \
	 echo "namespace json_tests{" && \
	 echo "static const std::string $(*F){" && \
	 $(HEXDUMP) -v -e '8/1 "0x%02x, "' -e '"\n"' $< | $(SED) -e 's/0x  ,//g' && \
	 echo "};};"; \
	} > "$@.new" && mv -f "$@.new" "$@"