mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
dd1fd5b646
Without this patch, `FILECHECK_OPTS` isn't propagated to FileCheck's test suite so that `FILECHECK_OPTS` doesn't inadvertently affect test results by affecting the output of FileCheck calls under test. As a result, `FILECHECK_OPTS` is useless for debugging FileCheck's test suite. In `llvm/test/FileCheck/lit.local.cfg`, this patch provides a new subsitution, `%ProtectFileCheckOutput`, to address this problem for both `FILECHECK_OPTS` and the deprecated `FILECHECK_DUMP_INPUT_ON_FAILURE`. The rest of the patch uses `%ProtectFileCheckOutput` throughout the test suite Fixes PR40284. Reviewed By: probinson, thopre Differential Revision: https://reviews.llvm.org/D65121
39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
; Test that variables not starting with dollar sign get undefined after a
|
|
; CHECK-LABEL directive iff --enable-var-scope is used.
|
|
|
|
; Reference run: variables remain defined at all time when not using
|
|
; --enable-var-scope option.
|
|
RUN: FileCheck --check-prefixes CHECK,LOCAL3,GLOBAL --input-file %s %s
|
|
|
|
RUN: FileCheck --check-prefixes CHECK,GLOBAL --enable-var-scope --input-file %s %s
|
|
RUN: %ProtectFileCheckOutput not FileCheck --check-prefixes CHECK,LOCAL1 --enable-var-scope --input-file %s %s 2>&1 \
|
|
RUN: | FileCheck --check-prefixes ERRUNDEF,ERRUNDEFLOCAL %s
|
|
RUN: %ProtectFileCheckOutput not FileCheck --check-prefixes CHECK,LOCAL2 --enable-var-scope --input-file %s %s 2>&1 \
|
|
RUN: | FileCheck --check-prefixes ERRUNDEF,ERRUNDEFLOCNUM %s
|
|
RUN: %ProtectFileCheckOutput not FileCheck --check-prefixes CHECK,LOCAL3 --enable-var-scope --input-file %s %s 2>&1 \
|
|
RUN: | FileCheck --check-prefixes ERRUNDEF,ERRUNDEFLOCAL,ERRUNDEFLOCNUM %s
|
|
|
|
local1
|
|
global1
|
|
CHECK: [[LOCAL:loc[^[:digit:]]*]][[#LOCNUM:]]
|
|
CHECK: [[$GLOBAL:glo[^[:digit:]]*]][[#$GLOBNUM:]]
|
|
|
|
local2
|
|
global2
|
|
CHECK: [[LOCAL]][[#LOCNUM+1]]
|
|
CHECK: [[$GLOBAL]][[#$GLOBNUM+1]]
|
|
|
|
barrier:
|
|
CHECK-LABEL: barrier
|
|
|
|
local3
|
|
global3
|
|
LOCAL1: [[LOCAL]]3
|
|
LOCAL2: local[[#LOCNUM+2]]
|
|
LOCAL3: [[LOCAL]][[#LOCNUM+2]]
|
|
GLOBAL: [[$GLOBAL]][[#$GLOBNUM+2]]
|
|
|
|
ERRUNDEF: expected string not found in input
|
|
ERRUNDEFLOCAL: uses undefined variable(s): "LOCAL"
|
|
ERRUNDEFLOCNUM: uses undefined variable(s): "LOCNUM"
|