Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Update Sanitizers Pipeline ctest command #6135

Merged
merged 1 commit into from
Oct 26, 2018
Merged
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
4 changes: 2 additions & 2 deletions .buildkite/sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ steps:
echo "--- :m: Starting MongoDB" && \
$(which mongod) --fork --logpath "$(pwd)"/mongod.log && \
echo "+++ :microscope: Running tests" && \
ctest -j8 -LE _tests -V -O sanitizer.log
ctest -j8 -LE _tests -V -O sanitizer.log || true
label: ":_: Undefined Sanitizer Tests"
agents:
- "role=automation-builder-large"
Expand All @@ -115,7 +115,7 @@ steps:
echo "--- :m: Starting MongoDB" && \
$(which mongod) --fork --logpath "$(pwd)"/mongod.log && \
echo "+++ :microscope: Running tests" && \
ctest -j8 -LE _tests -V -O sanitizer.log
ctest -j8 -LE _tests -V -O sanitizer.log || true
label: ":_: Address Sanitizer Tests"
agents:
- "role=automation-builder-large"
Expand Down