Unit tests modified because of interface change for netlist comparer

This commit is contained in:
Matthias Koefferlein 2021-03-14 23:51:20 +01:00
parent 3845658319
commit fea594ff69
2 changed files with 14 additions and 12 deletions

View File

@ -159,9 +159,11 @@ static std::string net_id_to_s (const db::Net *net, const std::map<const db::Net
static void build_pin_index_map (const db::Circuit *c, std::map<const db::Pin *, unsigned int> &pin2index)
{
size_t pi = 0;
for (db::Circuit::const_pin_iterator p = c->begin_pins (); p != c->end_pins (); ++p, ++pi) {
pin2index.insert (std::make_pair (p.operator-> (), pi));
if (c) {
size_t pi = 0;
for (db::Circuit::const_pin_iterator p = c->begin_pins (); p != c->end_pins (); ++p, ++pi) {
pin2index.insert (std::make_pair (p.operator-> (), pi));
}
}
}

View File

@ -33,7 +33,7 @@ class NetlistCompareTestLogger < RBA::GenericNetlistCompareLogger
@texts << text
end
def device_class_mismatch(a, b)
def device_class_mismatch(a, b, msg)
out("device_class_mismatch " + dc2str(a) + " " + dc2str(b))
end
@ -41,15 +41,15 @@ class NetlistCompareTestLogger < RBA::GenericNetlistCompareLogger
out("begin_circuit " + circuit2str(a) + " " + circuit2str(b))
end
def end_circuit(a, b, matching)
def end_circuit(a, b, matching, msg)
out("end_circuit " + circuit2str(a) + " " + circuit2str(b) + " " + (matching ? "MATCH" : "NOMATCH"))
end
def circuit_skipped(a, b)
def circuit_skipped(a, b, msg)
out("circuit_skipped " + circuit2str(a) + " " + circuit2str(b))
end
def circuit_mismatch(a, b)
def circuit_mismatch(a, b, msg)
out("circuit_mismatch " + circuit2str(a) + " " + circuit2str(b))
end
@ -57,11 +57,11 @@ class NetlistCompareTestLogger < RBA::GenericNetlistCompareLogger
out("match_nets " + net2str(a) + " " + net2str(b))
end
def match_ambiguous_nets(a, b)
def match_ambiguous_nets(a, b, msg)
out("match_ambiguous_nets " + net2str(a) + " " + net2str(b))
end
def net_mismatch(a, b)
def net_mismatch(a, b, msg)
out("net_mismatch " + net2str(a) + " " + net2str(b))
end
@ -69,7 +69,7 @@ class NetlistCompareTestLogger < RBA::GenericNetlistCompareLogger
out("match_devices " + device2str(a) + " " + device2str(b))
end
def device_mismatch(a, b)
def device_mismatch(a, b, msg)
out("device_mismatch " + device2str(a) + " " + device2str(b))
end
@ -85,7 +85,7 @@ class NetlistCompareTestLogger < RBA::GenericNetlistCompareLogger
out("match_pins " + pin2str(a) + " " + pin2str(b))
end
def pin_mismatch(a, b)
def pin_mismatch(a, b, msg)
out("pin_mismatch " + pin2str(a) + " " + pin2str(b))
end
@ -93,7 +93,7 @@ class NetlistCompareTestLogger < RBA::GenericNetlistCompareLogger
out("match_subcircuits " + subcircuit2str(a) + " " + subcircuit2str(b))
end
def subcircuit_mismatch(a, b)
def subcircuit_mismatch(a, b, msg)
out("subcircuit_mismatch " + subcircuit2str(a) + " " + subcircuit2str(b))
end