1 ; Test that we can recurse, at least a little bit. The -time-passes flag here 2 ; is a hack to make sure that neither echo nor the shell expands the response 3 ; file for us. Tokenization with quotes is tested in unittests. 4 ; RUN: echo %s > %t.list1 5 ; RUN: echo "-time-passes @%t.list1" > %t.list2 6 ; RUN: llvm-as @%t.list2 -o %t.bc 7 ; RUN: llvm-nm %t.bc 2>&1 | FileCheck %s 8 9 ; CHECK: T foobar 10 11 define void @foobar() { 12 ret void 13 } 14