RESOLVED FIXED 137527
[iOS] LayoutTestRelay should detect EOF and properly signal underlying DRT/WKTR
https://bugs.webkit.org/show_bug.cgi?id=137527
Summary [iOS] LayoutTestRelay should detect EOF and properly signal underlying DRT/WKTR
David Farler
Reported 2014-10-08 10:43:11 PDT
If the LayoutTestRelay receives an EOF from the test harness, it should do the following: - make sure that it gets properly forwarded to DRT/WKTR. The only question is - does DRT/WKTR as an iOS app "exit 0" when it receives the EOF and exits the "test server loop"? - exit 0
Attachments
Patch (6.03 KB, patch)
2014-10-10 14:41 PDT, David Farler
simon.fraser: review+
David Farler
Comment 1 2014-10-10 14:41:38 PDT
WebKit Commit Bot
Comment 2 2014-10-10 14:43:34 PDT
Attachment 239650 [details] did not pass style-queue: ERROR: Tools/LayoutTestRelay/LayoutTestRelay/LTRelayController.m:72: Place brace on its own line for function definitions. [whitespace/braces] [4] ERROR: Tools/LayoutTestRelay/LayoutTestRelay/LTRelayController.m:72: Extra space before ( in function call [whitespace/parens] [4] Total errors found: 2 in 2 files If any of these errors are false positives, please file a bug against check-webkit-style.
David Farler
Comment 3 2014-10-10 14:47:27 PDT
(In reply to comment #2) > Attachment 239650 [details] did not pass style-queue: > > > ERROR: Tools/LayoutTestRelay/LayoutTestRelay/LTRelayController.m:72: Place brace on its own line for function definitions. [whitespace/braces] [4] > ERROR: Tools/LayoutTestRelay/LayoutTestRelay/LTRelayController.m:72: Extra space before ( in function call [whitespace/parens] [4] > Total errors found: 2 in 2 files > > > If any of these errors are false positives, please file a bug against check-webkit-style. Already filed a bug for this (Objective-C exceptions treated like functions). Thanks anyway, style bot.
Simon Fraser (smfr)
Comment 4 2014-10-10 14:57:02 PDT
Comment on attachment 239650 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=239650&action=review > Tools/LayoutTestRelay/LayoutTestRelay/LTRelayController.m:71 > + NSData *data = [NSData dataWithBytes:buffer length:len]; > + [[[self relay] outputStream] write:[data bytes] maxLength:[data length]]; Why make an NSData just to hand off the bytes directly?
David Farler
Comment 5 2014-10-10 15:06:00 PDT
(In reply to comment #4) > (From update of attachment 239650 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=239650&action=review > > > Tools/LayoutTestRelay/LayoutTestRelay/LTRelayController.m:71 > > + NSData *data = [NSData dataWithBytes:buffer length:len]; > > + [[[self relay] outputStream] write:[data bytes] maxLength:[data length]]; > > Why make an NSData just to hand off the bytes directly? Oh. For some reason I just had it in my mind that I needed to do that from a different API a long time ago. I'll forward the bytes on directly. I'll have another patch in just a minute.
David Farler
Comment 6 2014-10-10 17:03:40 PDT
Note You need to log in before you can comment on or make changes to this bug.