-
-
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.
Showing
23 changed files
with
125 additions
and
6 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,5 +1,8 @@ | ||
windows = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ | ||
|
||
exclude :test_create_with_chain, 'needs investigation' if windows | ||
exclude :test_create_with_chain_decode, 'unimplemented' | ||
exclude :test_create_with_bad_nid, 'unimplemented' | ||
exclude :test_create_with_itr, 'unimplemented' | ||
exclude :test_create_with_mac_itr, 'unimplemented' | ||
exclude :test_create_no_pass, 'fails on Java 6: #628' | ||
exclude :test_create_no_pass, 'fails on Java 6: #628' |
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 +1,4 @@ | ||
windows = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ | ||
|
||
exclude :test_split_content, '\r\n in heredoc from git' if windows | ||
exclude :test_graceful_parsing_failure, 'needs investigation' |
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,3 +1,6 @@ | ||
windows = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ | ||
|
||
exclude :test_export_format_is_RSA_PUBKEY_pem, 'most likely \r\n' if windows | ||
exclude :test_export_format_is_RSA_PUBKEY, 'needs investigation' | ||
exclude :test_read_private_key_pem_pw, 'needs investigation' | ||
exclude :test_read_public_key_pem, 'needs investigation' |
3 changes: 3 additions & 0 deletions
3
test/externals/ruby1.9/excludes/TestCSV/Interface/DifferentOFS.rb
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
windows = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ | ||
|
||
exclude :test_table, "needs investigation" if windows |
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,7 +1,10 @@ | ||
windows = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ | ||
|
||
exclude :test_errat, "needs investigation" | ||
exclude :test_exception_to_s_should_not_propagate_untrustedness, "needs investigation" | ||
exclude :test_nomethoderror, "needs investigation" | ||
exclude :test_safe4, "needs investigation" if windows | ||
exclude :test_set_backtrace, "needs investigation" | ||
exclude :test_thread_signal_location, "needs investigation" | ||
exclude :test_to_s_taintness_propagation, "needs investigation" | ||
exclude :test_catch_throw_in_require, "needs investigation" | ||
exclude :test_catch_throw_in_require, "needs investigation" |
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,4 +1,23 @@ | ||
windows = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ | ||
|
||
exclude :test_chmod, "needs investigation" if windows | ||
exclude :test_chmod_R, "needs investigation" if windows | ||
exclude :test_chmod_symbol_mode, "needs investigation" if windows | ||
exclude :test_chmod_symbol_mode_R, "needs investigation" if windows | ||
exclude :test_copy_entry_symlink, "needs investigation" | ||
exclude :test_cp_symlink, "needs investigation" if windows | ||
exclude :test_cp_r_symlink, "needs investigation" | ||
exclude :test_install, "needs investigation" if windows | ||
exclude :test_install_symlink, "needs investigation" if windows | ||
exclude :test_ln_s, "needs investigation" | ||
exclude :test_ln_sf, "needs investigation" | ||
exclude :test_ln_symlink, "needs investigation" if windows | ||
exclude :test_mkdir, "needs investigation" if windows | ||
exclude :test_mkdir_file_perm, "needs investigation" if windows | ||
exclude :test_mkdir_p, "needs investigation" if windows | ||
exclude :test_mkdir_p_file_perm, "needs investigation" if windows | ||
exclude :test_mv_symlink, "needs investigation" if windows | ||
exclude :test_pwd, "needs investigation" if windows | ||
exclude :test_remove_entry_secure_symlink, "needs investigation" if windows | ||
exclude :test_rm_symlink, "needs investigation" if windows | ||
exclude :test_rm_r_symlink, "needs investigation" if windows |
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 +1,5 @@ | ||
windows = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ | ||
|
||
exclude :test_change_dir_to_file, "needs investigation" if windows | ||
exclude :test_unreadable_dir, "needs investigation" if windows | ||
exclude :test_unsearchable_dir, "fails on travis" |
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,2 +1,7 @@ | ||
windows = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ | ||
|
||
# under openssl/test_integration.rb (not name-spaced as OpenSSL) | ||
exclude :test_ca_path_name, "needs investigation" if windows | ||
exclude :test_cipher_strings, "needs investigation" if windows | ||
exclude :test_pathlen_does_not_appear, 'does https://www.paypal.com/ assumptions with ca_file' | ||
exclude :test_ssl_verify, "needs investigation" if windows |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
windows = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ | ||
|
||
exclude :test_write, "needs investigation" if windows |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
windows = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ | ||
|
||
exclude :test_killed_thread_in_synchronize, 'needs investigation' if windows |
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,5 +1,8 @@ | ||
windows = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ | ||
|
||
exclude :test_ascii_incompatible_path, "needs investigation" | ||
exclude :test_basename, "needs investigation" | ||
exclude :test_dirname, "needs investigation" | ||
exclude :test_extname, "needs investigation" | ||
exclude :test_join, "needs investigation" | ||
exclude :test_path, "needs investigation" if windows |
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,14 @@ | ||
windows = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ | ||
|
||
exclude :test_del_trailing_separator_162, "needs investigation" if windows | ||
exclude :test_del_trailing_separator_187, "needs investigation" if windows | ||
exclude :test_each_line, "needs investigation" if windows | ||
exclude :test_executable?, "needs investigation" if windows | ||
exclude :test_lchown, "needs investigation" if windows | ||
exclude :test_lstat, "needs investigation" if windows | ||
exclude :test_make_symlink, "needs investigation" if windows | ||
exclude :test_open, "needs investigation" | ||
exclude :test_readlink, "needs investigation" if windows | ||
exclude :test_realdirpath, "needs investigation" | ||
exclude :test_realpath, "needs investigation" | ||
exclude :test_lchmod, "fails on Travis, maybe on Linux in general?" |
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,8 +1,11 @@ | ||
windows = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ | ||
|
||
exclude :test_accept_nonblock, "needs investigation" | ||
exclude :test_accept_nonblock_error, "needs investigation" | ||
exclude :test_connect_nonblock, "needs investigation" | ||
exclude :test_recv_nonblock_error, "need investigation" if windows | ||
exclude :test_recvmsg_nonblock_error, "needs investigation" | ||
exclude :test_sendmsg_nonblock_error, "needs investigation" | ||
exclude :test_socket_recvfrom_nonblock, "needs investigation" | ||
exclude :test_udp_recv_nonblock, "needs investigation" | ||
exclude :test_udp_recvfrom_nonblock, "needs investigation" | ||
exclude :test_udp_recvfrom_nonblock, "needs investigation" |
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,8 +1,11 @@ | ||
windows = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ | ||
|
||
exclude :test_LSHIFT, "needs investigation" | ||
exclude :test_dummy_inspect, "needs investigation" | ||
exclude :test_gsub_enumerator, "needs investigation" | ||
exclude :test_hash_random, "needs investigation" | ||
exclude :test_partition, "needs investigation" | ||
exclude :test_hash_random, "JRuby #3275" if windows | ||
exclude :test_rpartition, "needs investigation" | ||
exclude :test_rstrip, "needs investigation" | ||
exclude :test_split, "needs investigation" |