Blame test/path-test.sh

Packit Service 21b5d1
#!/bin/bash
Packit Service 21b5d1
# Mini test-driver for path utility functions
Packit Service 21b5d1
source ./functions.source
Packit Service 21b5d1
Packit Service 21b5d1
(   cd "$testdir"
Packit Service 21b5d1
Packit Service 21b5d1
    if [ $(existsTest path-test) == 1 ] ; then
Packit Service 21b5d1
        copyTestFile      path-test.txt
Packit Service 21b5d1
        runTest path-test path-test.txt
Packit Service 21b5d1
    else
Packit Service 21b5d1
        echo "$0: path-test executable not found. Skipping path tests."
Packit Service 21b5d1
    fi
Packit Service 21b5d1
)
Packit Service 21b5d1
Packit Service 21b5d1
# That's all Folks!
Packit Service 21b5d1
##