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

Feature/coverage rta #620

Open
wants to merge 3 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
10 changes: 10 additions & 0 deletions jenkins/runRTAtest.fish
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ cleanPrepareLockUpdateClear2
TT_init
set -xg RTA_EDITION "C,Cr2"

and maintainerOn
and eval $EDITION
and eval $TEST_SUITE
and setAllLogsToWorkspace
Expand All @@ -15,6 +16,11 @@ if test "$ASAN" = "true"
sanOn
and buildSanFlags "$WORKDIR/work/ArangoDB"
end
if test "$COVERAGE" = "true"
echo "Coverage build"
coverageOn
and buildSanFlags "$WORKDIR/work/ArangoDB"
end
if test "$BUILD_MODE" = "debug"
echo "switching to debug build"
debugMode
Expand Down Expand Up @@ -46,6 +52,10 @@ for f in $matches
echo $f | grep -qv testreport ; and echo "mv $f $WORKSPACE" ; and mv $f $WORKSPACE; or echo "skipping $f"
end

if test "$COVERAGE" = "true"
collectCoverage
end

unlockDirectory

exit $s