[前][次][番号順一覧][スレッド一覧]

ruby-changes:52736

From: k0kubun <ko1@a...>
Date: Mon, 8 Oct 2018 01:45:22 +0900 (JST)
Subject: [ruby-changes:52736] k0kubun:r64948 (trunk): appveyor.yml: completely separate win32ole tests

k0kubun	2018-10-08 01:45:16 +0900 (Mon, 08 Oct 2018)

  New Revision: 64948

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=64948

  Log:
    appveyor.yml: completely separate win32ole tests
    
    because r64938 was not enough and another win32ole test file
    (`test_win32ole_type.rb`) crashed worker.
    https://ci.appveyor.com/project/ruby/ruby/builds/19321161/job/ue1qrphi5j1xxgu6
    
    Let's run whole win32ole test suite separately.

  Removed files:
    trunk/test/excludes/TestWin32OLE.rb
  Modified files:
    trunk/appveyor.yml
Index: test/excludes/TestWin32OLE.rb
===================================================================
--- test/excludes/TestWin32OLE.rb	(revision 64947)
+++ test/excludes/TestWin32OLE.rb	(nonexistent)
@@ -1,13 +0,0 @@ https://github.com/ruby/ruby/blob/trunk/test/excludes/TestWin32OLE.rb#L0
-if ENV['APPVEYOR'] == 'True' && RUBY_PLATFORM.match?(/mswin/)
-  exclude(/\Atest_/, 'test_win32ole.rb sometimes causes worker crash')
-  # separately tested on appveyor.yml.
-end
-
-# https://ci.appveyor.com/project/ruby/ruby/build/9811/job/ra5uxf2cg6v7ohag
-#
-# running file: C:/projects/ruby/test/win32ole/test_win32ole.rb
-#
-# Some worker was crashed. It seems ruby interpreter's bug
-# or, a bug of test/unit/parallel.rb. try again without -j
-# option.
-# NMAKE : fatal error U1077: '.\ruby.exe' : return code '0x1'

Property changes on: test/excludes/TestWin32OLE.rb
___________________________________________________________________
Deleted: svn:eol-style
## -1 +0,0 ##
-LF
\ No newline at end of property
Index: appveyor.yml
===================================================================
--- appveyor.yml	(revision 64947)
+++ appveyor.yml	(revision 64948)
@@ -92,9 +92,9 @@ for: https://github.com/ruby/ruby/blob/trunk/appveyor.yml#L92
     - set /a JOBS=%NUMBER_OF_PROCESSORS%
     - nmake -l "TESTOPTS=-v -q" btest
     - nmake -l "TESTOPTS=-v -q" test-basic
-    - nmake -l "TESTOPTS=-q -j%JOBS% --subprocess-timeout-scale=1.5" test-all RUBY_FORCE_TEST_JIT=1
+    - nmake -l "TESTOPTS=-q -j%JOBS% --subprocess-timeout-scale=1.5 --exclude win32ole" test-all RUBY_FORCE_TEST_JIT=1
     # separately execute tests that may crash worker without -j.
-    - nmake -l "TESTOPTS=-q --subprocess-timeout-scale=1.5" test-all TEST_EXCLUDES= TESTS="../test/win32ole/test_win32ole.rb"
+    - nmake -l "TESTOPTS=-q --subprocess-timeout-scale=1.5" test-all TESTS="../test/win32ole"
     - nmake -l test-spec
 -
   matrix:

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]