summaryrefslogtreecommitdiff
path: root/examples/server
diff options
context:
space:
mode:
authorGeorgi Gerganov <ggerganov@gmail.com>2024-04-25 14:27:20 +0300
committerGitHub <noreply@github.com>2024-04-25 14:27:20 +0300
commitaa750c1ede6232c91de890a14a7731d6daa2bc8e (patch)
treee0e407a4afa8c6538ed92d1e5d0b9896b1183cbf /examples/server
parent1966eb2615242f224bf9ca939db8905ab6a174a0 (diff)
tests : minor bash stuff (#6902)
* tests : minor bash stuff ggml-ci * llama : fix build ggml-ci * tests : fix CUR_DIR -> ROOT_DIR ggml-ci * tests : fix fname ggml-ci
Diffstat (limited to 'examples/server')
-rwxr-xr-xexamples/server/tests/tests.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/server/tests/tests.sh b/examples/server/tests/tests.sh
index 1c6c5695..72a0fbad 100755
--- a/examples/server/tests/tests.sh
+++ b/examples/server/tests/tests.sh
@@ -4,9 +4,8 @@ set -eu
if [ $# -lt 1 ]
then
- # Start @llama.cpp scenario
- behave --summary --stop --no-capture --exclude 'issues|wrong_usages|passkey' --tags llama.cpp
+ # Start @llama.cpp scenario
+ behave --summary --stop --no-capture --exclude 'issues|wrong_usages|passkey' --tags llama.cpp
else
- behave "$@"
+ behave "$@"
fi
-