aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Meumertzheim <fabian@meumertzhe.im>2022-08-16 21:04:51 +0200
committerFabian Meumertzheim <fabian@meumertzhe.im>2022-08-19 14:28:35 +0200
commit042308b75d51b6e69eff7c17edc9573f53df3ae9 (patch)
tree5ec618f182dc3e3206c49157b083a059cac6595b
parentde57b39db8ed362fe2e93100de74597b453eeb02 (diff)
downloadjazzer-api-042308b75d51b6e69eff7c17edc9573f53df3ae9.tar.gz
tests: Temporarily disable ASan tests on Windows
Implementing the hook forwarding required for native library fuzzing on Windows requires quite a bit of effort - it seems reasonable to focus on the test runner integration first.
-rw-r--r--examples/BUILD.bazel1
-rw-r--r--tests/BUILD.bazel1
2 files changed, 2 insertions, 0 deletions
diff --git a/examples/BUILD.bazel b/examples/BUILD.bazel
index 8042cdd7..599b8261 100644
--- a/examples/BUILD.bazel
+++ b/examples/BUILD.bazel
@@ -47,6 +47,7 @@ java_fuzz_target_test(
fuzzer_args = ["--jvm_args=-Djazzer.native_lib=native_asan"],
sanitizer = "address",
target_class = "com.example.ExampleFuzzerWithNative",
+ target_compatible_with = SKIP_ON_WINDOWS,
verify_crash_reproducer = False,
runtime_deps = [
":example_fuzzer_with_native_lib",
diff --git a/tests/BUILD.bazel b/tests/BUILD.bazel
index cc0814e9..cbc77434 100644
--- a/tests/BUILD.bazel
+++ b/tests/BUILD.bazel
@@ -253,6 +253,7 @@ java_fuzz_target_test(
fuzzer_args = ["-use_value_profile=1"],
sanitizer = "address",
target_class = "com.example.NativeValueProfileFuzzer",
+ target_compatible_with = SKIP_ON_WINDOWS,
verify_crash_reproducer = False,
runtime_deps = [":native_value_profile_fuzzer"],
)