From 90565a5109116f0c689215d28ea14d3f4d046c81 Mon Sep 17 00:00:00 2001 From: Josh Wolfe Date: Thu, 3 Dec 2015 12:25:27 -0700 Subject: [PATCH] correkt spelling error --- test/run_tests.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/run_tests.cpp b/test/run_tests.cpp index 77fbb0c5e9..7afc761a3f 100644 --- a/test/run_tests.cpp +++ b/test/run_tests.cpp @@ -406,7 +406,7 @@ fn f() { } -static void print_compiler_invokation(TestCase *test_case, Buf *zig_stderr) { +static void print_compiler_invocation(TestCase *test_case, Buf *zig_stderr) { printf("%s", zig_exe); for (int i = 0; i < test_case->compiler_args.length; i += 1) { printf(" %s", test_case->compiler_args.at(i)); @@ -437,21 +437,21 @@ static void run_test(TestCase *test_case) { printf("========= Expected this compile error: =========\n"); printf("%s\n", err_text); printf("================================================\n"); - print_compiler_invokation(test_case, &zig_stderr); + print_compiler_invocation(test_case, &zig_stderr); exit(1); } } return; // success } else { printf("\nCompile failed with return code 0 (Expected failure):\n"); - print_compiler_invokation(test_case, &zig_stderr); + print_compiler_invocation(test_case, &zig_stderr); exit(1); } } if (return_code != 0) { printf("\nCompile failed with return code %d:\n", return_code); - print_compiler_invokation(test_case, &zig_stderr); + print_compiler_invocation(test_case, &zig_stderr); exit(1); }