brintos

brintos / llvm-project-archived public Read only

0
0
Text · 587 B · 355ec4f Raw
13 lines · c
1// REQUIRES: plugins, examples2 3// RUN: %clang_cc1 -load %llvmshlibdir/PluginsOrder%pluginext %s 2>&1 | FileCheck %s --check-prefix=ALWAYS4// ALWAYS: always-before5// ALWAYS-NEXT: always-after6 7// RUN: %clang_cc1 -load %llvmshlibdir/PluginsOrder%pluginext %s -add-plugin cmd-after -add-plugin cmd-before 2>&1 | FileCheck %s --check-prefix=ALL8// RUN: %clang_cc1 -load %llvmshlibdir/PluginsOrder%pluginext %s -add-plugin cmd-before -add-plugin cmd-after 2>&1 | FileCheck %s --check-prefix=ALL9// ALL: cmd-before10// ALL-NEXT: always-before11// ALL-NEXT: cmd-after12// ALL-NEXT: always-after13