mirror of https://github.com/YosysHQ/yosys.git
Cosmetic fix in test_autotb.cc
This commit is contained in:
parent
2e244c2d8e
commit
e788ad4885
|
@ -237,7 +237,7 @@ static void autotest(std::ostream &f, RTLIL::Design *design, int num_iter, int s
|
|||
header2 += ", \"#\"";
|
||||
}
|
||||
f << stringf(" }, {");
|
||||
header2 += " ";
|
||||
header2 += ", \" \"";
|
||||
if (signal_clk.size()) {
|
||||
for (auto it = signal_clk.begin(); it != signal_clk.end(); it++) {
|
||||
f << stringf("%s %s", it == signal_clk.begin() ? "" : ",", it->first.c_str());
|
||||
|
@ -259,7 +259,7 @@ static void autotest(std::ostream &f, RTLIL::Design *design, int num_iter, int s
|
|||
header2 += ", \"#\"";
|
||||
}
|
||||
f << stringf(" }, {");
|
||||
header2 += " ";
|
||||
header2 += ", \" \"";
|
||||
if (signal_out.size()) {
|
||||
for (auto it = signal_out.begin(); it != signal_out.end(); it++) {
|
||||
f << stringf("%s %s", it == signal_out.begin() ? "" : ",", it->first.c_str());
|
||||
|
|
Loading…
Reference in New Issue