mirror of
https://github.com/libressl/portable.git
synced 2026-01-17 21:51:17 +01:00
11 lines
225 B
Bash
Executable File
11 lines
225 B
Bash
Executable File
#!/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"
|