Lines Matching +full:platform +full:- +full:level

6 https://robot-framework.readthedocs.io/en/stable/autodoc/robot.result.html
33 info = " For more information: " + this_program + " -h"
45 " https://robot-framework.readthedocs.io/en/stable/autodoc/robot.result.html"
48 prefix_chars="-+",
52 "--source",
53 "-s",
61 "--dest",
62 "-d",
70 "--version_id",
73 ' e.g. "v2.1-215-g6e7eacb". This parameter is required.'
78 "--platform",
80 "OpenBMC platform which was used during test, e.g."
86 "--level",
88 "OpenBMC release level which was used during test, e.g."
94 "--test_phase",
103 "--subsystem",
112 "--processor",
173 platform, argument
174 level, argument
179 Parse the robot-generated output.xml file and extract various test
184 xml_file_path The path to a Robot-generated output.xml
190 (e.g. "v2.1-215-g6e7eacb").
191 platform Platform of the openbmc system.
192 level Release level of the OpenBMC system
216 print("--------------------------------------")
239 print("Total Non-Critical Test Failed:\t %d" % total_non_critical_failed)
240 print("Total Non-Critical Test Passed:\t %d" % total_non_critical_passed)
243 print("--------------------------------------")
267 if level:
268 l_pse_rel = level
280 if version_id and platform:
282 l_platform_type = platform
284 print("BMC Platform:%s" % platform)
291 # Driver version id and platform are mandatorily required for CSV file
323 l_timestamp = datetime.datetime.utcnow().strftime("%Y-%m-%d-%H-%M-%S")
324 # Example: 2017-02-20-08-47-22_Witherspoon.csv
344 # Format datetime from robot output.xml to "%Y-%m-%d-%H-%M-%S"
386 Convert the time from %Y%m%d %H:%M:%S.%f format to %Y-%m-%d-%H-%M-%S format
394 The date returned will be in the following format: %Y-%m-%d-%H-%M-%S
399 # 2017-02-06-05-05-19
400 l_str = l_str.strftime("%Y-%m-%d-%H-%M-%S")
407 The list returned will be in the following order: [driver,platform]
416 with open(xml_file_path, "rt", encoding="utf-8") as output:
420 # /etc/os-release output is logged in the XML as msg
421 # Example: ${output} = VERSION_ID="v1.99.2-71-gbc49f79"
423 # Get BMC version (e.g. v1.99.1-96-g2a46570)
424 bmc_version_id = str(node.text.split("VERSION_ID=")[1])[1:-1]
426 # Platform is logged in the XML as msg.
449 source, dest, version_id, platform, level, test_phase, processor