Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions fuzztest/internal/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ cc_test(
srcs = ["any_test.cc"],
deps = [
":any",
"@abseil-cpp//absl/strings",
"@googletest//:gtest_main",
],
)
Expand Down Expand Up @@ -78,7 +77,6 @@ cc_library(
"@com_google_fuzztest//centipede:centipede_interface",
"@com_google_fuzztest//centipede:centipede_runner_no_main",
"@com_google_fuzztest//centipede:environment",
"@com_google_fuzztest//centipede:execution_metadata",
"@com_google_fuzztest//centipede:fuzztest_mutator",
"@com_google_fuzztest//centipede:mutation_data",
"@com_google_fuzztest//centipede:runner_result",
Expand Down Expand Up @@ -144,7 +142,6 @@ cc_library(
":io",
"@abseil-cpp//absl/strings",
"@abseil-cpp//absl/strings:string_view",
"@abseil-cpp//absl/time",
],
)

Expand Down
2 changes: 0 additions & 2 deletions fuzztest/internal/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ fuzztest_cc_test(
"any_test.cc"
DEPS
fuzztest::any
absl::strings
GTest::gmock_main
)

Expand Down Expand Up @@ -98,7 +97,6 @@ fuzztest_cc_library(
fuzztest::io
absl::strings
absl::string_view
absl::time
)

fuzztest_cc_library(
Expand Down
4 changes: 1 addition & 3 deletions fuzztest/internal/any_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,11 @@

#include "./fuzztest/internal/any.h"

#include <optional>
#include <memory>
#include <string>
#include <type_traits>
#include <utility>

#include "gtest/gtest.h"
#include "absl/strings/str_cat.h"

namespace fuzztest::internal {
namespace {
Expand Down
1 change: 0 additions & 1 deletion fuzztest/internal/centipede_adaptor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@
#include "./centipede/centipede_default_callbacks.h"
#include "./centipede/centipede_interface.h"
#include "./centipede/environment.h"
#include "./centipede/execution_metadata.h"
#include "./centipede/fuzztest_mutator.h"
#include "./centipede/mutation_data.h"
#include "./centipede/runner_interface.h"
Expand Down
3 changes: 3 additions & 0 deletions fuzztest/internal/centipede_adaptor.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
#define FUZZTEST_FUZZTEST_INTERNAL_CENTIPEDE_ADAPTOR_H_

#include <memory>
#include <string>
#include <vector>

#include "absl/strings/string_view.h"
#include "./fuzztest/internal/configuration.h"
#include "./fuzztest/internal/fixture_driver.h"
#include "./fuzztest/internal/runtime.h"
Expand Down
3 changes: 0 additions & 3 deletions fuzztest/internal/corpus_database.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,11 @@

#include "./fuzztest/internal/corpus_database.h"

#include <cstdlib>
#include <string>
#include <vector>

#include "absl/strings/match.h"
#include "absl/strings/str_cat.h"
#include "absl/strings/string_view.h"
#include "absl/time/time.h"
#include "./fuzztest/internal/configuration.h"
#include "./fuzztest/internal/io.h"

Expand Down
Loading