2c168b7127
Having the same name as the executable confuses the driver, and it runs the wrong thing.
11 lines
216 B
Bash
Executable File
11 lines
216 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
echo 1..2
|
|
TEST=./rfc5280time
|
|
if [ -e ./rfc5280time.exe ]; then
|
|
TEST=./rfc5280time.exe
|
|
fi
|
|
$TEST
|
|
echo "ok 1"
|
|
echo "ok 2 - rfc5280time_64-bit # SKIP this system is unable to represent times past 2038"
|