@@ -238,53 +238,53 @@ envoy_proto_library(
238
238
)
239
239
240
240
# envoy_cc_test_binary is generating mostly static binary regardless of config
241
- envoy_cc_test_binary (
242
- name = "config_impl_test_static" ,
243
- rbe_pool = "6gig" ,
244
- deps = [
245
- ":config_impl_test_lib" ,
246
- "//test:main" ,
247
- ],
248
- )
249
-
250
- sh_binary (
251
- name = "corpus_from_config_impl_sh" ,
252
- srcs = ["corpus_from_config_impl.sh" ],
253
- )
254
-
255
- envoy_directory_genrule (
256
- name = "corpus_from_config_impl" ,
257
- testonly = 1 ,
258
- srcs = [
259
- # This is deliberately in srcs, since we run into host/target confusion
260
- # otherwise in oss-fuzz builds.
261
- ":config_impl_test_static" ,
262
- "@openssl//:openssl" ,
263
- ],
264
- cmd = " " .join ([
265
- "$(location corpus_from_config_impl_sh)" ,
266
- "$(location //test/common/router:config_impl_test_static)" ,
267
- ]),
268
- exec_properties = select ({
269
- "//bazel:engflow_rbe" : {"Pool" : "6gig" },
270
- "//conditions:default" : {},
271
- }),
272
- tools = [":corpus_from_config_impl_sh" ],
273
- )
274
-
275
- filegroup (
276
- name = "route_corpus" ,
277
- testonly = 1 ,
278
- srcs = select ({
279
- # TODO(asraa): Clean this up for cross-compilation. Right now we assume
280
- # the host and target are the same on x86 builds, so we only execute the
281
- # corpus generation binary on x86 platforms.
282
- "//bazel:x86" : [":corpus_from_config_impl" ],
283
- "//conditions:default" : [],
284
- }) + glob ([
285
- "route_corpus/**" ,
286
- ]),
287
- )
241
+ # envoy_cc_test_binary(
242
+ # name = "config_impl_test_static",
243
+ # rbe_pool = "6gig",
244
+ # deps = [
245
+ # ":config_impl_test_lib",
246
+ # "//test:main",
247
+ # ],
248
+ # )
249
+
250
+ # sh_binary(
251
+ # name = "corpus_from_config_impl_sh",
252
+ # srcs = ["corpus_from_config_impl.sh"],
253
+ # )
254
+
255
+ # envoy_directory_genrule(
256
+ # name = "corpus_from_config_impl",
257
+ # testonly = 1,
258
+ # srcs = [
259
+ # # This is deliberately in srcs, since we run into host/target confusion
260
+ # # otherwise in oss-fuzz builds.
261
+ # ":config_impl_test_static",
262
+ # "@openssl//:openssl",
263
+ # ],
264
+ # cmd = " ".join([
265
+ # "$(location corpus_from_config_impl_sh)",
266
+ # "$(location //test/common/router:config_impl_test_static)",
267
+ # ]),
268
+ # exec_properties = select({
269
+ # "//bazel:engflow_rbe": {"Pool": "6gig"},
270
+ # "//conditions:default": {},
271
+ # }),
272
+ # tools = [":corpus_from_config_impl_sh"],
273
+ # )
274
+
275
+ # filegroup(
276
+ # name = "route_corpus",
277
+ # testonly = 1,
278
+ # srcs = select({
279
+ # # TODO(asraa): Clean this up for cross-compilation. Right now we assume
280
+ # # the host and target are the same on x86 builds, so we only execute the
281
+ # # corpus generation binary on x86 platforms.
282
+ # "//bazel:x86": [":corpus_from_config_impl"],
283
+ # "//conditions:default": [],
284
+ # }) + glob([
285
+ # "route_corpus/**",
286
+ # ]),
287
+ # )
288
288
289
289
envoy_cc_fuzz_test (
290
290
name = "route_fuzz_test" ,
0 commit comments