Skip to content

Commit 62bc3ec

Browse files
standby24x7arthw
authored andcommitted
scripts : fix spelling typo in messages and comments (ggml-org#9782)
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
1 parent 817e714 commit 62bc3ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/debug-test.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ rm -rf "$build_dir" && mkdir "$build_dir" || abort "Failed to make $build_dir"
110110
###########################################################
111111

112112
# Note: test-eval-callback requires -DLLAMA_CURL
113-
cmake -B "./$build_dir" -DCMAKE_BUILD_TYPE=Debug -DGGML_CUDA=1 -DLLAMA_CURL=1 || abort "Failed to build enviroment"
113+
cmake -B "./$build_dir" -DCMAKE_BUILD_TYPE=Debug -DGGML_CUDA=1 -DLLAMA_CURL=1 || abort "Failed to build environment"
114114
pushd "$build_dir"
115115
make -j || abort "Failed to compile"
116116
popd > /dev/null || exit 1
@@ -127,7 +127,7 @@ printf "\n\nGathering tests that fit REGEX: ${test_suite} ...\n"
127127
pushd "$build_dir"
128128
tests=($(ctest -R ${test_suite} -V -N | grep -E " +Test +#[0-9]+*" | cut -d':' -f2 | awk '{$1=$1};1'))
129129
if [ ${#tests[@]} -eq 0 ]; then
130-
abort "No tests avaliable... check your compliation process..."
130+
abort "No tests available... check your compilation process..."
131131
fi
132132
popd > /dev/null || exit 1
133133

@@ -137,7 +137,7 @@ popd > /dev/null || exit 1
137137

138138
# Select test number
139139
if [ -z $test_number ]; then
140-
# List out avaliable tests
140+
# List out available tests
141141
printf "Which test would you like to debug?\n"
142142
id=0
143143
for s in "${tests[@]}"

0 commit comments

Comments
 (0)