diff options
author | Richard Trieu <rtrieu@google.com> | 2012-06-13 22:31:48 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2012-06-13 22:31:48 +0000 |
commit | ca1bed91f9976758a8235eb17d90999fbfd26180 (patch) | |
tree | 040eab938d0bb19cd279f2df571b0e1ce3b97e51 | |
parent | 6ae97207ccaa11efd4a5ca891ed7865f7dc397b2 (diff) |
Remove unnecessary output redirection in a test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158424 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Misc/ast-dump-wchar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Misc/ast-dump-wchar.cpp b/test/Misc/ast-dump-wchar.cpp index 4153706bd6..2b955d2aff 100644 --- a/test/Misc/ast-dump-wchar.cpp +++ b/test/Misc/ast-dump-wchar.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -std=c++11 -ast-dump %s 2>&1 | FileCheck %s +// RUN: %clang_cc1 -std=c++11 -ast-dump %s | FileCheck %s char c8[] = u8"test\0\\\"\t\a\b\234"; // CHECK: char c8[12] = (StringLiteral {{.*}} lvalue u8"test\000\\\"\t\a\b\234") |