-
-
Notifications
You must be signed in to change notification settings - Fork 925
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Truffle] Removing IO shim method and untagging specs.
- 9.4.12.0
- 9.4.11.0
- 9.4.10.0
- 9.4.9.0
- 9.4.8.0
- 9.4.7.0
- 9.4.6.0
- 9.4.5.0
- 9.4.4.0
- 9.4.3.0
- 9.4.2.0
- 9.4.1.0
- 9.4.0.0
- 9.3.15.0
- 9.3.14.0
- 9.3.13.0
- 9.3.12.0
- 9.3.11.0
- 9.3.10.0
- 9.3.9.0
- 9.3.8.0
- 9.3.7.0
- 9.3.6.0
- 9.3.5.0
- 9.3.4.0
- 9.3.3.0
- 9.3.2.0
- 9.3.1.0
- 9.3.0.0
- 9.2.21.0
- 9.2.20.1
- 9.2.20.0
- 9.2.19.0
- 9.2.18.0
- 9.2.17.0
- 9.2.16.0
- 9.2.15.0
- 9.2.14.0
- 9.2.13.0
- 9.2.12.0
- 9.2.11.1
- 9.2.11.0
- 9.2.10.0
- 9.2.9.0
- 9.2.8.0
- 9.2.7.0
- 9.2.6.0
- 9.2.5.0
- 9.2.4.1
- 9.2.4.0
- 9.2.3.0
- 9.2.2.0
- 9.2.1.0
- 9.2.0.0
- 9.1.17.0
- 9.1.16.0
- 9.1.15.0
- 9.1.14.0
- 9.1.13.0
- 9.1.12.0
- 9.1.11.0
- 9.1.10.0
- 9.1.9.0
- 9.1.8.0
- 9.1.7.0
- 9.1.6.0
- 9.1.5.0
- 9.1.4.0
- 9.1.3.0
- 9.1.2.0
- 9.1.1.0
- 9.1.0.0
- 9.0.5.0
- 9.0.4.0
- 9.0.3.0
- 9.0.1.0
- 9.0.0.0
- 9.0.0.0.rc2
- 9.0.0.0.rc1
- 9.0.0.0.pre2
Showing
15 changed files
with
0 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
fails:IO.binread reads the contents of a file | ||
fails:IO.binread returns a String in ASCII-8BIT encoding | ||
fails:IO.binread returns a String in ASCII-8BIT encoding regardless of Encoding.default_internal | ||
fails:IO.binread raises an Errno::EINVAL when not passed a valid offset |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,2 @@ | ||
fails:IO#external_encoding with 'r' mode when Encoding.default_internal is nil returns Encoding.default_external if the external encoding is not set | ||
fails:IO#external_encoding with 'r' mode when Encoding.default_internal is nil returns Encoding.default_external when that encoding is changed after the instance is created | ||
fails:IO#external_encoding with 'r' mode when Encoding.default_internal is nil returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'r' mode when Encoding.default_external == Encoding.default_internal returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'r' mode when Encoding.default_external != Encoding.default_internal returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'rb' mode returns the external encoding specified by the mode argument | ||
fails:IO#external_encoding with 'r+' mode when Encoding.default_internal is nil returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'r+' mode when Encoding.default_external != Encoding.default_internal returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'r+' mode when Encoding.default_external == Encoding.default_internal returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'w' mode when Encoding.default_internal is nil returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'w' mode when Encoding.default_external != Encoding.default_internal returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'w' mode when Encoding.default_external == Encoding.default_internal returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'wb' mode returns the external encoding specified by the mode argument | ||
fails:IO#external_encoding with 'w+' mode when Encoding.default_internal is nil returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'w+' mode when Encoding.default_external != Encoding.default_internal returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'w+' mode when Encoding.default_external == Encoding.default_internal returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'a' mode when Encoding.default_internal is nil returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'a' mode when Encoding.default_external != Encoding.default_internal returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'a' mode when Encoding.default_external == Encoding.default_internal returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'a+' mode when Encoding.default_internal is nil returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'a+' mode when Encoding.default_external != Encoding.default_internal returns the external encoding specified when the instance was created | ||
fails:IO#external_encoding with 'a+' mode when Encoding.default_external == Encoding.default_internal returns the external encoding specified when the instance was created |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,2 @@ | ||
fails:IO.for_fd uses the external encoding specified in the mode argument | ||
fails:IO.for_fd uses the external and the internal encoding specified in the mode argument | ||
fails:IO.for_fd uses the external encoding specified via the :external_encoding option | ||
fails:IO.for_fd uses the internal encoding specified via the :internal_encoding option | ||
fails:IO.for_fd uses the colon-separated encodings specified via the :encoding option | ||
fails:IO.for_fd ingores the :encoding option when the :external_encoding option is present | ||
fails:IO.for_fd ingores the :encoding option when the :internal_encoding option is present | ||
fails:IO.for_fd uses the encoding specified via the :mode option hash | ||
fails:IO.for_fd ignores the :internal_encoding option when the same as the external encoding | ||
fails:IO.for_fd sets internal encoding to nil when passed '-' | ||
fails:IO.for_fd does not use binary encoding when mode encoding is specified | ||
fails:IO.for_fd does not use binary encoding when :encoding option is specified | ||
fails:IO.for_fd does not use binary encoding when :external_encoding option is specified | ||
fails:IO.for_fd does not use binary encoding when :internal_encoding option is specified | ||
fails:IO.for_fd coerces :external_encoding option with #to_str | ||
fails:IO.for_fd coerces :internal_encoding option with #to_str | ||
fails:IO.for_fd raises an Errno::EBADF if the file descriptor is not valid | ||
fails:IO.for_fd raises an IOError if passed a closed stream |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
fails:IO#isatty returns true if this stream is a terminal device (TTY) | ||
fails:IO#isatty raises IOError on closed stream |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,2 @@ | ||
fails:IO.new uses the external encoding specified in the mode argument | ||
fails:IO.new uses the external and the internal encoding specified in the mode argument | ||
fails:IO.new uses the external encoding specified via the :external_encoding option | ||
fails:IO.new uses the internal encoding specified via the :internal_encoding option | ||
fails:IO.new uses the colon-separated encodings specified via the :encoding option | ||
fails:IO.new ingores the :encoding option when the :external_encoding option is present | ||
fails:IO.new ingores the :encoding option when the :internal_encoding option is present | ||
fails:IO.new uses the encoding specified via the :mode option hash | ||
fails:IO.new ignores the :internal_encoding option when the same as the external encoding | ||
fails:IO.new sets internal encoding to nil when passed '-' | ||
fails:IO.new does not use binary encoding when mode encoding is specified | ||
fails:IO.new does not use binary encoding when :encoding option is specified | ||
fails:IO.new does not use binary encoding when :external_encoding option is specified | ||
fails:IO.new does not use binary encoding when :internal_encoding option is specified | ||
fails:IO.new coerces :external_encoding option with #to_str | ||
fails:IO.new coerces :internal_encoding option with #to_str | ||
fails:IO.new raises an Errno::EBADF if the file descriptor is not valid | ||
fails:IO.new raises an IOError if passed a closed stream |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,3 @@ | ||
fails:IO#set_encoding when passed nil, nil with 'r' mode sets the encodings to the current Encoding defaults | ||
fails:IO#set_encoding when passed nil, nil with 'r' mode allows the #external_encoding to change when Encoding.default_external is changed | ||
fails:IO#set_encoding when passed nil, nil with 'rb' mode returns Encoding.default_external | ||
fails:IO#set_encoding when passed nil, nil with 'r+' mode sets the encodings to the current Encoding defaults | ||
fails:IO#set_encoding when passed nil, nil with 'w' mode sets the encodings to the current Encoding defaults | ||
fails:IO#set_encoding when passed nil, nil with 'w+' mode sets the encodings to the current Encoding defaults | ||
fails:IO#set_encoding when passed nil, nil with 'a' mode sets the encodings to the current Encoding defaults | ||
fails:IO#set_encoding when passed nil, nil with 'a+' mode sets the encodings to the current Encoding defaults | ||
fails:IO#set_encoding returns self | ||
fails:IO#set_encoding sets the external encoding when passed an Encoding argument | ||
fails:IO#set_encoding sets the external encoding when passed the name of an Encoding | ||
fails:IO#set_encoding ignores the internal encoding if the same as external when passed Encoding objects | ||
fails:IO#set_encoding ignores the internal encoding if the same as external when passed encoding names separanted by ':' | ||
fails:IO#set_encoding sets the external and internal encoding when passed the names of Encodings separated by ':' | ||
fails:IO#set_encoding sets the external and internal encoding when passed two String arguments | ||
fails:IO#set_encoding calls #to_str to convert an abject to a String | ||
fails:IO#set_encoding calls #to_str to convert the second argument to a String |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
fails:IO#tty? returns true if this stream is a terminal device (TTY) | ||
fails:IO#tty? raises IOError on closed stream |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,4 @@ | ||
fails:IO#write on a file writes all of the string's bytes but buffers them | ||
fails:IO#write on a file uses the encoding from the given option for non-ascii encoding | ||
fails:IO#write on a file writes binary data if no encoding is given | ||
fails:IO.write coerces the argument to a string using to_s | ||
fails:IO.write returns the number of bytes written | ||
fails:IO.write creates a file if missing | ||
fails:IO.write creates file if missing even if offset given | ||
fails:IO.write truncates the file and writes the given string | ||
fails:IO.write doesn't truncate the file and writes the given string if an offset is given | ||
fails:IO.write doesn't truncate and writes at the given offset after passing empty opts | ||
fails:IO.write accepts a :mode option | ||
fails:IO.write truncates if empty :opts provided and offset skipped | ||
fails:IO.write writes binary data if no encoding is given | ||
fails:IO#write coerces the argument to a string using to_s | ||
fails:IO#write checks if the file is writable if writing more than zero bytes | ||
fails:IO#write returns the number of bytes written | ||
fails:IO#write invokes to_s on non-String argument | ||
fails:IO#write writes all of the string's bytes without buffering if mode is sync | ||
fails:IO#write does not warn if called after IO#read | ||
fails:IO#write writes to the current position after IO#read | ||
fails:IO#write advances the file position by the count of given bytes | ||
fails:IO#write raises IOError on closed stream | ||
fails(windows):IO#write on Windows normalizes line endings in text mode | ||
fails(windows):IO#write on Windows does not normalize line endings in binary mode | ||
fails:IO.write on a FIFO writes correctly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters