You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
344 B
Bash
16 lines
344 B
Bash
#!/bin/bash
|
|
# Mini test-driver for path utility functions
|
|
source ./functions.source
|
|
|
|
( cd "$testdir"
|
|
|
|
if [ $(existsTest path-test) == 1 ] ; then
|
|
copyTestFile path-test.txt
|
|
runTest path-test path-test.txt
|
|
else
|
|
echo "$0: path-test executable not found. Skipping path tests."
|
|
fi
|
|
)
|
|
|
|
# That's all Folks!
|
|
## |