30 lines · plain
1; RUN: echo -e "WINPATH=A:\windows\style\path" > %t.12; RUN: echo -e "NOT_ESCAPED=shouldn't be escaped [a-Z]\+$" >> %t.13; RUN: echo -e 'ESCAPED=\\ \f\v needs\to "be" escaped\000' >> %t.14; RUN: echo -e '$NUMERIC=DEADBEEF' >> %t.15 6VARS: WINPATH=[[WINPATH:.*]]7VARS-NEXT: NOT_ESCAPED=[[NOT_ESCAPED:.*]]8VARS-NEXT: ESCAPED=[[ESCAPED:.*]]9VARS-NEXT: $NUMERIC=[[#%X,$NUMERIC:]]10; Trigger a failed match, to show variables values11VARS-NEXT: [[WINPATH]] [[NOT_ESCAPED]] [[ESCAPED]] [[#$NUMERIC + 0]]12 13; RUN: %ProtectFileCheckOutput not FileCheck \14; RUN: -dump-input=never --strict-whitespace --check-prefix=VARS --input-file=%t.1 %s 2>&1 \15; RUN: | FileCheck %s16 17CHECK: with "WINPATH" equal to "A:\windows\style\path"18CHECK: with "NOT_ESCAPED" equal to "shouldn't be escaped [a-Z]\+$"19CHECK: with "ESCAPED" equal to "\\ \014\013 needs\to \"be\" escaped\000" (escaped value)20CHECK: with "$NUMERIC + 0" equal to "DEADBEEF"21 22; Test escaping of the name of a numeric substitution, which might contain23; characters that need escaping. 24; RUN: echo -e "VARNAME: [[#%,10\t]]" > %t.225; RUN: echo 42 \26; RUN: | %ProtectFileCheckOutput not FileCheck \27; RUN: -dump-input=never -vv --strict-whitespace --check-prefix=VARNAME %t.2 2>&1 \28; RUN: | FileCheck %s --check-prefix=CHECK-VARNAME29CHECK-VARNAME: with "%,10\t" equal to "10"30