diff options
author | Connie <60797237+connieyzhu@users.noreply.github.com> | 2024-07-10 23:32:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-10 23:32:26 -0700 |
commit | ccceeeb577878f3e9b7301042f68e37552a3d2c1 (patch) | |
tree | 9d4005440a952dd6e6ace6981468bc8d269642cd | |
parent | c74ba57e0bd910b2f890f596291f7da23931ed70 (diff) | |
download | llvm-ccceeeb577878f3e9b7301042f68e37552a3d2c1.zip llvm-ccceeeb577878f3e9b7301042f68e37552a3d2c1.tar.gz llvm-ccceeeb577878f3e9b7301042f68e37552a3d2c1.tar.bz2 |
[compiler-rt][test] Fix typo in stderr redirection (#98397)
This patch fixes a typo in the RUN line where stderr should be
redirected to stdout instead of the other way around.
-rw-r--r-- | compiler-rt/test/msan/Linux/sigandorset.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/msan/Linux/sigandorset.cpp b/compiler-rt/test/msan/Linux/sigandorset.cpp index da98302..4d5fcec 100644 --- a/compiler-rt/test/msan/Linux/sigandorset.cpp +++ b/compiler-rt/test/msan/Linux/sigandorset.cpp @@ -1,6 +1,6 @@ // RUN: %clangxx_msan -std=c++11 -O0 -g %s -o %t && not %run %t 2>&1 | FileCheck %s // RUN: %clangxx_msan -DLEFT_OK -std=c++11 -O0 -g %s -o %t && not %run %t 2>&1 | FileCheck %s -// RUN: %clangxx_msan -DRIGHT_OK -std=c++11 -O0 -g %s -o %t && not %run %t 2<&1 | FileCheck %s +// RUN: %clangxx_msan -DRIGHT_OK -std=c++11 -O0 -g %s -o %t && not %run %t 2>&1 | FileCheck %s // RUN: %clangxx_msan -DLEFT_OK -DRIGHT_OK -std=c++11 -O0 -g %s -o %t && %run %t // REQUIRES: !android |