reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
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