From c8272db1795a7d63a2857b1fdbba4fa8775a6aee Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 17 Jan 2008 17:02:30 +0000 Subject: * bootstraptest/runner.rb (assert_valid_syntax): added. * bootstraptest/test_knownbug.rb: added test for [ruby-list:44479] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15094 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bootstraptest/runner.rb | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'bootstraptest/runner.rb') diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb index e8651fea4a..27b82947f2 100644 --- a/bootstraptest/runner.rb +++ b/bootstraptest/runner.rb @@ -127,9 +127,9 @@ def exec_test(pathes) end end -def assert_check(testsrc, message = '') +def assert_check(testsrc, message = '', opt = '') $stderr.puts "\##{@count} #{@location}" if @verbose - result = get_result_string(testsrc) + result = get_result_string(testsrc, opt) check_coredump faildesc = yield(result) if !faildesc @@ -179,6 +179,13 @@ def assert_not_match(unexpected_pattern, testsrc, message = '') } end +def assert_valid_syntax(testsrc, message = '') + newtest + assert_check(testsrc, message, '-c') {|result| + result if /Syntax OK/ !~ result + } +end + def assert_normal_exit(testsrc, message = '') newtest $stderr.puts "\##{@count} #{@location}" if @verbose @@ -268,11 +275,11 @@ def make_srcfile(src) filename end -def get_result_string(src) +def get_result_string(src, opt = '') if @ruby filename = make_srcfile(src) begin - `#{@ruby} -W0 #{filename}` + `#{@ruby} -W0 #{opt} #{filename}` ensure raise CoreDumpError, "core dumped" if $? and $?.coredump? end -- cgit v1.2.3