[clang] e94e790 - [clang][test] Don't write temporary (actually, unused) outputs into CWD

Dmitri Gribenko via cfe-commits cfe-commits at lists.llvm.org
Fri Sep 8 14:54:49 PDT 2023


Author: Dmitri Gribenko
Date: 2023-09-08T23:54:41+02:00
New Revision: e94e790e46d0afd073b706afa0cf91804e7826e0

URL: https://github.com/llvm/llvm-project/commit/e94e790e46d0afd073b706afa0cf91804e7826e0
DIFF: https://github.com/llvm/llvm-project/commit/e94e790e46d0afd073b706afa0cf91804e7826e0.diff

LOG: [clang][test] Don't write temporary (actually, unused) outputs into CWD

Added: 
    

Modified: 
    clang/test/CodeGen/X86/avx512-error.c

Removed: 
    


################################################################################
diff  --git a/clang/test/CodeGen/X86/avx512-error.c b/clang/test/CodeGen/X86/avx512-error.c
index 1642527f292828e..8e42105ec112726 100644
--- a/clang/test/CodeGen/X86/avx512-error.c
+++ b/clang/test/CodeGen/X86/avx512-error.c
@@ -1,5 +1,5 @@
-// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -target-feature +avx512bw -target-feature -evex512 -emit-llvm -verify -DFEATURE_TEST=1
-// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -target-feature +avx512bw -target-feature -evex512 -emit-llvm -verify -DFEATURE_TEST=2
+// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -target-feature +avx512bw -target-feature -evex512 -emit-llvm -o /dev/null -verify -DFEATURE_TEST=1
+// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -target-feature +avx512bw -target-feature -evex512 -emit-llvm -o /dev/null -verify -DFEATURE_TEST=2
 
 #include <immintrin.h>
 


        


More information about the cfe-commits mailing list