Skip to content

Commit 763bbe5

Browse files
committed
Run ODBC test once outside of test script
If ODBC test is run using MinGW Shell, segfault occurs. I am not getting any seg fault on my local MSVC Windows when I run the tests without the bash script. But if Windows CI breaks from running the standalone exe then I will look into this
1 parent 97b30d2 commit 763bbe5

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/cpp_windows.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,7 @@ jobs:
162162
163163
# Convert VCPKG Windows path to MSYS path
164164
for /f "usebackq delims=" %%I in (`bash -c "cygpath -u \"$VCPKG_ROOT_KEEP\""` ) do set VCPKG_ROOT=%%I
165-
bash -c "ci/scripts/cpp_test.sh $(pwd) $(pwd)/build"
165+
166+
# Run ODBC test
167+
${{ github.workspace }}\build\cpp\%ARROW_BUILD_TYPE%\arrow-flight-sql-odbc-test.exe
168+

ci/scripts/cpp_test.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ case "$(uname)" in
8282
exclude_tests+=("gandiva-precompiled-test")
8383
exclude_tests+=("gandiva-projector-test")
8484
exclude_tests+=("gandiva-utf8-test")
85+
exclude_tests+=("arrow-flight-sql-odbc-test")
8586
;;
8687
*)
8788
n_jobs=${NPROC:-1}

0 commit comments

Comments
 (0)