[dts] [PATCH V1 1/1] tests/vm_pw_mgmt_policy: fix string format issue

yufengmx yufengx.mo at intel.com
Fri May 29 11:09:37 CEST 2020


fix string format issue.

Signed-off-by: yufengmx <yufengx.mo at intel.com>
---
 tests/TestSuite_vm_pw_mgmt_policy.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/TestSuite_vm_pw_mgmt_policy.py b/tests/TestSuite_vm_pw_mgmt_policy.py
index 8da21b6..00c7304 100644
--- a/tests/TestSuite_vm_pw_mgmt_policy.py
+++ b/tests/TestSuite_vm_pw_mgmt_policy.py
@@ -473,7 +473,7 @@ class TestVmPwMgmtPolicy(TestCase):
         date_tool = "date"
         cmd = ';'.join([
             "{0}",
-            "{0} -s '{1}'",
+            "{0} -s \'{1}\'",
             "hwclock -w"]).format(date_tool, timestamp)
         self.d_a_con([cmd, '# ', 20])
         cmd = "{0} '+%H:00'".format(date_tool)
@@ -494,11 +494,11 @@ class TestVmPwMgmtPolicy(TestCase):
         cur_time = datetime.now()
         interval = (cur_time - pre_time).seconds
         timestamp = ori_sys_time + timedelta(seconds=interval)
-        FMT = '%Y-%m-%d %H:%M:%S'
+        FMT = '\'%Y-%m-%d %H:%M:%S\''
         real_time = timestamp.strftime(FMT)
         cmd = ';'.join([
             "{0}",
-            "{0} -s '{1}'",
+            "{0} -s \'{1}\'",
             "hwclock -w",
             "{0}", ]).format(date_tool, real_time)
         self.d_a_con([cmd, '# ', 20])
-- 
2.21.0



More information about the dts mailing list