grub/tests/grub_cmd_date.in
2013-04-14 17:19:04 +02:00

13 lines
250 B
Bash

#! /bin/bash
set -e
pdt="$(date -u +%s)"
dt=`echo date | @builddir@/grub-shell`
dtg="$(date -u -d "$dt" +%s)"
ndt="$(date -u +%s)"
if [ $pdt -le $dtg ] && [ $dtg -le $ndt ]; then
exit 0;
fi
echo "Date not in range: $pdt <= $dtg <= $ndt"
exit 1