[macruby-changes] [MacRuby/MacRuby] bbf842: Thread#inspect will return string which copied rec...

noreply at github.com noreply at github.com
Tue Aug 9 00:37:41 PDT 2011


  Branch: refs/heads/master
  Home:   https://github.com/MacRuby/MacRuby

  Commit: bbf842bb3d9ac9926329c7765f89da5daa0cd86c
      https://github.com/MacRuby/MacRuby/commit/bbf842bb3d9ac9926329c7765f89da5daa0cd86c
  Author: Watson <watson1978 at gmail.com>
  Date:   2011-08-08 (Mon, 08 Aug 2011)

  Changed paths:
    M thread.c

  Log Message:
  -----------
  Thread#inspect will return string which copied receiver's status of taint/untrust.

Test Script:
{{{
require 'test/unit/assertions.rb'
include Test::Unit::Assertions
th = Thread.new { 42 }
th.taint
th.untrust
assert_equal(true, th.inspect.tainted?)
assert_equal(true, th.inspect.untrusted?)
puts :ok
}}}


  Commit: 69ea93916466130dccd8cd7b5473124cac5f103d
      https://github.com/MacRuby/MacRuby/commit/69ea93916466130dccd8cd7b5473124cac5f103d
  Author: Watson <watson1978 at gmail.com>
  Date:   2011-08-08 (Mon, 08 Aug 2011)

  Changed paths:
    M test-mri/test/net/imap/test_imap.rb
  M test-mri/test/rinda/test_rinda.rb
  M test-mri/test/ruby/test_dir_m17n.rb
  M test-mri/test/ruby/test_thread.rb
  M test-mri/test/thread/test_queue.rb

  Log Message:
  -----------
  update the skips in UnitTest.


Compare: https://github.com/MacRuby/MacRuby/compare/e7fa065...69ea939


More information about the macruby-changes mailing list