test: restore original slowdown factor for MSAN and UBSAN (#29822)

pull/29825/head
Mark D. Roth 3 years ago committed by GitHub
parent abde72280d
commit c0a8f5c98c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      test/core/util/test_config.cc

@ -66,9 +66,9 @@ int64_t grpc_test_sanitizer_slowdown_factor() {
} else if (BuiltUnderAsan()) {
sanitizer_multiplier = 3;
} else if (BuiltUnderMsan()) {
sanitizer_multiplier = 6;
sanitizer_multiplier = 4;
} else if (BuiltUnderUbsan()) {
sanitizer_multiplier = 8;
sanitizer_multiplier = 5;
}
return sanitizer_multiplier;
}

Loading…
Cancel
Save