[clang] [test] Avoid writing to a potentially write-protected dir (PR #102073)
Karl-Johan Karlsson via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 5 23:52:11 PDT 2024
https://github.com/karka228 updated https://github.com/llvm/llvm-project/pull/102073
>From a9401265f397108dbbb8c99cb4478801c39448e9 Mon Sep 17 00:00:00 2001
From: Karl-Johan Karlsson <karl-johan.karlsson at ericsson.com>
Date: Mon, 5 Aug 2024 23:43:39 +0200
Subject: [PATCH] [test] Avoid writing to a potentially write-protected dir
The test length-errors.hlsl don't check the output written to the current
directory. The current directory may be write protected e.g. in a sandboxed
environment.
This patch remove the -emit-llvm option as these testcases don't care about the
outputed llvm IR.
Co-authored-by: Chris B <cbieneman at microsoft.com>
---
clang/test/SemaHLSL/BuiltIns/length-errors.hlsl | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/clang/test/SemaHLSL/BuiltIns/length-errors.hlsl b/clang/test/SemaHLSL/BuiltIns/length-errors.hlsl
index fe0046a2ab5a1..281faada6f5e9 100644
--- a/clang/test/SemaHLSL/BuiltIns/length-errors.hlsl
+++ b/clang/test/SemaHLSL/BuiltIns/length-errors.hlsl
@@ -1,4 +1,5 @@
-// RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.6-library %s -fnative-half-type -emit-llvm -disable-llvm-passes -verify -verify-ignore-unexpected
+// RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.6-library %s -fnative-half-type -disable-llvm-passes -verify -verify-ignore-unexpected
+
void test_too_few_arg()
{
More information about the cfe-commits
mailing list