From e8af3a93544efbccdadd3a99081e466c72083178 Mon Sep 17 00:00:00 2001 From: Ilya Yegorov Date: Mon, 21 Aug 2023 21:19:29 +0300 Subject: [PATCH] [tests] Hide clang warnings from log (#120) --- casr/tests/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/casr/tests/tests.rs b/casr/tests/tests.rs index 4ef779fa..5e28043b 100644 --- a/casr/tests/tests.rs +++ b/casr/tests/tests.rs @@ -3576,7 +3576,7 @@ fn test_casr_ubsan() { let clang = Command::new("bash") .arg("-c") .arg(format!( - "clang++ -fsanitize=undefined -O0 -g {} -o {}", + "clang++ -fsanitize=undefined -O0 -g {} -o {} -Wno-everything", &paths[0], &paths[1] )) .status()