From d77a5c39338d09827950957fbbc8c2347c4d97a0 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! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@305803 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Parser/objc-at-implementation-eof-crash.m | 5 ++++- test/Parser/objc-at-interface-eof-crash.m | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/test/Parser/objc-at-implementation-eof-crash.m b/test/Parser/objc-at-implementation-eof-crash.m index 01469ecb11..0dcece8179 100644 --- a/test/Parser/objc-at-implementation-eof-crash.m +++ b/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/test/Parser/objc-at-interface-eof-crash.m b/test/Parser/objc-at-interface-eof-crash.m index 7776838c9e..485e810494 100644 --- a/test/Parser/objc-at-interface-eof-crash.m +++ b/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 -- 2.50.1