File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 "
114114pushd " $build_dir "
115115make -j || abort " Failed to compile"
116116popd > /dev/null || exit 1
@@ -127,7 +127,7 @@ printf "\n\nGathering tests that fit REGEX: ${test_suite} ...\n"
127127pushd " $build_dir "
128128tests=($( ctest -R ${test_suite} -V -N | grep -E " +Test +#[0-9]+*" | cut -d' :' -f2 | awk ' {$1=$1};1' ) )
129129if [ ${# tests[@]} -eq 0 ]; then
130- abort " No tests avaliable ... check your compliation process..."
130+ abort " No tests available ... check your compilation process..."
131131fi
132132popd > /dev/null || exit 1
133133
@@ -137,7 +137,7 @@ popd > /dev/null || exit 1
137137
138138# Select test number
139139if [ -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[@]} "
You can’t perform that action at this time.
0 commit comments