2017-06-16 19:31:32 +00:00
|
|
|
From b43b8cacc813c2c15347de1e35cc88d9aa912d22 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Vladimir Serbinenko <phcoder@gmail.com>
|
|
|
|
Date: Mon, 23 Jan 2017 14:31:36 +0300
|
2018-05-10 15:48:20 +00:00
|
|
|
Subject: [PATCH 004/238] support busybox date.
|
2017-06-16 19:31:32 +00:00
|
|
|
|
|
|
|
Busybox date doesn't understand weekdays in -d input,
|
|
|
|
so strip them beforehand.
|
|
|
|
---
|
|
|
|
tests/grub_cmd_date.in | 2 +-
|
|
|
|
tests/grub_cmd_sleep.in | 4 ++--
|
|
|
|
2 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/tests/grub_cmd_date.in b/tests/grub_cmd_date.in
|
2018-02-27 18:56:41 +00:00
|
|
|
index 0d8162e98b0..60f039ebc8b 100644
|
2017-06-16 19:31:32 +00:00
|
|
|
--- a/tests/grub_cmd_date.in
|
|
|
|
+++ b/tests/grub_cmd_date.in
|
|
|
|
@@ -9,7 +9,7 @@ if [ "${grub_modinfo_target_cpu}-${grub_modinfo_platform}" = sparc64-ieee1275 ];
|
|
|
|
fi
|
|
|
|
|
|
|
|
pdt="$(date -u +%s)"
|
|
|
|
-dt=`echo date | @builddir@/grub-shell`
|
|
|
|
+dt=`echo date | @builddir@/grub-shell | sed 's, [A-Z][a-z]*$,,'`
|
|
|
|
dtg="$(date -u -d "$dt" +%s)"
|
|
|
|
ndt="$(date -u +%s)"
|
|
|
|
|
|
|
|
diff --git a/tests/grub_cmd_sleep.in b/tests/grub_cmd_sleep.in
|
2018-02-27 18:56:41 +00:00
|
|
|
index 05b8f6b73fa..ac51d42098e 100644
|
2017-06-16 19:31:32 +00:00
|
|
|
--- a/tests/grub_cmd_sleep.in
|
|
|
|
+++ b/tests/grub_cmd_sleep.in
|
|
|
|
@@ -11,8 +11,8 @@ fi
|
|
|
|
# Compare RTC with interval timer.
|
|
|
|
# Not 100% proper but should check that timer is running ok
|
|
|
|
dt=`echo 'date; sleep 10; date' | @builddir@/grub-shell`
|
|
|
|
-dt1="$(date -u -d "$(echo "$dt" | head -n 1)" +%s)"
|
|
|
|
-dt2="$(date -u -d "$(echo "$dt" | tail -n 1)" +%s)"
|
|
|
|
+dt1="$(date -u -d "$(echo "$dt" | head -n 1 | sed 's, [A-Z][a-z]*$,,')" +%s)"
|
|
|
|
+dt2="$(date -u -d "$(echo "$dt" | tail -n 1 | sed 's, [A-Z][a-z]*$,,')" +%s)"
|
|
|
|
|
|
|
|
# Ignore QEMU bug
|
|
|
|
if [ "${grub_modinfo_target_cpu}" = arm ] && [ $((dt2 - dt1)) -ge 15 ] && [ $((dt2 - dt1)) -le 17 ]; then
|
|
|
|
--
|
2018-05-10 15:48:20 +00:00
|
|
|
2.17.0
|
2017-06-16 19:31:32 +00:00
|
|
|
|