From 79ce128d2a51e847f502204b519de14e3840a9ee Mon Sep 17 00:00:00 2001 From: Xuan Son Nguyen Date: Fri, 6 Sep 2024 09:41:04 +0200 Subject: [PATCH] small correction --- tests/test-arg-parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-arg-parser.cpp b/tests/test-arg-parser.cpp index 2f3cf815d..8852bfc7e 100644 --- a/tests/test-arg-parser.cpp +++ b/tests/test-arg-parser.cpp @@ -89,8 +89,8 @@ int main(void) { assert(true == gpt_params_parse(argv.size(), list_str_to_char(argv).data(), params, options)); assert(params.model == "overwritten.gguf"); assert(params.cpuparams.n_threads == 1010); +#endif // _WIN32 printf("test-arg-parser: all tests OK\n\n"); -#endif // _WIN32 }