Skip to content

Commit 9224bc4

Browse files
FuzzTest Teamcopybara-github
FuzzTest Team
authored andcommitted
No public description
PiperOrigin-RevId: 727011520
1 parent 84bcab2 commit 9224bc4

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

fuzztest/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -624,6 +624,7 @@ cc_library(
624624
":serialization",
625625
":status",
626626
"@com_google_absl//absl/base:core_headers",
627+
"@com_google_absl//absl/flags:reflection",
627628
"@com_google_absl//absl/functional:any_invocable",
628629
"@com_google_absl//absl/functional:bind_front",
629630
"@com_google_absl//absl/functional:function_ref",

fuzztest/internal/runtime.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
#include <utility>
3939
#include <vector>
4040

41+
#include "absl/flags/reflection.h"
4142
#include "absl/functional/bind_front.h"
4243
#include "absl/functional/function_ref.h"
4344
#include "absl/log/check.h"
@@ -1134,6 +1135,7 @@ FuzzTestFuzzerImpl::RunResult FuzzTestFuzzerImpl::RunOneInput(
11341135
runtime_.SetSkippingRequested(false);
11351136
fixture_driver_->SetUpIteration();
11361137
if (!runtime_.skipping_requested()) {
1138+
absl::FlagSaver flags;
11371139
fixture_driver_->Test(std::move(untyped_args));
11381140
}
11391141
fixture_driver_->TearDownIteration();

0 commit comments

Comments
 (0)