diff options
Diffstat (limited to 'test/Modules/unnecessary-module-map-parsing.c')
-rw-r--r-- | test/Modules/unnecessary-module-map-parsing.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Modules/unnecessary-module-map-parsing.c b/test/Modules/unnecessary-module-map-parsing.c new file mode 100644 index 0000000..4c83448 --- /dev/null +++ b/test/Modules/unnecessary-module-map-parsing.c @@ -0,0 +1,8 @@ +// This checks that we are not parsing module maps if modules are not enabled. + +// RUN: not %clang_cc1 -fmodules -I %S/Inputs/unnecessary-module-map-parsing -fsyntax-only %s 2>&1 | FileCheck %s +// RUN: %clang_cc1 -I %S/Inputs/unnecessary-module-map-parsing -fsyntax-only %s + +// CHECK: error: expected umbrella, header, submodule, or module export + +#include "a1.h" |