Skip to content

Commit

Permalink
[compiler-rt][test] Fix typo in stderr redirection (#98397)
Browse files Browse the repository at this point in the history
This patch fixes a typo in the RUN line where stderr should be
redirected to stdout instead of the other way around.
  • Loading branch information
connieyzhu authored Jul 11, 2024
1 parent c74ba57 commit ccceeeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler-rt/test/msan/Linux/sigandorset.cpp
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit ccceeeb

Please sign in to comment.