#Centipede Always disable binary info when running with FuzzTest.

PiperOrigin-RevId: 722725391
diff --git a/centipede/environment.cc b/centipede/environment.cc
index 3b2a7f3..da829b2 100644
--- a/centipede/environment.cc
+++ b/centipede/environment.cc
@@ -238,6 +238,8 @@
 
 void Environment::UpdateWithTargetConfig(
     const fuzztest::internal::Configuration &config) {
+  // FuzzTest does not use features that need binary info.
+  populate_binary_info = false;
   if (config.jobs != 0) {
     CHECK(j == Default().j || j == config.jobs)
         << "Value for --j is inconsistent with the value for jobs in the "
@@ -307,7 +309,6 @@
 
   if (config.only_replay) {
     load_shards_only = true;
-    populate_binary_info = false;
   }
 }