2020-12-31 03:48:25 -05:00
|
|
|
// Copyright (c) 2009-2020 The Bitcoin Core developers
|
2019-10-02 07:36:08 -04:00
|
|
|
// 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>
|
|
|
|
|
|
2020-12-03 10:42:49 -05:00
|
|
|
FUZZ_TARGET(parse_script)
|
2019-10-02 07:36:08 -04:00
|
|
|
{
|
|
|
|
|
const std::string script_string(buffer.begin(), buffer.end());
|
|
|
|
|
try {
|
|
|
|
|
(void)ParseScript(script_string);
|
|
|
|
|
} catch (const std::runtime_error&) {
|
|
|
|
|
}
|
|
|
|
|
}
|