
These test cases are testing features not available when either targeting the s390x-ibm-zos target or use tools/features not available on the z/OS operating system. In a couple cases the lit test had a number of subtests with one or two that aren't supported on z/OS. Rather than mark the entire test as unsupported I split out the unsupported tests into a separate test case.
15 lines
633 B
C
15 lines
633 B
C
// RUN: %clang -w -ansi %s -E -o - | FileCheck -check-prefix=ANSI %s
|
|
// ANSI: []
|
|
// RUN: %clang -w -ansi %s -fno-trigraphs -E -o - | FileCheck -check-prefix=ANSI-OVERRIDE %s
|
|
// ANSI-OVERRIDE: ??(??)
|
|
// RUN: %clang -w -std=gnu99 -trigraphs %s -E -o - | FileCheck -check-prefix=EXPLICIT %s
|
|
// EXPLICIT: []
|
|
// RUN: %clang -w -std=gnu99 -ftrigraphs %s -E -o - | FileCheck -check-prefix=FEXPLICIT %s
|
|
// FEXPLICIT: []
|
|
// RUN: %clang -w -ftrigraphs -fno-trigraphs %s -E -o - | FileCheck -check-prefix=ONOFF %s
|
|
// ONOFF: ??(??)
|
|
// RUN: %clang -w -fno-trigraphs -trigraphs %s -E -o - | FileCheck -check-prefix=OFFFON %s
|
|
// OFFFON: []
|
|
|
|
??(??)
|