From 105dfa3756d1cb6095bacf1e72d9df9fdd48c201 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Tue, 17 Jun 2025 12:16:37 -0700 Subject: [PATCH] Add new score CLI option to test script. --- test/script.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/script.sh b/test/script.sh index dd70adf..04121a9 100755 --- a/test/script.sh +++ b/test/script.sh @@ -12,10 +12,10 @@ export NANO_POW_EFFORT=4 export NANO_POW_PORT=5041 printf '\nTest CLI benchmark\n' -"$SCRIPT_DIR"/../dist/bin/nano-pow.sh --benchmark 10 --effort 4 --debug +"$SCRIPT_DIR"/../dist/bin/nano-pow.sh --debug --effort 4 --benchmark 10 --score 10 printf '\nTest CLI piped input\n' -cat "$SCRIPT_DIR"/blockhashes.txt | "$SCRIPT_DIR"/../dist/bin/nano-pow.sh --effort 4 --debug +cat "$SCRIPT_DIR"/blockhashes.txt | "$SCRIPT_DIR"/../dist/bin/nano-pow.sh --debug --effort 4 printf '\nLaunching test server\n' "$SCRIPT_DIR"/../dist/bin/nano-pow.sh --server -- 2.47.3