Skip to content

Commit

Permalink
added top up to measure script
Browse files Browse the repository at this point in the history
  • Loading branch information
VladasZ committed Oct 18, 2023
1 parent 48ffa9c commit 7bd358c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/measure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
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

cargo test --package integration-tests --lib measure::stake::measure_stake_total_test -- --ignored --exact
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

0 comments on commit 7bd358c

Please sign in to comment.