[dv] remove return value from the compare() step (#732)

Signed-off-by: Udi <udij@google.com>
This commit is contained in:
udinator 2020-03-25 15:01:16 -07:00 committed by GitHub
parent b897300cbd
commit 8aae0ba31a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -556,10 +556,9 @@ def main():
rtl_sim(sim_cmd, matched_list, seed, args.sim_opts,
output_dir, bin_dir, args.lsf_cmd, check_return_code)
# Compare RTL & ISS simulation result.;
# Compare RTL & ISS simulation result.
if steps['compare']:
if not compare(matched_list, args.iss, args.o):
return RET_FAIL
compare(matched_list, args.iss, args.o)
# Generate merged coverage directory and load it into appropriate GUI
if steps['cov']: