[clang] 06f671e - [clang][nfc] Fix tests to avoid writing output to unreachable location, which might cause them to fail (#158698)

via cfe-commits cfe-commits at lists.llvm.org
Mon Sep 15 10:48:55 PDT 2025


Author: Vy Nguyen
Date: 2025-09-15T13:48:51-04:00
New Revision: 06f671e57a574ba1c5127038eff8e8773273790e

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

LOG: [clang][nfc] Fix tests to avoid writing output to unreachable location, which might cause them to fail (#158698)

[clang][nfc] Fix tests to avoid writing output to unreachable location,
which might cause them to fail

Added: 
    

Modified: 
    clang/test/Driver/clang_f_opts.c

Removed: 
    


################################################################################
diff  --git a/clang/test/Driver/clang_f_opts.c b/clang/test/Driver/clang_f_opts.c
index eb3994ddabcd3..581b031eb7a86 100644
--- a/clang/test/Driver/clang_f_opts.c
+++ b/clang/test/Driver/clang_f_opts.c
@@ -55,8 +55,8 @@
 // RUN: %clang -### -S -fexperimental-loop-fusion %s 2>&1 | FileCheck -check-prefix=CHECK-FUSE-LOOPS %s
 // CHECK-FUSE-LOOPS: "-fexperimental-loop-fusion"
 //
-// RUN: %clang -c -fexperimental-loop-fusion -mllvm -print-pipeline-passes -O3 %s 2>&1 | FileCheck --check-prefixes=LOOP-FUSION-ON %s
-// RUN: %clang -c -mllvm -print-pipeline-passes -O3 %s 2>&1 | FileCheck --check-prefixes=LOOP-FUSION-OFF %s
+// RUN: %clang -c -fexperimental-loop-fusion -mllvm -print-pipeline-passes -O3 %s -o /dev/null 2>&1 | FileCheck --check-prefixes=LOOP-FUSION-ON %s
+// RUN: %clang -c -mllvm -print-pipeline-passes -O3 %s -o /dev/null 2>&1 | FileCheck --check-prefixes=LOOP-FUSION-OFF %s
 
 // LOOP-FUSION-ON: loop-fusion
 // LOOP-FUSION-OFF-NOT: loop-fusion


        


More information about the cfe-commits mailing list