From f7ac80c63dbf19476848287143a4351b5864d719 Mon Sep 17 00:00:00 2001 From: Yanis Srairi Date: Sun, 10 May 2026 09:40:33 +0200 Subject: [PATCH 1/2] [tests] run.bash: fix runANN typo Line 44 was launching tests in runff directory instead of runANN (line 44) --- tests/run.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run.bash b/tests/run.bash index af839119..bfad7ac8 100755 --- a/tests/run.bash +++ b/tests/run.bash @@ -41,7 +41,7 @@ fi # Run additional tests (e.g., runff and runANN) run_test "runff" "runff" -run_test "runANN" "runff" # adjust the directory if runANN is in a different location +run_test "runANN" "runANN" # Final summary echo "--------------------------" From e57edba53b206418ca93cace8e8d065ae7fa14fe Mon Sep 17 00:00:00 2001 From: Yanis Srairi Date: Sun, 10 May 2026 09:42:28 +0200 Subject: [PATCH 2/2] [tests] run.bash: remove unreachable ./clean.bash The if/else above (line 54-63) always exits, so ./clean.bash is never reached. --- tests/run.bash | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/run.bash b/tests/run.bash index bfad7ac8..1647e59b 100755 --- a/tests/run.bash +++ b/tests/run.bash @@ -61,4 +61,3 @@ else echo "All tests passed." exit 0 fi -./clean.bash