File tree 1 file changed +3
-3
lines changed
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"
110
110
# ##########################################################
111
111
112
112
# 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 "
114
114
pushd " $build_dir "
115
115
make -j || abort " Failed to compile"
116
116
popd > /dev/null || exit 1
@@ -127,7 +127,7 @@ printf "\n\nGathering tests that fit REGEX: ${test_suite} ...\n"
127
127
pushd " $build_dir "
128
128
tests=($( ctest -R ${test_suite} -V -N | grep -E " +Test +#[0-9]+*" | cut -d' :' -f2 | awk ' {$1=$1};1' ) )
129
129
if [ ${# tests[@]} -eq 0 ]; then
130
- abort " No tests avaliable ... check your compliation process..."
130
+ abort " No tests available ... check your compilation process..."
131
131
fi
132
132
popd > /dev/null || exit 1
133
133
@@ -137,7 +137,7 @@ popd > /dev/null || exit 1
137
137
138
138
# Select test number
139
139
if [ -z $test_number ]; then
140
- # List out avaliable tests
140
+ # List out available tests
141
141
printf " Which test would you like to debug?\n"
142
142
id=0
143
143
for s in " ${tests[@]} "
You can’t perform that action at this time.
0 commit comments