diff options
Diffstat (limited to 'clang/test/Index/cxx-operator-overload.cpp')
-rw-r--r-- | clang/test/Index/cxx-operator-overload.cpp | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/clang/test/Index/cxx-operator-overload.cpp b/clang/test/Index/cxx-operator-overload.cpp index 935f661cce9..ffea76662da 100644 --- a/clang/test/Index/cxx-operator-overload.cpp +++ b/clang/test/Index/cxx-operator-overload.cpp @@ -14,11 +14,14 @@ Cls Cls::operator +(const Cls &RHS) { } // RUN: clang-cc -emit-pch %s -o %t.ast && -// RUN: index-test %t.ast -point-at %s:10:17 -print-decls | count 2 && -// RUN: index-test %t.ast -point-at %s:10:17 -print-decls | grep ':5:9,' && -// RUN: index-test %t.ast -point-at %s:10:17 -print-decls | grep ':13:10,' && + +// RUN: index-test %t.ast -point-at %s:10:17 -print-decls > %t && +// RUN: cat %t | count 2 && +// RUN: grep ':5:9,' %t && +// RUN: grep ':13:10,' %t && // Yep, we can show references of '+' plus signs that are overloaded, w00t! -// RUN: index-test %t.ast -point-at %s:5:15 -print-refs | count 2 && -// RUN: index-test %t.ast -point-at %s:5:15 -print-refs | grep ':10:17,' && -// RUN: index-test %t.ast -point-at %s:5:15 -print-refs | grep ':10:22,' +// RUN: index-test %t.ast -point-at %s:5:15 -print-refs > %t && +// RUN: cat %t | count 2 && +// RUN: grep ':10:17,' %t && +// RUN: grep ':10:22,' %t |