Skip to content

Commit 5abe473

Browse files
committed
[sanitizers] Still echo cmake commands
`cmake` command line can be useful for reproducing.
1 parent 10703f3 commit 5abe473

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

zorg/buildbot/builders/sanitizers/buildbot_functions.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,15 @@ if [[ ! "$(arch)" =~ "ppc64" ]] ; then
7272
LIT_OPTS+=" --timeout=900"
7373
fi
7474

75+
CMAKE="$(which cmake)"
76+
77+
function cmake() {
78+
(
79+
set -x
80+
"${CMAKE}" "$@"
81+
)
82+
}
83+
7584
function rm_dirs {
7685
while ! rm -rf $@ ; do sleep 1; done
7786
}

0 commit comments

Comments
 (0)