mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 09:21:04 +00:00
e4b6b8cd79
Related to https://github.com/paritytech/polkadot-sdk/issues/3400 Extracting small parts of https://github.com/paritytech/polkadot-sdk/pull/3429 into separate PR: - Add support for BHP local and BHK local - Increase the timeout for the bridge zomienet tests
24 lines
687 B
Bash
Executable File
24 lines
687 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
source "${BASH_SOURCE%/*}/../../utils/common.sh"
|
|
source "${BASH_SOURCE%/*}/../../utils/zombienet.sh"
|
|
|
|
${BASH_SOURCE%/*}/../../environments/rococo-westend/spawn.sh --init --start-relayer &
|
|
env_pid=$!
|
|
|
|
ensure_process_file $env_pid $TEST_DIR/rococo.env 600
|
|
rococo_dir=`cat $TEST_DIR/rococo.env`
|
|
echo
|
|
|
|
ensure_process_file $env_pid $TEST_DIR/westend.env 300
|
|
westend_dir=`cat $TEST_DIR/westend.env`
|
|
echo
|
|
|
|
run_zndsl ${BASH_SOURCE%/*}/roc-reaches-westend.zndsl $westend_dir
|
|
run_zndsl ${BASH_SOURCE%/*}/wnd-reaches-rococo.zndsl $rococo_dir
|
|
|
|
run_zndsl ${BASH_SOURCE%/*}/wroc-reaches-rococo.zndsl $rococo_dir
|
|
run_zndsl ${BASH_SOURCE%/*}/wwnd-reaches-westend.zndsl $westend_dir
|