authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-06-29 18:39:19-04:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2018-06-29 18:39:19-04:00
loga3ab4325fd05807c4a5b70aed3b515ce7ccd753f
tree43d1cf7b4ba7d0215f5ddb7f943dcfc50f6a9434
parentf1c56f7f225f2f3054abd8c9e6330a0f1e20b2a6
parent03f66825d6b6922da250cdb99c2996455541e0f9
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

Merge pull request #1175 from bnoordhuis/zig-test-emit-switch

support --emit in 'test' command

1 files changed, 2 insertions(+), 0 deletions(-)

src/main.cpp+2
......@@ -924,6 +924,8 @@ int main(int argc, char **argv) {
924924 codegen_print_timing_report(g, stdout);
925925 return EXIT_SUCCESS;
926926 } else if (cmd == CmdTest) {
927 codegen_set_emit_file_type(g, emit_file_type);
928
927929 ZigTarget native;
928930 get_native_target(&native);
929931