mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* Add stability-tests * Fix requires * Fix golint errors * Update README.md * Remove payloadHash from everywhere * don't run vet on kaspad in stability-tests/install_and_test
14 lines
237 B
Bash
Executable File
14 lines
237 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
simple-sync --simnet -n=1000 --profile=7000
|
|
TEST_EXIT_CODE=$?
|
|
|
|
echo "Exit code: $TEST_EXIT_CODE"
|
|
|
|
if [ $TEST_EXIT_CODE -eq 0 ]; then
|
|
echo "simple-sync test: PASSED"
|
|
exit 0
|
|
fi
|
|
echo "simple-sync test: FAILED"
|
|
exit 1
|