mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
d5ea9f022a
Summary: This patch is part of a patch series to add support for FileCheck numeric expressions. This specific patch adds support for selecting a matching format to match a numeric value against (ie. decimal, hex lower case letters or hex upper case letters). This commit allows to select what format a numeric value should be matched against. The following formats are supported: decimal value, lower case hex value and upper case hex value. Matching formats impact both the format of numeric value to be matched as well as the format of accepted numbers in a definition with empty numeric expression constraint. Default for absence of format is decimal value unless the numeric expression constraint is non null and use a variable in which case the format is the one used to define that variable. Conclict of format in case of several variable being used is diagnosed and forces the user to select a matching format explicitely. This commit also enables immediates in numeric expressions to be in any radix known to StringRef's GetAsInteger method, except for legacy numeric expressions (ie [[@LINE+<offset>]] which only support decimal immediates. Copyright: - Linaro (changes up to diff 183612 of revision D55940) - GraphCore (changes in later versions of revision D55940 and in new revision created off D55940) Reviewers: jhenderson, chandlerc, jdenny, probinson, grimar, arichardson Reviewed By: jhenderson, arichardson Subscribers: daltenty, MaskRay, hiraditya, llvm-commits, probinson, dblaikie, grimar, arichardson, kristina, hfinkel, rogfer01, JonChesterfield Tags: #llvm Differential Revision: https://reviews.llvm.org/D60389
53 lines
2.1 KiB
Plaintext
53 lines
2.1 KiB
Plaintext
; Test incorrect syntax for -D option is correctly diagnosed.
|
|
|
|
; Missing equal sign.
|
|
RUN: %ProtectFileCheckOutput not FileCheck -DVALUE10 --input-file %s %s 2>&1 \
|
|
RUN: | FileCheck %s --check-prefix ERRCLIEQ1
|
|
|
|
ERRCLIEQ1: Missing equal sign in command-line definition '-DVALUE10'
|
|
|
|
; Missing definition expression (variable name, equal sign and value).
|
|
RUN: %ProtectFileCheckOutput not FileCheck -D --input-file %s %s 2>&1 \
|
|
RUN: | FileCheck %s --check-prefix ERRCLIEQ2
|
|
|
|
ERRCLIEQ2: {{F|f}}ile{{C|c}}heck{{[^:]*}}: for the -D option: requires a value!
|
|
|
|
; Missing variable name.
|
|
RUN: %ProtectFileCheckOutput not FileCheck -D=10 --input-file %s %s 2>&1 \
|
|
RUN: | FileCheck %s --check-prefix ERRCLIVAR1
|
|
|
|
ERRCLIVAR1: Missing variable name in command-line definition '-D=10'
|
|
|
|
; Missing variable name.
|
|
RUN: %ProtectFileCheckOutput not FileCheck -D= --input-file %s %s 2>&1 \
|
|
RUN: | FileCheck %s --check-prefix ERRCLIVAR2
|
|
|
|
ERRCLIVAR2: Missing variable name in command-line definition '-D='
|
|
|
|
; Invalid variable name: starts with a digit.
|
|
RUN: %ProtectFileCheckOutput \
|
|
RUN: not FileCheck -D10VALUE=10 --input-file %s %s 2>&1 \
|
|
RUN: | FileCheck %s --strict-whitespace --match-full-lines --check-prefix ERRCLINAME
|
|
|
|
ERRCLINAME:Global defines:1:19: error: invalid variable name
|
|
ERRCLINAME-NEXT:Global define #1: 10VALUE=10
|
|
ERRCLINAME-NEXT: ^
|
|
|
|
; Invalid definition of pseudo variable.
|
|
RUN: %ProtectFileCheckOutput \
|
|
RUN: not FileCheck -D@VALUE=10 --input-file %s %s 2>&1 \
|
|
RUN: | FileCheck %s --strict-whitespace --match-full-lines --check-prefix ERRCLIPSEUDO
|
|
|
|
ERRCLIPSEUDO:Global defines:1:19: error: invalid name in string variable definition '@VALUE'
|
|
ERRCLIPSEUDO-NEXT:Global define #1: @VALUE=10
|
|
ERRCLIPSEUDO-NEXT: ^
|
|
|
|
; Invalid definition of an expression.
|
|
RUN: %ProtectFileCheckOutput \
|
|
RUN: not FileCheck -D'VALUE + 2=10' --input-file %s %s 2>&1 \
|
|
RUN: | FileCheck %s --strict-whitespace --check-prefix ERRCLITRAIL
|
|
|
|
ERRCLITRAIL:Global defines:1:19: error: invalid name in string variable definition 'VALUE + 2'
|
|
ERRCLITRAIL-NEXT:Global define #1: VALUE + 2=10
|
|
ERRCLITRAIL-NEXT: ^
|