mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 09:56:07 +00:00

This fixes matching `clang: error: argument unused during compilation: '-Werror' [-Werror,-Wunused-command-line-argument]` on AIX. --------- Co-authored-by: Hubert Tong <hubert-reinterpretcast@users.noreply.github.com>
28 lines
1.8 KiB
C++
28 lines
1.8 KiB
C++
/// Test passing args to plugins via the clang driver and -fplugin-arg
|
|
// RUN: %clang -fplugin=%llvmshlibdir/CallSuperAttr%pluginext -fplugin-arg-call_super_plugin-help -fsyntax-only -### %s 2>&1 | FileCheck %s
|
|
|
|
// CHECK: "-load"
|
|
// CHECK-SAME: CallSuperAttr
|
|
// CHECK-SAME: "-plugin-arg-call_super_plugin"
|
|
// CHECK-SAME: "help"
|
|
|
|
/// Check that dashed-args get forwarded like this to the plugin.
|
|
/// Dashes cannot be part of the plugin name here
|
|
// RUN: %clang -fplugin=%llvmshlibdir/CallSuperAttr%pluginext -fplugin-arg-call_super_plugin-help-long -fsyntax-only %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-CMD
|
|
// CHECK-CMD: "-plugin-arg-call_super_plugin" "help-long"
|
|
|
|
/// Error handling for -fplugin-arg-
|
|
// RUN: %clang -fplugin=%llvmshlibdir/CallSuperAttr%pluginext -fplugin-arg- -fsyntax-only %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-NO-PLUGIN-NAME
|
|
// CHECK-NO-PLUGIN-NAME: missing plugin name in -fplugin-arg-
|
|
|
|
// RUN: %clang -fplugin=%llvmshlibdir/CallSuperAttr%pluginext -fplugin-arg-testname -fsyntax-only %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-NO-PLUGIN-ARG1
|
|
// CHECK-NO-PLUGIN-ARG1: missing plugin argument for plugin testname in -fplugin-arg-testname
|
|
|
|
// RUN: %clang -fplugin=%llvmshlibdir/CallSuperAttr%pluginext -fplugin-arg-testname- -fsyntax-only %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-NO-PLUGIN-ARG2
|
|
// CHECK-NO-PLUGIN-ARG2: missing plugin argument for plugin testname in -fplugin-arg-testname-
|
|
|
|
// Plugins are only relevant for the -cc1 phase. No warning should be raised
|
|
// when only using the assembler. See GH #88173.
|
|
// RUN: %clang -c -fpass-plugin=bar.so -fplugin=bar.so -fplugin-arg-bar-option -Wunused-command-line-argument -x assembler %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-PLUGIN-ASM
|
|
// CHECK-PLUGIN-ASM-NOT: argument unused during compilation: '-f{{[a-z-]*plugin[^']*}}'
|