[lld][WebAssembly] Reinstate mistakenly disabled test. NFC
[llvm-project.git] / clang / test / Modules / import-self.m
blobe59801592450ad323c439be16c7b90fdec0d3c33
1 // RUN: rm -rf %t
2 // RUN: not %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t \
3 // RUN:                -I %S/Inputs/submodules %s 2>&1 | FileCheck %s
4 // CHECK: import of module 'import_self.c' appears within same top-level module 'import_self'
6 // RUN: not %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t \
7 // RUN:                -I %S/Inputs/submodules -fmodule-name=import_self %s \
8 // RUN:     2>&1 |  FileCheck -check-prefix=CHECK-fmodule-name %s
9 // CHECK-fmodule-name: @import of module 'import_self.b' in implementation of 'import_self'
11 @import import_self.b;