Lines Matching +full:- +full:e

5 PASS() { echo -ne "\e[32mPASS\e[0m"; }
6 SKIP() { echo -ne "\e[33mSKIP\e[0m"; }
7 FAIL() { echo -ne "\e[31mFAIL\e[0m"; }
12 tail -5 | grep '^SUMMARY: ' | sed 's/^SUMMARY: /(/;s/'"$cr"'\{0,1\}$/)/'
42 read -r -p "Test marked not to be run by default, are you sure (y/N)? " yn
61 if [ -z "$reason" ]; then
70 grep -Fq " $1 " <<< " $2 "
83 local check="${CHECK:-$9}"
85 local timeout="${11:-$TIMEOUT}" # unittests.cfg overrides the default
92 if [ -z "$testname" ]; then
96 if [ -n "$only_tests" ] && ! find_word "$testname" "$only_tests"; then
100 if [ -n "$only_group" ] && ! find_word "$only_group" "$groups"; then
104 if [ -z "$GEN_SE_HEADER" ] && find_word "pv-host" "$groups"; then
105 print_result "SKIP" $testname "" "no gen-se-header available for pv-host test"
109 if [ -z "$only_group" ] && find_word nodefault "$groups" &&
115 if [ -n "$arch" ] && [ "$arch" != "$ARCH" ]; then
120 if [ -n "$machine" ] && [ -n "$MACHINE" ] && [ "$machine" != "$MACHINE" ]; then
123 elif [ -n "$MACHINE" ]; then
127 if [ -n "$accel" ] && [ -n "$ACCEL" ] && [[ ! "$ACCEL" =~ ^$accel(,|$) ]]; then
130 elif [ -n "$ACCEL" ]; then
149 if ! [ -f "$path" ] || [ "$(cat $path)" != "$value" ]; then
160 [[ "$(tail -1 <<<"$log")" =~ "Dummy Hello World!" ]]; then
163 [[ "$(tail -2 <<<"$log" | head -1)" =~ "Dummy Hello World!" ]]; then
169 print_result "SKIP" $testname "" "$(tail -1 <<<"$log")"
193 if [ $ret -eq 0 ]; then
195 elif [ $ret -eq 77 ]; then
197 elif [ $ret -eq 124 ]; then
200 echo "not ok TEST_NUMBER - ${testname}: timeout; duration=$timeout" >&3
202 elif [ $ret -gt 127 ]; then
203 signame="SIG"$(kill -l $(($ret - 128)))
206 echo "not ok TEST_NUMBER - ${testname}: terminated on $signame" >&3
208 elif [ $ret -eq 127 ] && [ "$tap_output" = "yes" ]; then
209 echo "not ok TEST_NUMBER - ${testname}: aborted" >&3