mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-20 13:56:45 +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
13 lines
252 B
Bash
Executable File
13 lines
252 B
Bash
Executable File
#!/bin/bash
|
|
kaspadsanity --command-list-file ./commands-list --profile=7000
|
|
TEST_EXIT_CODE=$?
|
|
|
|
echo "Exit code: $TEST_EXIT_CODE"
|
|
|
|
if [ $TEST_EXIT_CODE -eq 0 ]; then
|
|
echo "kaspadsanity test: PASSED"
|
|
exit 0
|
|
fi
|
|
echo "kaspadsanity test: FAILED"
|
|
exit 1
|