Files
clang-p2996/clang/test/Driver/aix-err-options.c
Fangrui Song cb1654ee4b [Driver][test] Clean up some AIX tests
* For `-###`, `-o %t.o` is unnecessary if we don't specifically test the
  output filename.
* --target= is the canonical spelling. -target is a legacy spelling which
  unfortunately cannot be removed because there are too many uses.
* -no-canonical-prefixes uses the dereferenced absolute path for the cc1
  command. For most tests "-cc1" is sufficient to identify the command line, no
  need to specifically test the "clang" command, and -no-canonical-prefixes can
  removed.
* --unwindlib= is the preferred spelling. -u is a short option taking a value,
  which means a -uwindlib= typo cannot be detected.

I recommend that you take a look at linux-cross.cpp. Testing include paths and
library paths in one RUN line is sometimes more readable than having separate
include/library tests.

Having separate RUN lines for misc features like -fdata-sections
(`aix-data-sections.c`) is wasteful. It may be better testing multiple
options in a single RUN command.

Reviewed By: jsji

Differential Revision: https://reviews.llvm.org/D119309
2022-02-26 01:06:24 +00:00

29 lines
1.5 KiB
C

// RUN: %clang --target=powerpc-ibm-aix-xcoff -### -E -G 0 2>&1 %s | \
// RUN: FileCheck --check-prefix=CHECK32 %s
// RUN: %clang --target=powerpc-ibm-aix-xcoff -### -S -emit-llvm -G 0 2>&1 %s | \
// RUN: FileCheck --check-prefix=CHECK32 %s
// RUN: %clang --target=powerpc-ibm-aix-xcoff -### -c -G 0 2>&1 %s | \
// RUN: FileCheck --check-prefix=CHECK32 %s
// RUN: %clang --target=powerpc-ibm-aix-xcoff -### -c \
// RUN: %S/Inputs/aix_ppc_tree/dummy0.s -G 0 2>&1 | \
// RUN: FileCheck --check-prefix=CHECK32 %s
// RUN: %clang --target=powerpc-ibm-aix-xcoff -### -o dummy.so \
// RUN: %S/Inputs/aix_ppc_tree/dummy0.o -G 0 2>&1 | \
// RUN: FileCheck --check-prefix=CHECK32 %s
// RUN: %clang --target=powerpc64-ibm-aix-xcoff -### -E -G 0 2>&1 %s | \
// RUN: FileCheck --check-prefix=CHECK64 %s
// RUN: %clang --target=powerpc64-ibm-aix-xcoff -### -S -emit-llvm -G 0 2>&1 %s | \
// RUN: FileCheck --check-prefix=CHECK64 %s
// RUN: %clang --target=powerpc64-ibm-aix-xcoff -### -c -G 0 2>&1 %s | \
// RUN: FileCheck --check-prefix=CHECK64 %s
// RUN: %clang --target=powerpc64-ibm-aix-xcoff -### -c \
// RUN: %S/Inputs/aix_ppc_tree/dummy0.s -G 0 2>&1 | \
// RUN: FileCheck --check-prefix=CHECK64 %s
// RUN: %clang --target=powerpc64-ibm-aix-xcoff -### -o dummy.so \
// RUN: %S/Inputs/aix_ppc_tree/dummy0.o -G 0 2>&1 | \
// RUN: FileCheck --check-prefix=CHECK64 %s
// CHECK32: error: unsupported option '-G' for target 'powerpc-ibm-aix-xcoff'
// CHECK64: error: unsupported option '-G' for target 'powerpc64-ibm-aix-xcoff'