xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/recursive.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc // RUN: rm -rf %t
2*0a6a1f1dSLionel Sambuc // RUN: not %clang_cc1 -fmodules -x objective-c -fmodules-cache-path=%t -I %S/Inputs %s 2>&1 | FileCheck %s
3*0a6a1f1dSLionel Sambuc #include "recursive1.h"
4*0a6a1f1dSLionel Sambuc 
5*0a6a1f1dSLionel Sambuc // RUN: rm -rf %t
6*0a6a1f1dSLionel Sambuc // RUN: not %clang_cc1 -fmodules -x objective-c -fmodules-cache-path=%t -emit-module -fmodule-name=recursive1 %S/Inputs/module.map 2>&1 | FileCheck %s
7*0a6a1f1dSLionel Sambuc 
8*0a6a1f1dSLionel Sambuc // CHECK:      While building module 'recursive1'{{( imported from .*[/\]recursive.c:3)?}}:
9*0a6a1f1dSLionel Sambuc // CHECK-NEXT: While building module 'recursive2' imported from {{.*Inputs[/\]}}recursive1.h:1:
10*0a6a1f1dSLionel Sambuc // CHECK-NEXT: In file included from <module-includes>:1:
11*0a6a1f1dSLionel Sambuc // CHECK-NEXT: recursive2.h:1:10: fatal error: cyclic dependency in module 'recursive1': recursive1 -> recursive2 -> recursive1
12