annotate clang/test/Modules/recursive.c @ 266:00f31e85ec16 default tip

Added tag current for changeset 31d058e83c98
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 14 Oct 2023 10:13:55 +0900
parents 1d019706d866
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // RUN: rm -rf %t
anatofuz
parents:
diff changeset
2 // RUN: not %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -fmodules-cache-path=%t -I %S/Inputs %s 2>&1 | FileCheck %s
anatofuz
parents:
diff changeset
3 #include "recursive1.h"
anatofuz
parents:
diff changeset
4
anatofuz
parents:
diff changeset
5 // RUN: rm -rf %t
anatofuz
parents:
diff changeset
6 // RUN: not %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c -fmodules-cache-path=%t -emit-module -fmodule-name=recursive1 %S/Inputs/module.map 2>&1 | FileCheck %s
anatofuz
parents:
diff changeset
7
anatofuz
parents:
diff changeset
8 // CHECK: While building module 'recursive1'{{( imported from .*[/\]recursive.c:3)?}}:
anatofuz
parents:
diff changeset
9 // CHECK-NEXT: While building module 'recursive2' imported from {{.*Inputs[/\]}}recursive1.h:1:
anatofuz
parents:
diff changeset
10 // CHECK-NEXT: In file included from <module-includes>:1:
anatofuz
parents:
diff changeset
11 // CHECK-NEXT: recursive2.h:1:10: fatal error: cyclic dependency in module 'recursive1': recursive1 -> recursive2 -> recursive1