Skip to content

Commit

Permalink
feat: run ctest on stage3
Browse files Browse the repository at this point in the history
  • Loading branch information
bollu committed Mar 31, 2024
1 parent 2e4112b commit 87f3895
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ KINDS=("noreuse" "reuse")

for i in {0..1}; do
echo "@@@ ${KINDS[i]} BUILD @@@"
curl -d "Started[${KINDS[i]}]. run:$EXPERIMENTDIR. machine:$(uname -a)." ntfy.sh/xISSztEV8EoOchM2
mkdir -p builds/
git clone --depth 1 [email protected]:opencompl/lean4.git --branch ${COMMITS[i]} $EXPERIMENTDIR/builds/${KINDS[i]}
mkdir -p $EXPERIMENTDIR/builds/${KINDS[i]}/build/release/
Expand All @@ -53,6 +54,6 @@ for i in {0..1}; do
make -j10 stage2
touch $EXPERIMENTDIR/$CSVNAME && echo "" > $EXPERIMENTDIR/$CSVNAME
$TIME -v make -j10 stage3 2>&1 | tee "$EXPERIMENTDIR/time-${KINDS[i]}-stage3.txt"
# cd stage3 && ctest -j32 --output-on-failure 2>&1 | tee "$EXPERIMENTDIR/ctest-${KINDS[i]}-stage3.txt" && cd ../
cd stage3 && ctest -E handleLocking -j32 --output-on-failure 2>&1 | tee "$EXPERIMENTDIR/ctest-${KINDS[i]}-stage3.txt" && cd ../
curl -d "Done[${KINDS[i]}]. run:$EXPERIMENTDIR. machine:$(uname -a)." ntfy.sh/xISSztEV8EoOchM2
done;

0 comments on commit 87f3895

Please sign in to comment.