diff options
author | Linnnus <[email protected]> | 2025-04-08 01:07:22 +0000 |
---|---|---|
committer | Linnnus <[email protected]> | 2025-04-08 01:07:34 +0000 |
commit | 8dd0c4f27aae02dd60f029db4cf03f9902cba26f (patch) | |
tree | 829c4bc0917f6615c55ae61d49932179c038c1e5 /scripts/unit_test.sh |
feat: Initial commit
At this point we have some allocation routines but no work on the actual
language has been done.
Diffstat (limited to 'scripts/unit_test.sh')
-rwxr-xr-x | scripts/unit_test.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/unit_test.sh b/scripts/unit_test.sh new file mode 100755 index 0000000..6369974 --- /dev/null +++ b/scripts/unit_test.sh @@ -0,0 +1,5 @@ +#!/bin/sh +set -e -u -o pipefail +mode="${1:-debug}" +scripts/build_$mode.sh +bin/$mode/unit || gdb bin/$mode/unit |