wgtmac commented on code in PR #2342:
URL: https://github.com/apache/orc/pull/2342#discussion_r2262535505
##########
.github/workflows/sanitizer_test.yml:
##########
@@ -58,12 +58,18 @@ jobs:
run: |
mkdir -p build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug -DENABLE_ASAN=ON -DENABLE_UBSAN=ON
-DBUILD_ENABLE_AVX512=ON -DBUILD_CPP_ENABLE_METRICS=ON -DBUILD_JAVA=OFF
- make
+ cmake --build . --verbose
- name: Run Tests
working-directory: build
env:
- ASAN_OPTIONS:
detect_leaks=1:symbolize=1:strict_string_checks=1:halt_on_error=0:detect_container_overflow=0
+ ASAN_OPTIONS:
log_path=out.log:detect_leaks=1:symbolize=1:strict_string_checks=1:halt_on_error=1:detect_container_overflow=0
LSAN_OPTIONS: suppressions=${{ github.workspace
}}/.github/lsan-suppressions.txt
- UBSAN_OPTIONS: print_stacktrace=1
+ UBSAN_OPTIONS:
log_path=out.log:halt_on_error=1:print_stacktrace=1:suppressions=${{
github.workspace }}/.github/ubsan-suppressions.txt
run: |
ctest --output-on-failure
Review Comment:
```suggestion
ctest -V --output-on-failure
```
--
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]