From: Clifford Wolf Date: Mon, 19 Sep 2016 18:43:43 +0000 (+0200) Subject: Cosmetic fix in test_autotb.cc X-Git-Tag: yosys-0.7~54 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e788ad48855cf02ba426abef83077b7f4ec80fa3;p=yosys.git Cosmetic fix in test_autotb.cc --- diff --git a/passes/tests/test_autotb.cc b/passes/tests/test_autotb.cc index a0b47df8c..cb31056f4 100644 --- a/passes/tests/test_autotb.cc +++ b/passes/tests/test_autotb.cc @@ -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());