Turns out `IO.pipe` would result in `"bar\n"` instead of `"bar\r\n"` (`PTY.open` results in strings that end in `"\r\n"`). Given the rest of the file's test cases all expect strings that end in `"\r\n"`, I thought that sticking to conven...yarmiganosca (Chris Hoffman)
I've been informed that this is expected behavior according to the spec, but I don't know how to close my own issues (or even if I can), so feel free to close this.yarmiganosca (Chris Hoffman)
It looks like a lot of builtin methods (`Array#<<` and `Integer#+`, for example) aren't hooked when using the :call or :c_call filters for TracePoint. ``` ➜ irb :001 > [RUBY_VERSION, RUBY_PATCHLEVEL] => ["2.5.1", 57] :002 > Tr...yarmiganosca (Chris Hoffman)