Archived
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
kll/tests/sanity.bash

25 lines
380 B
Bash
Raw Normal View History

#!/bin/bash
# Basic sanity check for kll compiler
# Currently runs both versions of the compiler
# Jacob Alexander 2016
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# Common functions
source ${SCRIPT_DIR}/common.bash
# Start in kll top-level directory
cd ${SCRIPT_DIR}/..
## Tests
cmd ./kll.py --version
cmd ./kll --version
## Tests complete
result
exit $?