1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

merge revision(s) 39809,39834,39837: [Backport #8132]

* test/win32ole/test_err_in_callback.rb
	  (TestErrInCallBack#test_err_in_callback): shouldn't create a file in
	  source directory.

	* test/win32ole/test_err_in_callback.rb (TestErrInCallBack#setup): use
	  relative path to get rid of "too long commandline" error.
	  the top of build directory.

	* test/win32ole/test_err_in_callback.rb (TestErrInCallBack#setup):
	  allow using different root for source and build directories.
	  this may fixes a minor problem of r39834.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@39859 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2013-03-21 11:35:20 +00:00
parent ac24e257ab
commit 1191b35929
3 changed files with 37 additions and 17 deletions

View file

@ -1,3 +1,20 @@
Thu Mar 21 20:34:52 2013 NAKAMURA Usaku <usa@ruby-lang.org>
* test/win32ole/test_err_in_callback.rb (TestErrInCallBack#setup):
allow using different root for source and build directories.
this may fixes a minor problem of r39834.
Thu Mar 21 20:34:52 2013 NAKAMURA Usaku <usa@ruby-lang.org>
* test/win32ole/test_err_in_callback.rb (TestErrInCallBack#setup): use
relative path to get rid of "too long commandline" error.
Thu Mar 21 20:34:52 2013 NAKAMURA Usaku <usa@ruby-lang.org>
* test/win32ole/test_err_in_callback.rb
(TestErrInCallBack#test_err_in_callback): shouldn't create a file in
the top of build directory.
Tue Feb 26 09:53:59 2013 NARUSE, Yui <naruse@ruby-lang.org>
* st.c (st_add_direct): int is not always same with st_index_t. some

View file

@ -9,17 +9,21 @@ rescue LoadError
end
if defined?(WIN32OLE)
require 'mkmf'
require 'pathname'
require 'test/unit'
require 'tmpdir'
class TestErrInCallBack < Test::Unit::TestCase
def setup
@ruby = nil
if File.exist?("./" + CONFIG["RUBY_INSTALL_NAME"] + CONFIG["EXEEXT"])
sep = File::ALT_SEPARATOR || "/"
@ruby = "." + sep + CONFIG["RUBY_INSTALL_NAME"]
cwd = Pathname.new(File.expand_path('.'))
@iopt = $:.map {|e|
" -I " + e
" -I " + (Pathname.new(e).relative_path_from(cwd).to_s rescue e)
}.join("")
@script = File.join(File.dirname(__FILE__), "err_in_callback.rb")
script = File.join(File.dirname(__FILE__), "err_in_callback.rb")
@script = Pathname.new(script).relative_path_from(cwd).to_s rescue script
end
end
@ -35,18 +39,17 @@ if defined?(WIN32OLE)
def test_err_in_callback
skip "'ADODB.Connection' is not available" unless available_adodb?
if @ruby
cmd = "#{@ruby} -v #{@iopt} #{@script} > test_err_in_callback.log 2>&1"
system(cmd)
str = ""
open("test_err_in_callback.log") {|ifs|
str = ifs.read
}
assert_match(/NameError/, str)
Dir.mktmpdir do |tmpdir|
logfile = File.join(tmpdir, "test_err_in_callback.log")
cmd = "#{@ruby} -v #{@iopt} #{@script} > #{logfile.gsub(%r(/), '\\')} 2>&1"
result = system(cmd)
str = ""
open(logfile) {|ifs|
str = ifs.read
}
assert_match(/NameError/, str)
end
end
end
def teardown
File.unlink("test_err_in_callback.log") if File.exist?("test_err_in_callback.log")
end
end
end

View file

@ -1,10 +1,10 @@
#define RUBY_VERSION "1.9.3"
#define RUBY_PATCHLEVEL 393
#define RUBY_PATCHLEVEL 394
#define RUBY_RELEASE_DATE "2013-02-26"
#define RUBY_RELEASE_DATE "2013-03-21"
#define RUBY_RELEASE_YEAR 2013
#define RUBY_RELEASE_MONTH 2
#define RUBY_RELEASE_DAY 26
#define RUBY_RELEASE_MONTH 3
#define RUBY_RELEASE_DAY 21
#include "ruby/version.h"