mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-20 13:56:45 +00:00

* Unfinished code. * Update the testnet version to testnet-5. (#1683) * Generalize stability-tests/docker/Dockerfile. (#1685) * Committed for rebasing. * Adds stability-test many-tips, which tests kaspad handling with many tips in the DAG. * Delete manytips_test.go. * Add timeout to the test and create only one RPC client. * Place the spawn before the for loop and remove a redundant condition. Co-authored-by: tal <tal@daglabs.com> Co-authored-by: stasatdaglabs <39559713+stasatdaglabs@users.noreply.github.com>
14 lines
231 B
Bash
Executable File
14 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
many-tips --devnet -n=1000 --profile=7000
|
|
TEST_EXIT_CODE=$?
|
|
|
|
echo "Exit code: $TEST_EXIT_CODE"
|
|
|
|
if [ $TEST_EXIT_CODE -eq 0 ]; then
|
|
echo "many-tips test: PASSED"
|
|
exit 0
|
|
fi
|
|
echo "many-tips test: FAILED"
|
|
exit 1
|