diff options
Diffstat (limited to 'test/Frontend/plugin-unknown.c')
-rw-r--r-- | test/Frontend/plugin-unknown.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Frontend/plugin-unknown.c b/test/Frontend/plugin-unknown.c new file mode 100644 index 0000000000000..5b225ae6639e8 --- /dev/null +++ b/test/Frontend/plugin-unknown.c @@ -0,0 +1,5 @@ +// RUN: not %clang_cc1 -plugin asdf %s 2>&1 | FileCheck %s +// RUN: not %clang_cc1 -add-plugin asdf %s 2>&1 | FileCheck --check-prefix=ADD %s + +// CHECK: unable to find plugin 'asdf' +// ADD: unable to find plugin 'asdf' |