aboutsummaryrefslogtreecommitdiff
path: root/test/run_tests.cpp
diff options
context:
space:
mode:
authorJosh Wolfe <thejoshwolfe@gmail.com>2015-11-30 22:12:21 -0700
committerJosh Wolfe <thejoshwolfe@gmail.com>2015-11-30 22:12:21 -0700
commit00f4c05784c05552e1e379b98c09161c936cfb31 (patch)
tree5b2234cae585c5ac3a2cb23503908b0a6e2a27e3 /test/run_tests.cpp
parentabbc3957019c3a12dacd54869ff18b91c3f07699 (diff)
parent55b8472374eede496b59396dbe253b05b16063e1 (diff)
downloadzig-00f4c05784c05552e1e379b98c09161c936cfb31.tar.gz
zig-00f4c05784c05552e1e379b98c09161c936cfb31.zip
merge conflicts
Diffstat (limited to 'test/run_tests.cpp')
-rw-r--r--test/run_tests.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/run_tests.cpp b/test/run_tests.cpp
index 6e6818ed62..b54f0bd4c8 100644
--- a/test/run_tests.cpp
+++ b/test/run_tests.cpp
@@ -47,6 +47,7 @@ static void add_simple_case(const char *case_name, const char *source, const cha
test_case->compiler_args.append(tmp_exe_path);
test_case->compiler_args.append("--release");
test_case->compiler_args.append("--strip");
+ test_case->compiler_args.append("--verbose");
test_cases.append(test_case);
}
@@ -70,6 +71,7 @@ static void add_compile_fail_case(const char *case_name, const char *source, int
test_case->compiler_args.append(tmp_exe_path);
test_case->compiler_args.append("--release");
test_case->compiler_args.append("--strip");
+ test_case->compiler_args.append("--verbose");
test_cases.append(test_case);