Skip to content

Commit 44900ee

Browse files
committed
merge revision(s) 41411:
test_signal.rb: extra quotes * test/ruby/test_signal.rb (TestSignal#test_signal_process_group): remove extra quotes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@41434 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent f56c0c0 commit 44900ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/ruby/test_signal.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def test_signal_process_group
4343

4444
bug4362 = '[ruby-dev:43169]'
4545
assert_nothing_raised(bug4362) do
46-
pid = Process.spawn(EnvUtil.rubybin, '-e', '"sleep 10"', :pgroup => true)
46+
pid = Process.spawn(EnvUtil.rubybin, '-e', 'sleep 10', :pgroup => true)
4747
Process.kill(:"-TERM", pid)
4848
Process.waitpid(pid)
4949
assert_equal(true, $?.signaled?)

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define RUBY_VERSION "2.0.0"
22
#define RUBY_RELEASE_DATE "2013-06-19"
3-
#define RUBY_PATCHLEVEL 233
3+
#define RUBY_PATCHLEVEL 234
44

55
#define RUBY_RELEASE_YEAR 2013
66
#define RUBY_RELEASE_MONTH 6

0 commit comments

Comments
 (0)