Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not treat framework tests separately. #4874

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions o2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,7 @@
find $PWD -name "*.root" -delete
rm -rf test_logs
TESTERR=
ctest -C ${CMAKE_BUILD_TYPE} -E "test_Framework" --output-on-failure ${JOBS+-j $JOBS} || TESTERR=$?
ctest -C ${CMAKE_BUILD_TYPE} -R test_Framework --output-on-failure || TESTERR=$?
ctest -C ${CMAKE_BUILD_TYPE} --output-on-failure ${JOBS+-j $JOBS} || TESTERR=$?

Check notice on line 99 in o2.sh

View workflow job for this annotation

GitHub Actions / alidistlint

Double quote to prevent globbing and word splitting. [SC2086]
# Display additional logs for tests that timed out in a non-fatal way
set +x
for LOG in test_logs/*.nonfatal; do
Expand Down Expand Up @@ -293,8 +292,7 @@
# Clean up ROOT files created by tests in build area
find $PWD -name "*.root" -delete
TESTERR=
ctest -C ${CMAKE_BUILD_TYPE} -E "(test_Framework)|(test_GPUsort(CUDA|HIP))" --output-on-failure ${JOBS+-j $JOBS} || TESTERR=$?
ctest -C ${CMAKE_BUILD_TYPE} -R test_Framework --output-on-failure || TESTERR=$?
ctest -C ${CMAKE_BUILD_TYPE} -E "(test_GPUsort(CUDA|HIP))" --output-on-failure ${JOBS+-j $JOBS} || TESTERR=$?

Check notice on line 295 in o2.sh

View workflow job for this annotation

GitHub Actions / alidistlint

Double quote to prevent globbing and word splitting. [SC2086]
# Display additional logs for tests that timed out in a non-fatal way
set +x
for LOG in test_logs/*.nonfatal; do
Expand Down
Loading