]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
docs : Fix duplicated file extension in test command (#11935)
authorxiaobing318 <redacted>
Tue, 18 Feb 2025 09:12:49 +0000 (17:12 +0800)
committerGitHub <redacted>
Tue, 18 Feb 2025 09:12:49 +0000 (10:12 +0100)
This commit fixes an issue in the llama.cpp project where the command for testing the llama-server object contained a duplicated file extension. The original command was:
./tests.sh unit/test_chat_completion.py.py -v -x
It has been corrected to:
./tests.sh unit/test_chat_completion.py -v -x
This change ensures that the test script correctly locates and executes the intended test file, preventing test failures due to an incorrect file name.

examples/server/tests/README.md

index 1de0eb30e871ef1e0bb844f9aee11bbe433f4635..12816bfa8705bd581122d707bc18f803025f88db 100644 (file)
@@ -48,7 +48,7 @@ DEBUG=1 ./tests.sh -s -v -x
 To run all the tests in a file:
 
 ```shell
-./tests.sh unit/test_chat_completion.py.py -v -x
+./tests.sh unit/test_chat_completion.py -v -x
 ```
 
 To run a single test: