From f6fb345a2e8a5a5980f458d7acde01342208253c Mon Sep 17 00:00:00 2001 From: Alex Lorenz Date: Tue, 20 Jun 2017 16:12:26 +0000 Subject: [PATCH] Split the expectations in tests from r305719 over multiple lines to enhance readability As suggested by Duncan Exon Smith! llvm-svn: 305803 --- clang/test/Parser/objc-at-implementation-eof-crash.m | 5 ++++- clang/test/Parser/objc-at-interface-eof-crash.m | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/clang/test/Parser/objc-at-implementation-eof-crash.m b/clang/test/Parser/objc-at-implementation-eof-crash.m index 01469ecb119e..0dcece81795e 100644 --- a/clang/test/Parser/objc-at-implementation-eof-crash.m +++ b/clang/test/Parser/objc-at-implementation-eof-crash.m @@ -16,6 +16,9 @@ mgr fileExistsAtPath:0 } // expected-error {{expected ']'}} -@implementation ClassC // expected-error {{missing '@end'}} // expected-error {{expected '}'}} // expected-warning {{cannot find interface declaration for 'ClassC'}} +@implementation ClassC // \ + // expected-error {{missing '@end'}} \ + // expected-error {{expected '}'}} \ + // expected-warning {{cannot find interface declaration for 'ClassC'}} @end diff --git a/clang/test/Parser/objc-at-interface-eof-crash.m b/clang/test/Parser/objc-at-interface-eof-crash.m index 7776838c9eb2..485e810494bb 100644 --- a/clang/test/Parser/objc-at-interface-eof-crash.m +++ b/clang/test/Parser/objc-at-interface-eof-crash.m @@ -16,6 +16,8 @@ mgr fileExistsAtPath:0 } // expected-error {{expected ']'}} -@interface ClassC // expected-error {{missing '@end'}} // expected-error {{expected '}'}} +@interface ClassC // \ + // expected-error {{missing '@end'}} \ + // expected-error {{expected '}'}} @end