aboutsummaryrefslogtreecommitdiff
path: root/src/test/fuzz/parse_script.cpp
diff options
context:
space:
mode:
authorpracticalswift <[email protected]>2019-10-02 11:36:08 +0000
committerpracticalswift <[email protected]>2019-12-10 16:39:40 +0000
commitfb8c12093aa37f5536a1a4ba341ee8bab4dabe60 (patch)
tree25cb483e4584171e9d62bf8e4f6e506fb0a53695 /src/test/fuzz/parse_script.cpp
parenttests: Add ParseHDKeypath(...) (bip32) fuzzing harness (diff)
downloaddiscoin-fb8c12093aa37f5536a1a4ba341ee8bab4dabe60.tar.xz
discoin-fb8c12093aa37f5536a1a4ba341ee8bab4dabe60.zip
tests: Add ParseScript(...) (core_io) fuzzing harness
Diffstat (limited to 'src/test/fuzz/parse_script.cpp')
-rw-r--r--src/test/fuzz/parse_script.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/fuzz/parse_script.cpp b/src/test/fuzz/parse_script.cpp
new file mode 100644
index 000000000..21ac1aecf
--- /dev/null
+++ b/src/test/fuzz/parse_script.cpp
@@ -0,0 +1,16 @@
+// 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.
+
+#include <core_io.h>
+#include <script/script.h>
+#include <test/fuzz/fuzz.h>
+
+void test_one_input(const std::vector<uint8_t>& buffer)
+{
+ const std::string script_string(buffer.begin(), buffer.end());
+ try {
+ (void)ParseScript(script_string);
+ } catch (const std::runtime_error&) {
+ }
+}