diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2015-12-01 01:06:10 -0700 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2015-12-01 01:06:10 -0700 |
| commit | 29f24e3c5066e7cb28876d40a811a4a64f9d4b33 (patch) | |
| tree | 01d27aa3253da35af6fe8a5d3f69cffab08773bd /test/run_tests.cpp | |
| parent | 257cf09472ce5f4a51bf39808e119717fa0e4280 (diff) | |
| download | zig-29f24e3c5066e7cb28876d40a811a4a64f9d4b33.tar.gz zig-29f24e3c5066e7cb28876d40a811a4a64f9d4b33.zip | |
add --color cli arg to override tty detection
Diffstat (limited to 'test/run_tests.cpp')
| -rw-r--r-- | test/run_tests.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/run_tests.cpp b/test/run_tests.cpp index 34a1668675..69a99590ce 100644 --- a/test/run_tests.cpp +++ b/test/run_tests.cpp @@ -48,6 +48,8 @@ static void add_simple_case(const char *case_name, const char *source, const cha test_case->compiler_args.append("--release"); test_case->compiler_args.append("--strip"); test_case->compiler_args.append("--verbose"); + test_case->compiler_args.append("--color"); + test_case->compiler_args.append("on"); test_cases.append(test_case); } |
