[dv regr tool] Updates to support LSF
- Update to move all tool sources to scratch area before build/run
- Added necessary build opts that are required for running VCS on Google
machines
Signed-off-by: Srikrishna Iyer <sriyer@google.com>
diff --git a/util/dvsim.py b/util/dvsim.py
index f277c26..d60eb87 100755
--- a/util/dvsim.py
+++ b/util/dvsim.py
@@ -362,6 +362,14 @@
metavar="N",
help="""Run only upto a fixed number of builds/tests at a time.""")
+ parser.add_argument(
+ "--local",
+ default=False,
+ action='store_true',
+ help=
+ """Deploy builds and runs on the local workstation instead of the compute farm.
+ Support for this has not been added yet.""")
+
args = parser.parse_args()
if args.version:
diff --git a/util/dvsim/Deploy.py b/util/dvsim/Deploy.py
index 072a3d4..d57ea4f 100644
--- a/util/dvsim/Deploy.py
+++ b/util/dvsim/Deploy.py
@@ -388,7 +388,12 @@
self.pass_patterns = []
self.fail_patterns = []
- self.mandatory_cmd_attrs = { # RAL gen
+ self.mandatory_cmd_attrs = {
+ # tool srcs
+ "tool_srcs": False,
+ "tool_dir": False,
+
+ # RAL gen
"skip_ral": False,
"gen_ral_pkg_cmd": False,
"gen_ral_pkg_dir": False,
diff --git a/util/dvsim/SimCfg.py b/util/dvsim/SimCfg.py
index 6001c43..8849436 100644
--- a/util/dvsim/SimCfg.py
+++ b/util/dvsim/SimCfg.py
@@ -409,11 +409,16 @@
testplan = testplan.replace("/dv", "/doc/dv_plan/#testplan")
results_str += "### [Testplan](" + testplan + ")\n\n"
- # TODO: check if testplan is not null?
- results_str += self.testplan.results_table(
- regr_results=regr_results,
- map_full_testplan=self.map_full_testplan)
- results_str += "\n"
+ if regr_results == []:
+ results_str += "No results to display.\n"
+
+ else:
+ # TODO: check if testplan is not null?
+ # Map regr results to the testplan entries.
+ results_str += self.testplan.results_table(
+ regr_results=regr_results,
+ map_full_testplan=self.map_full_testplan)
+ results_str += "\n"
# Append failures for triage
self.results_md = results_str + fail_msgs