blob: 61e5a054ed3397b357416f614b94ccbf53472482 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
echo 1..1
TEST=./rfc5280
if [ -e ./rfc5280.exe ]; then
TEST=./rfc5280.exe
fi
# map test failure to XFAIL and success to XPASS
$TEST || echo -n "not "
echo "ok # this system is unable to represent times past 2038"
|