]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/runtime/cases: make date.DateTest.test_date more reliable
authorAlexandre Belloni <alexandre.belloni@bootlin.com>
Thu, 12 Aug 2021 21:46:38 +0000 (23:46 +0200)
committerAnuj Mittal <anuj.mittal@intel.com>
Mon, 23 Aug 2021 07:46:51 +0000 (15:46 +0800)
The test uses the broken out time and can only handle about 59s of delay,
use a UNIX timestamp to allow for up to a 300s delay.

[YOCTO #14463]

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b705e9373acd4119da75af4eb96ec92cc964aa86)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
meta/lib/oeqa/runtime/cases/date.py

index e14322911d6bc13eb96bec56d3765e4ef8172270..bd6537400e2862782e2c3758509cd76d51d345e3 100644 (file)
@@ -28,14 +28,13 @@ class DateTest(OERuntimeTestCase):
         self.assertEqual(status, 0, msg=msg)
         oldDate = output
 
-        sampleDate = '"2016-08-09 10:00:00"'
-        (status, output) = self.target.run("date -s %s" % sampleDate)
+        sampleTimestamp = 1488800000
+        (status, output) = self.target.run("date -s @%d" % sampleTimestamp)
         self.assertEqual(status, 0, msg='Date set failed, output: %s' % output)
 
-        (status, output) = self.target.run("date -R")
-        p = re.match('Tue, 09 Aug 2016 10:00:.. \+0000', output)
+        (status, output) = self.target.run('date +"%s"')
         msg = 'The date was not set correctly, output: %s' % output
-        self.assertTrue(p, msg=msg)
+        self.assertTrue(int(output) - sampleTimestamp < 300, msg=msg)
 
         (status, output) = self.target.run('date -s "%s"' % oldDate)
         msg = 'Failed to reset date, output: %s' % output