[compiler-rt] [llvm] [llvm-lit] Fixing Command not found errors in Compiler-rt (PR #102069)

Paul Kirth via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 5 15:54:41 PDT 2024


================
@@ -1,6 +1,6 @@
 // RUN: %clangxx_msan -O0 %s -o %t && not %run %t >%t.out 2>&1
 // FileCheck %s <%t.out
-// RUN: %clangxx_msan -O0 %s -o %t && MSAN_OPTIONS=poison_in_free=0 %run %t >%t.out 2>&1
+// RUN: %clangxx_msan -O0 %s -o %t && env env MSAN_OPTIONS=poison_in_free=0 %run %t >%t.out 2>&1
----------------
ilovepi wrote:

typo?
```suggestion
// RUN: %clangxx_msan -O0 %s -o %t && env MSAN_OPTIONS=poison_in_free=0 %run %t >%t.out 2>&1
```

https://github.com/llvm/llvm-project/pull/102069


More information about the llvm-commits mailing list