Zarchiwizowane
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
kll/tests/common.bash
Jacob Alexander d7b7752dc1 Updating Lexer to KLL 0.5c
- Added syntax check unit-test
- Added none emitter (for syntax validation check)
- Added KLL 0.5c example expressions
- Added Travis-CI test for syntax check
- Cleaned up README
2016-10-09 20:02:31 -07:00

64 wiersze
1.1 KiB
Bash

#!/bin/bash
# Common functions for running kll unit tests
# Jacob Alexander 2016
PASSED=0
FAILED=0
# Results
result() {
echo "--- Results ---"
echo "${PASSED}/$((PASSED+FAILED))"
if (( FAILED == 0 )); then
return 0
else
return 1
fi
}
# Runs a command, increments test passed/failed
# Args: Command
cmd() {
# Run command
echo "CMD: $@"
$@
local RET=$?
# Check command
if [[ ${RET} -ne 0 ]]; then
((FAILED++))
else
((PASSED++))
fi
return ${RET}
}
# Run a command multiple times using an array of values
# Arg #1: Base command
# Arg #2: Static arguments
# Arg #3: Static arguments to call when command fails (debug info)
# Arg #4+: Array of variations to swap into the command
cmds() {
local BASE=${1}
shift
local STATIC=${1}
shift
local FAIL_STATIC=${1}
shift
local VARS=${@} # Rest of arguments
# Base command
echo "BASE CMD: ${BASE} ${STATIC}"
# Iterate over variations
for var in ${VARS[@]}; do
cmd ${BASE} ${STATIC} ${var}
if [[ $? -ne 0 ]]; then
echo "CMD FAILED - RUNNING DEBUG ARGS - ${BASE} ${FAIL_STATIC} ${var}"
${BASE} ${FAIL_STATIC} ${var}
fi
done
}