r305803 - Split the expectations in tests from r305719 over multiple lines to
Alex Lorenz via cfe-commits
cfe-commits at lists.llvm.org
Tue Jun 20 09:12:26 PDT 2017
Author: arphaman
Date: Tue Jun 20 11:12:26 2017
New Revision: 305803
URL: http://llvm.org/viewvc/llvm-project?rev=305803&view=rev
Log:
Split the expectations in tests from r305719 over multiple lines to
enhance readability
As suggested by Duncan Exon Smith!
Modified:
cfe/trunk/test/Parser/objc-at-implementation-eof-crash.m
cfe/trunk/test/Parser/objc-at-interface-eof-crash.m
Modified: cfe/trunk/test/Parser/objc-at-implementation-eof-crash.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Parser/objc-at-implementation-eof-crash.m?rev=305803&r1=305802&r2=305803&view=diff
==============================================================================
--- cfe/trunk/test/Parser/objc-at-implementation-eof-crash.m (original)
+++ cfe/trunk/test/Parser/objc-at-implementation-eof-crash.m Tue Jun 20 11:12:26 2017
@@ -16,6 +16,9 @@
mgr fileExistsAtPath:0
} // expected-error {{expected ']'}}
- at implementation ClassC // expected-error {{missing '@end'}} // expected-error {{expected '}'}} // expected-warning {{cannot find interface declaration for 'ClassC'}}
+ at implementation ClassC // \
+ // expected-error {{missing '@end'}} \
+ // expected-error {{expected '}'}} \
+ // expected-warning {{cannot find interface declaration for 'ClassC'}}
@end
Modified: cfe/trunk/test/Parser/objc-at-interface-eof-crash.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Parser/objc-at-interface-eof-crash.m?rev=305803&r1=305802&r2=305803&view=diff
==============================================================================
--- cfe/trunk/test/Parser/objc-at-interface-eof-crash.m (original)
+++ cfe/trunk/test/Parser/objc-at-interface-eof-crash.m Tue Jun 20 11:12:26 2017
@@ -16,6 +16,8 @@
mgr fileExistsAtPath:0
} // expected-error {{expected ']'}}
- at interface ClassC // expected-error {{missing '@end'}} // expected-error {{expected '}'}}
+ at interface ClassC // \
+ // expected-error {{missing '@end'}} \
+ // expected-error {{expected '}'}}
@end
More information about the cfe-commits
mailing list