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 Mar 23, 2022
1 parent 4643107 commit 4006134
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ void TestNode(const NodeRef& node, FuzzedDataProvider& provider)
} // namespace

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

/** Fuzz target that runs TestNode on nodes generated using ConsumeNodeSmart. */
FUZZ_TARGET(miniscript_random_smart)
FUZZ_TARGET(miniscript_smart)
{
/** 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 4006134

Please sign in to comment.