]> granicus.if.org Git - clang/commitdiff
Fix module name collision in tests.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Sat, 23 Nov 2013 05:21:32 +0000 (05:21 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Sat, 23 Nov 2013 05:21:32 +0000 (05:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@195545 91177308-0d34-0410-b5e6-96231b3b80d8

test/Modules/Inputs/malformed/module.map
test/Modules/malformed.cpp

index 8fb6d7bd7d695406536d2045687828d447ccbbf5..5277ffa41edd0d8b8c1fecdb54c51bf579536877 100644 (file)
@@ -1,8 +1,8 @@
-module a {
+module malformed_a {
   module a1 { header "a1.h" }
   module a2 { header "a2.h" }
 }
-module b {
+module malformed_b {
   module b1 { header "b1.h" }
   module b2 { header "b2.h" }
 }
index 705d2898532580adeff67344cec21629e54c8140..cd7b33493998bd3b28ca40cbfec2b8039d9c57ef 100644 (file)
@@ -6,18 +6,18 @@
 #define STR(x) STR2(x)
 #include STR(HEADER)
 
-// CHECK-A: While building module 'a'
+// CHECK-A: While building module 'malformed_a'
 // CHECK-A: a1.h:1:{{.*}} error: expected '}'
 // CHECK-A: a1.h:1:{{.*}} note: to match this '{'
 //
-// CHECK-A: While building module 'a'
+// CHECK-A: While building module 'malformed_a'
 // CHECK-A: a2.h:1:{{.*}} error: extraneous closing brace
 
-// CHECK-B: While building module 'b'
+// CHECK-B: While building module 'malformed_b'
 // CHECK-B: b1.h:2:{{.*}} error: expected '}'
 // CHECK-B: b1.h:1:{{.*}} note: to match this '{'
 // CHECK-B: b1.h:3:{{.*}} error: extraneous closing brace ('}')
 //
-// CHECK-B: While building module 'b'
+// CHECK-B: While building module 'malformed_b'
 // CHECK-B: b2.h:1:{{.*}} error: redefinition of 'g'
 // CHECK-B: b2.h:1:{{.*}} note: previous definition is here