Revision a5d0895e2acc0330d0e014753431730b510f0867 authored by APipe Tester on 07 October 2015, 12:18:25 UTC, committed by APipe Tester on 07 October 2015, 12:18:25 UTC
1 parent 48d0801
Raw File
genome-test
#!/bin/bash

# delegate to local version if it is found
if git rev-parse --is-inside-work-tree 1> /dev/null 2> /dev/null
then
    WORK_TREE="$(git rev-parse --show-toplevel)"
    BIN="$(basename "$0")"
    BIN="${WORK_TREE}/bin/${BIN}"
    if test "$0" != "$BIN" && test -x "$BIN"
    then
        exec "$BIN" "$@"
    fi
fi

if test $# -gt 0
then
    ARGS=("$@")
else
    ARGS=(--lsf --git)
fi

exec genome-test-env test-tracker prove "${ARGS[@]}"
back to top