You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2019/03/05 05:23:37 UTC

[arrow] branch master updated: ARROW-4768: [C++][CI] Don't run flaky tests in MinGW build

This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 1af8d4d  ARROW-4768: [C++][CI] Don't run flaky tests in MinGW build
1af8d4d is described below

commit 1af8d4d89b4ba53273f9bbd3178036b924b29709
Author: Kouhei Sutou <ko...@clear-code.com>
AuthorDate: Tue Mar 5 14:23:20 2019 +0900

    ARROW-4768: [C++][CI] Don't run flaky tests in MinGW build
    
    Example: https://ci.appveyor.com/project/ApacheSoftwareFoundation/arrow/builds/22804493/job/6mbpslm97p4yj31c#L72
    
    The following job isn't finished.
    
        Start  2: arrow-array-test
    
    We disable the test for now but we should fix the problem and re-enable the test.
    
    Author: Kouhei Sutou <ko...@clear-code.com>
    
    Closes #3809 from kou/cpp-mingw-test-exclude-array and squashes the following commits:
    
    63b4b08d <Kouhei Sutou>  Don't run flaky tests in MinGW build
---
 ci/appveyor-cpp-build-mingw.bat | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/ci/appveyor-cpp-build-mingw.bat b/ci/appveyor-cpp-build-mingw.bat
index bdd3b14..3f007d5 100644
--- a/ci/appveyor-cpp-build-mingw.bat
+++ b/ci/appveyor-cpp-build-mingw.bat
@@ -48,7 +48,11 @@ cmake ^
     -DARROW_PYTHON=OFF ^
     .. || exit /B
 make -j4 || exit /B
-ctest --output-on-failure -j2 || exit /B
+@rem TODO: Run all tests
+ctest ^
+  --exclude-regex arrow-array-test ^
+  --output-on-failure ^
+  --parallel 2 || exit /B
 make install || exit /B
 popd