aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kapp Lindquist <alind24@student.sdu.dk>2025-09-29 22:12:50 +0200
committermithe24 <mithe24@student.sdu.dk>2025-10-29 13:49:57 +0100
commit0e18088e24992f1f8b848472a510a92eb65094ea (patch)
tree5ca46136a5f0b3772d0e67a62cc45bbb7d2de2ec
parent4ab579b1df340eb856ccec5eded06f98906f6a0d (diff)
downloadsorter-0e18088e24992f1f8b848472a510a92eb65094ea.tar.gz
sorter-0e18088e24992f1f8b848472a510a92eb65094ea.zip
test(run.sh) simple script for faster testing
Diffstat (limited to '')
-rwxr-xr-xsrc/run.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/run.sh b/src/run.sh
new file mode 100755
index 0000000..8cf836f
--- /dev/null
+++ b/src/run.sh
@@ -0,0 +1,5 @@
+as test.s -o test.o -g
+as sorter.s -o sorter.o -g
+as insertionsort.s -o insertionsort.o -g
+ld insertionsort.o sorter.o test.o -o test -g
+./test