commit | 0441f325944f130ba98c1ce43aff26f9443ad802 | [log] [tgz] |
---|---|---|
author | Rupert Swarbrick <rswarbrick@lowrisc.org> | Fri Jun 05 12:10:52 2020 +0100 |
committer | weicaiyang <49293026+weicaiyang@users.noreply.github.com> | Fri Jun 05 11:08:21 2020 -0700 |
tree | 0b3efe05e6e2735953b0c512be61d3b8c1d96190 | |
parent | 2f2330e6eaf57f5df29de1498bd4e962bf9cead9 [diff] |
[dvsim] Fix error detection logic in Deploy.py The code in set_status searches through the log for error messages. If it finds one, it adds it to self.fail_msg. If it doesn't find an error message, the code is supposed to check the process return code. If that is nonzero, it considers the job to have failed and adds the end of the log to the fail message. Unfortunately the "did I see an error message" logic was wrong, because it assumed self.fail_msg would be empty before running set_status. This isn't true for CompileSim, at any rate, because the constructor adds a header. This patch corrects the logic by adding an explicit local "seen_fail_pattern" variable. Signed-off-by: Rupert Swarbrick <rswarbrick@lowrisc.org>
OpenTitan is an open source silicon Root of Trust (RoT) project. OpenTitan will make the silicon RoT design and implementation more transparent, trustworthy, and secure for enterprises, platform providers, and chip manufacturers. OpenTitan is administered by lowRISC CIC as a collaborative project to produce high quality, open IP for instantiation as a full-featured product. See the OpenTitan site and OpenTitan docs for more information about the project.
This repository contains hardware, software and utilities written as part of the OpenTitan project. It is structured as monolithic repository, or “monorepo”, where all components live in one repository. It exists to enable collaboration across partners participating in the OpenTitan project.
The project contains comprehensive documentation of all IPs and tools. You can access it online at docs.opentitan.org.
Have a look at CONTRIBUTING for guidelines on how to contribute code to this repository.
Unless otherwise noted, everything in this repository is covered by the Apache License, Version 2.0 (see LICENSE for full text).