Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
Signed-off-by: Cole Miller <[email protected]>
  • Loading branch information
cole-miller committed Aug 27, 2024
1 parent d667cdd commit 29c4533
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions contrib/build-static.sh
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,9 @@ if [ ! -f "${BUILD_DIR}/dqlite/libdqlite.la" ]; then
./configure --disable-shared --enable-build-raft --prefix="${INSTALL_DIR}" \
CFLAGS="${CFLAGS} -I${INSTALL_DIR}/musl/include"

make -j unit-test integration-test \
raft-core-fuzzy-test \
raft-core-integration-test \
raft-core-unit-test \
raft-uv-integration-test \
raft-uv-unit-test
ls
make -j check || (cat test-suite.log && false)
make install
bins="unit-test integration-test raft-core-fuzzy-test raft-core-integration-test raft-core-unit-test raft-uv-integration-test raft-uv-unit-test"
make -j $bins
for bin in $bins; do ./$bin 2>&1 | tee -a test-suite.log || touch any-failed; done
test '!' -e any-failed
)
fi

0 comments on commit 29c4533

Please sign in to comment.