aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndreas Kapp Lindquist <andkaplin05@gmail.com>2025-10-28 11:35:47 +0100
committermithe24 <mithe24@student.sdu.dk>2025-10-29 13:49:57 +0100
commit6b37376a66ea5caf283fb2476206f6e4f99dd28e (patch)
treee66af7268f767d86e949fe55cbee0dee2681b830 /test
parent970dc680fa7a1be52a258ba12836815099267393 (diff)
downloadsorter-6b37376a66ea5caf283fb2476206f6e4f99dd28e.tar.gz
sorter-6b37376a66ea5caf283fb2476206f6e4f99dd28e.zip
test(test.sh): test now only runs for insertion sort
Diffstat (limited to 'test')
-rwxr-xr-xtest/test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.sh b/test/test.sh
index c0dbe2b..e8eac6d 100755
--- a/test/test.sh
+++ b/test/test.sh
@@ -3,7 +3,7 @@
DATA_DIR="data"
SRC_DIR="../src"
-SORTER="$SRC_DIR/sorter"
+SORTER="$SRC_DIR/sorter -a isort"
REF="sort -s -n -k 2" # '-s' for using a stable algo
total=0