From: xiaobing318 Date: Tue, 18 Feb 2025 09:12:49 +0000 (+0800) Subject: docs : Fix duplicated file extension in test command (#11935) X-Git-Tag: upstream/0.0.4853~117 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=09aaf4f1f5b69b5173b7fcd24eab96729f6b242a;p=pkg%2Fggml%2Fsources%2Fllama.cpp docs : Fix duplicated file extension in test command (#11935) 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. --- diff --git a/examples/server/tests/README.md b/examples/server/tests/README.md index 1de0eb30..12816bfa 100644 --- a/examples/server/tests/README.md +++ b/examples/server/tests/README.md @@ -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: