| 679 | } |
| 680 | |
| 681 | void print_test(const test & t) override { |
| 682 | std::vector<std::string> values = t.get_values(); |
| 683 | std::transform(values.begin(), values.end(), values.begin(), escape_csv); |
| 684 | fprintf(fout, "%s\n", join(values, ",").c_str()); |
| 685 | } |
| 686 | }; |
| 687 | |
| 688 | struct json_printer : public printer { |