[#74190] [Ruby trunk Feature#12134] Comparison between `true` and `false` — duerst@...
Issue #12134 has been updated by Martin D端rst.
3 messages
2016/03/07
[#74269] Type systems for Ruby — Rob Blanco <ml@...>
Dear ruby-core,
5 messages
2016/03/10
[#74395] [Ruby trunk Feature#12142] Hash tables with open addressing — shyouhei@...
Issue #12142 has been updated by Shyouhei Urabe.
3 messages
2016/03/17
[ruby-core:74285] [Ruby trunk Bug#12171] TestFile#test_file_share_delete failure
From:
golirev@...
Date:
2016-03-12 11:33:46 UTC
List:
ruby-core #74285
Issue #12171 has been reported by Tsuyoshi Morita. ---------------------------------------- Bug #12171: TestFile#test_file_share_delete failure https://bugs.ruby-lang.org/issues/12171 * Author: Tsuyoshi Morita * Status: Open * Priority: Normal * Assignee: * ruby -v: ruby 2.3.0p0 (2015-12-25 revision 53290) [i386-mingw32] * Backport: 2.1: DONTNEED, 2.2: DONTNEED, 2.3: REQUIRED ---------------------------------------- I got an failure in Mingw-w64 32bit. ~~~ 1) Failure: TestFile#test_file_share_delete [E:/Jenkins/jobs/RubyInstaller32_ruby23_4.7.2/workspace/sandbox/ruby_2_3/test/ruby/test_file.rb:418]: Exception raised: <#<Errno::EACCES: Permission denied @ unlink_internal - c:/temp/test_file_share_delete20160211-11728-1qcjzrd/x>>. ~~~ The cause is from O_SHARE_DELETE definition. ~~~ include/ruby/win32.h:130:#define O_SHARE_DELETE 0x80000000 /* for rb_w32_open(), rb_w32_wopen() */ file.c:6044: rb_define_const(rb_mFConst, "SHARE_DELETE", INT2FIX(O_SHARE_DELETE)); ~~~ In 32bit machine, 0x80000000 is out of Fixnum range. -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>