Xamarin Public Jenkins (auto-signing) 64ac736ec5 Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
2019-04-12 14:10:50 +00:00

30 lines
829 B
LLVM

RUN: rm -rf %t && mkdir -p %t
RUN: echo TA > %t/TA.txt
RUN: echo TB > %t/TB.txt
RUN: echo TAB > %t/TAB.txt
RUN: echo %t/TA* | FileCheck -check-prefix=STAR %s
RUN: echo %t/'TA'* | FileCheck -check-prefix=STAR %s
RUN: echo %t/T'A'* | FileCheck -check-prefix=STAR %s
RUN: echo %t/T?.txt | FileCheck -check-prefix=QUESTION %s
RUN: echo %t/'T'?.txt | FileCheck -check-prefix=QUESTION %s
RUN: echo %t/T??.txt | FileCheck -check-prefix=QUESTION2 %s
RUN: echo %t/'T'??.txt | FileCheck -check-prefix=QUESTION2 %s
RUN: echo 'T*' 'T?.txt' 'T??.txt' | FileCheck -check-prefix=QUOTEDARGS %s
STAR-NOT: TB.txt
STAR: {{(TA.txt.*TAB.txt|TAB.txt.*TA.txt)}}
QUESTION-NOT: TAB.txt
QUESTION: {{(TA.txt.*TB.txt|TB.txt.*TA.txt)}}
QUESTION2-NOT: TA.txt
QUESTION2-NOT: TB.txt
QUESTION2: TAB.txt
QUOTEDARGS-NOT: .txt
QUOTEDARGS: T* T?.txt T??.txt