osrm-backend/test/assert.sh
Dane Springmeyer a34a885031 Squashed 'third_party/mason/' content from commit 1b3085e
git-subtree-dir: third_party/mason
git-subtree-split: 1b3085e812b08ef092ba43945e3ab9f802632280
2016-10-28 12:21:21 -07:00

11 lines
175 B
Bash
Executable File

#!/usr/bin/env bash
function assertEqual() {
if [ "$1" == "$2" ]; then
echo "ok - $1 ($3)"
else
echo "not ok - $1 != $2 ($3)"
CODE=1
fi
}