From 7bd358c2adae12a5423c4198188ba79eb3339c7d Mon Sep 17 00:00:00 2001 From: Vladas Zakrevskis <146100@gmail.com> Date: Wed, 18 Oct 2023 15:05:44 +0300 Subject: [PATCH] added top up to measure script --- scripts/measure.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/measure.sh b/scripts/measure.sh index 024b2a33..a83cbfeb 100755 --- a/scripts/measure.sh +++ b/scripts/measure.sh @@ -2,7 +2,7 @@ set -eox pipefail if [ -z ${MEASURE_JARS_COUNT+x} ]; then echo "MEASURE_JARS_COUNT is unset"; else echo "MEASURE_JARS_COUNT is set to '$MEASURE_JARS_COUNT'"; fi -if [ -z ${MEASURE_JARS_MULTIPLIER+x} ]; then echo "MEASURE_JARS_MULTIPLIER is unset"; else echo "MEASURE_JARS_MULTIPLIER is set to 'MEASURE_JARS_MULTIPLIER'"; fi +if [ -z ${MEASURE_JARS_MULTIPLIER+x} ]; then echo "MEASURE_JARS_MULTIPLIER is unset"; else echo "MEASURE_JARS_MULTIPLIER is set to '$MEASURE_JARS_MULTIPLIER'"; fi rm -f measured.txt @@ -10,3 +10,4 @@ cargo test --package integration-tests --lib measure::stake::measure_stake_total cargo test --package integration-tests --lib measure::restake::measure_restake_total_test -- --ignored --exact cargo test --package integration-tests --lib measure::claim::measure_claim_total_test -- --ignored --exact cargo test --package integration-tests --lib measure::withdraw::measure_withdraw_total_test -- --ignored --exact +cargo test --package integration-tests --lib measure::top_up::measure_top_up_test -- --ignored --exact