From 2ca632e5b44a8385989c8539cc4e30e60fdee16c Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Fri, 25 Jan 2019 18:35:36 -0500 Subject: test: Build fuzz targets into seperate executables --- src/test/fuzz/fuzz.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/test/fuzz/fuzz.h (limited to 'src/test/fuzz/fuzz.h') diff --git a/src/test/fuzz/fuzz.h b/src/test/fuzz/fuzz.h new file mode 100644 index 0000000000..ad62a5faf0 --- /dev/null +++ b/src/test/fuzz/fuzz.h @@ -0,0 +1,17 @@ +// Copyright (c) 2009-2019 The Bitcoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#ifndef BITCOIN_TEST_FUZZ_FUZZ_H +#define BITCOIN_TEST_FUZZ_FUZZ_H + +#include +#include +#include + + +const std::function G_TRANSLATION_FUN = nullptr; + +void test_one_input(std::vector buffer); + +#endif // BITCOIN_TEST_FUZZ_FUZZ_H -- cgit v1.2.3