From 7e684b7f3023e4825df177ce54dbc429250da7b1 Mon Sep 17 00:00:00 2001 From: Alexey Fedoseev Date: Sat, 27 Apr 2024 11:49:28 +0300 Subject: [PATCH] correct num regexp --- run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.sh b/run-tests.sh index 4a9afc5..6cfe800 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -13,7 +13,7 @@ echo "tests ready!" echo for t in $(ls tests/*.test); do - num=$(echo $t | grep -Poe '\d+') + num=$(echo $t | grep -Poe '\d\d') echo -n "$num $t... " if [ -f "$t-input.graphml" -o -f "tests/$num-output.txt" ] then