new bash scripts

This commit is contained in:
clanmills
2020-04-19 08:05:01 +01:00
parent 904fa19d1c
commit 87b5d02572
3 changed files with 19 additions and 0 deletions
Executable
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/env bash
( source ./functions.source ; cd "$bin/.." ; make test )
# That's all Folks!
##
Executable
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/env bash
( source ./functions.source ; cd "$bin/.." ; make tests )
# That's all Folks!
##
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
# Test driver for exiv2.exe --verbose --version
( source ./functions.source ; $bin/unit_tests$exe )
# That's all Folks!
##