Skip to content

Commit

Permalink
Rename miniscript_random fuzz test -> miniscript
Browse files Browse the repository at this point in the history
  • Loading branch information
sipa committed Apr 20, 2022
1 parent f990c4b commit c65113d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ void FuzzInitSmart()
} // namespace

/** Fuzz target that runs TestNode on nodes generated using ConsumeNodeStable. */
FUZZ_TARGET_INIT(miniscript_random_stable, FuzzInit)
FUZZ_TARGET_INIT(miniscript_stable, FuzzInit)
{
FuzzedDataProvider provider(buffer.data(), buffer.size());
TestNode(GenNode([&](Type) {
Expand All @@ -899,7 +899,7 @@ FUZZ_TARGET_INIT(miniscript_random_stable, FuzzInit)
}

/** Fuzz target that runs TestNode on nodes generated using ConsumeNodeSmart. */
FUZZ_TARGET_INIT(miniscript_random_smart, FuzzInitSmart)
FUZZ_TARGET_INIT(miniscript_smart, FuzzInitSmart)
{
/** The set of types we aim to construct nodes for. Together they cover all. */
static constexpr std::array<Type, 4> BASE_TYPES{"B"_mst, "V"_mst, "K"_mst, "W"_mst};
Expand Down

0 comments on commit c65113d

Please sign in to comment.