pitrou commented on issue #51095:
URL: https://github.com/apache/arrow/issues/51095#issuecomment-5491086636

   This patch avoids the problem if all tests pass successfully:
   ```diff
   diff --git a/cpp/build-support/run-test.sh b/cpp/build-support/run-test.sh
   index ae39bef671..e8e1629104 100755
   --- a/cpp/build-support/run-test.sh
   +++ b/cpp/build-support/run-test.sh
   @@ -200,7 +200,9 @@ if [ "$RUN_TYPE" = "test" ]; then
      post_process_tests
    fi
    
   -print_coredumps
   +if [ "$STATUS" -ne "0" ]; then
   +  print_coredumps
   +fi
    
    popd
    rm -Rf "$TEST_WORKDIR"
   ```
   
   Would you be ok with this @kou ?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to