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 5, 2022
1 parent 1313f22 commit b431733
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,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 @@ -876,7 +876,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 b431733

Please sign in to comment.