From: Sigbjørn Skjæret Date: Sat, 27 Jun 2026 07:30:19 +0000 (+0200) Subject: tests : fix test-chat-template --no-common option (#25075) X-Git-Tag: upstream/0.0.10438~616 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=83d385b4294a27fd5b676b56531f446480bfea2a;p=pkg%2Fggml%2Fsources%2Fllama.cpp tests : fix test-chat-template --no-common option (#25075) --- diff --git a/tests/test-chat-template.cpp b/tests/test-chat-template.cpp index c388dee1c..d971b2374 100644 --- a/tests/test-chat-template.cpp +++ b/tests/test-chat-template.cpp @@ -135,7 +135,7 @@ int main(int argc, char ** argv) { output_path = args[i + 1]; i++; } else if (args[i] == "--no-common") { - use_common = true; + use_common = false; } else if (tmpl_path.empty()) { tmpl_path = args[i]; } else {