diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-30 17:47:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-30 17:47:13 +0000 |
commit | adc539044a338af620ecce416bc27ce4074c80d9 (patch) | |
tree | 915cc9cae70fa2533f4bf5c9d1077daa5817b031 /test/Debugger | |
parent | 5b0a4ff6685804f172a01de0014ca1a6a37c3660 (diff) | |
download | external_llvm-adc539044a338af620ecce416bc27ce4074c80d9.zip external_llvm-adc539044a338af620ecce416bc27ce4074c80d9.tar.gz external_llvm-adc539044a338af620ecce416bc27ce4074c80d9.tar.bz2 |
Add back -e, which apparently works in sh's echo but not tcsh's, which does
not need it. Also, grep some output so we know that this command does something.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18393 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Debugger')
-rw-r--r-- | test/Debugger/funccall.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Debugger/funccall.ll b/test/Debugger/funccall.ll index 07ab16a..4ef450f 100644 --- a/test/Debugger/funccall.ll +++ b/test/Debugger/funccall.ll @@ -1,5 +1,5 @@ ;; RUN: llvm-as -f %s -o %t.bc -;; RUN: echo "create\ns\ns\nfinish\nbt\nq\ny" | llvm-db %t.bc +;; RUN: echo -e "create\ns\ns\nfinish\nbt\nq\ny" | llvm-db %t.bc | grep 'in main at funccall.c:11:2' ;; Debugger type declarations |