https://github.com/iidmsa created https://github.com/llvm/llvm-project/pull/189514
The test had a CHECK directive that was never executed because the RUN line did not pipe output to FileCheck. >From 4f6b0b451c27c78cfa0351669f77f484c9d9ffcd Mon Sep 17 00:00:00 2001 From: Fady Farag <[email protected]> Date: Mon, 30 Mar 2026 19:49:50 -0500 Subject: [PATCH] [clang][test] Add missing FileCheck pipe in constant-string-class-1.m The test had a CHECK directive that was never executed because the RUN line did not pipe output to FileCheck. --- clang/test/CodeGenObjC/constant-string-class-1.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/CodeGenObjC/constant-string-class-1.m b/clang/test/CodeGenObjC/constant-string-class-1.m index 5f1e882d0d2e7..dfda2086c377c 100644 --- a/clang/test/CodeGenObjC/constant-string-class-1.m +++ b/clang/test/CodeGenObjC/constant-string-class-1.m @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fno-constant-cfstrings -fconstant-string-class OFConstantString -emit-llvm -o %t %s +// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fno-constant-cfstrings -fconstant-string-class OFConstantString -emit-llvm -o - %s | FileCheck %s // pr9914 @interface OFConstantString _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
