blob: 94fbebfc025a3781140b079300d4439ecf2adc9b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
echo 1..1
TEST=./asn1time
if [ -e ./asn1time.exe ]; then
TEST=./asn1time.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"
|