Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | #!/bin/sh |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 2 | # SPDX-License-Identifier: GPL-2.0-only |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3 | |
| 4 | # ftracetest - Ftrace test shell scripts |
| 5 | # |
| 6 | # Copyright (C) Hitachi Ltd., 2014 |
| 7 | # Written by Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
| 8 | # |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 9 | |
| 10 | usage() { # errno [message] |
| 11 | [ ! -z "$2" ] && echo $2 |
| 12 | echo "Usage: ftracetest [options] [testcase(s)] [testcase-directory(s)]" |
| 13 | echo " Options:" |
| 14 | echo " -h|--help Show help message" |
| 15 | echo " -k|--keep Keep passed test logs" |
| 16 | echo " -v|--verbose Increase verbosity of test messages" |
| 17 | echo " -vv Alias of -v -v (Show all results in stdout)" |
| 18 | echo " -vvv Alias of -v -v -v (Show all commands immediately)" |
| 19 | echo " --fail-unsupported Treat UNSUPPORTED as a failure" |
| 20 | echo " -d|--debug Debug mode (trace all shell commands)" |
| 21 | echo " -l|--logdir <dir> Save logs on the <dir>" |
| 22 | echo " If <dir> is -, all logs output in console only" |
| 23 | exit $1 |
| 24 | } |
| 25 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 26 | # default error |
| 27 | err_ret=1 |
| 28 | |
| 29 | # kselftest skip code is 4 |
| 30 | err_skip=4 |
| 31 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 32 | errexit() { # message |
| 33 | echo "Error: $1" 1>&2 |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 34 | exit $err_ret |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | # Ensuring user privilege |
| 38 | if [ `id -u` -ne 0 ]; then |
| 39 | errexit "this must be run by root user" |
| 40 | fi |
| 41 | |
| 42 | # Utilities |
| 43 | absdir() { # file_path |
| 44 | (cd `dirname $1`; pwd) |
| 45 | } |
| 46 | |
| 47 | abspath() { |
| 48 | echo `absdir $1`/`basename $1` |
| 49 | } |
| 50 | |
| 51 | find_testcases() { #directory |
| 52 | echo `find $1 -name \*.tc | sort` |
| 53 | } |
| 54 | |
| 55 | parse_opts() { # opts |
| 56 | local OPT_TEST_CASES= |
| 57 | local OPT_TEST_DIR= |
| 58 | |
| 59 | while [ ! -z "$1" ]; do |
| 60 | case "$1" in |
| 61 | --help|-h) |
| 62 | usage 0 |
| 63 | ;; |
| 64 | --keep|-k) |
| 65 | KEEP_LOG=1 |
| 66 | shift 1 |
| 67 | ;; |
| 68 | --verbose|-v|-vv|-vvv) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 69 | if [ $VERBOSE -eq -1 ]; then |
| 70 | usage "--console can not use with --verbose" |
| 71 | fi |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 72 | VERBOSE=$((VERBOSE + 1)) |
| 73 | [ $1 = '-vv' ] && VERBOSE=$((VERBOSE + 1)) |
| 74 | [ $1 = '-vvv' ] && VERBOSE=$((VERBOSE + 2)) |
| 75 | shift 1 |
| 76 | ;; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 77 | --console) |
| 78 | if [ $VERBOSE -ne 0 ]; then |
| 79 | usage "--console can not use with --verbose" |
| 80 | fi |
| 81 | VERBOSE=-1 |
| 82 | shift 1 |
| 83 | ;; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 84 | --debug|-d) |
| 85 | DEBUG=1 |
| 86 | shift 1 |
| 87 | ;; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 88 | --stop-fail) |
| 89 | STOP_FAILURE=1 |
| 90 | shift 1 |
| 91 | ;; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 92 | --fail-unsupported) |
| 93 | UNSUPPORTED_RESULT=1 |
| 94 | shift 1 |
| 95 | ;; |
| 96 | --logdir|-l) |
| 97 | LOG_DIR=$2 |
| 98 | shift 2 |
| 99 | ;; |
| 100 | *.tc) |
| 101 | if [ -f "$1" ]; then |
| 102 | OPT_TEST_CASES="$OPT_TEST_CASES `abspath $1`" |
| 103 | shift 1 |
| 104 | else |
| 105 | usage 1 "$1 is not a testcase" |
| 106 | fi |
| 107 | ;; |
| 108 | *) |
| 109 | if [ -d "$1" ]; then |
| 110 | OPT_TEST_DIR=`abspath $1` |
| 111 | OPT_TEST_CASES="$OPT_TEST_CASES `find_testcases $OPT_TEST_DIR`" |
| 112 | shift 1 |
| 113 | else |
| 114 | usage 1 "Invalid option ($1)" |
| 115 | fi |
| 116 | ;; |
| 117 | esac |
| 118 | done |
| 119 | if [ ! -z "$OPT_TEST_CASES" ]; then |
| 120 | TEST_CASES=$OPT_TEST_CASES |
| 121 | fi |
| 122 | } |
| 123 | |
| 124 | # Parameters |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 125 | TRACING_DIR=`grep tracefs /proc/mounts | cut -f2 -d' ' | head -1` |
| 126 | if [ -z "$TRACING_DIR" ]; then |
| 127 | DEBUGFS_DIR=`grep debugfs /proc/mounts | cut -f2 -d' ' | head -1` |
| 128 | if [ -z "$DEBUGFS_DIR" ]; then |
| 129 | # If tracefs exists, then so does /sys/kernel/tracing |
| 130 | if [ -d "/sys/kernel/tracing" ]; then |
| 131 | mount -t tracefs nodev /sys/kernel/tracing || |
| 132 | errexit "Failed to mount /sys/kernel/tracing" |
| 133 | TRACING_DIR="/sys/kernel/tracing" |
| 134 | # If debugfs exists, then so does /sys/kernel/debug |
| 135 | elif [ -d "/sys/kernel/debug" ]; then |
| 136 | mount -t debugfs nodev /sys/kernel/debug || |
| 137 | errexit "Failed to mount /sys/kernel/debug" |
| 138 | TRACING_DIR="/sys/kernel/debug/tracing" |
| 139 | else |
| 140 | err_ret=$err_skip |
| 141 | errexit "debugfs and tracefs are not configured in this kernel" |
| 142 | fi |
| 143 | else |
| 144 | TRACING_DIR="$DEBUGFS_DIR/tracing" |
| 145 | fi |
| 146 | fi |
| 147 | if [ ! -d "$TRACING_DIR" ]; then |
| 148 | err_ret=$err_skip |
| 149 | errexit "ftrace is not configured in this kernel" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 150 | fi |
| 151 | |
| 152 | TOP_DIR=`absdir $0` |
| 153 | TEST_DIR=$TOP_DIR/test.d |
| 154 | TEST_CASES=`find_testcases $TEST_DIR` |
| 155 | LOG_DIR=$TOP_DIR/logs/`date +%Y%m%d-%H%M%S`/ |
| 156 | KEEP_LOG=0 |
| 157 | DEBUG=0 |
| 158 | VERBOSE=0 |
| 159 | UNSUPPORTED_RESULT=0 |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 160 | STOP_FAILURE=0 |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 161 | # Parse command-line options |
| 162 | parse_opts $* |
| 163 | |
| 164 | [ $DEBUG -ne 0 ] && set -x |
| 165 | |
| 166 | # Verify parameters |
| 167 | if [ -z "$TRACING_DIR" -o ! -d "$TRACING_DIR" ]; then |
| 168 | errexit "No ftrace directory found" |
| 169 | fi |
| 170 | |
| 171 | # Preparing logs |
| 172 | if [ "x$LOG_DIR" = "x-" ]; then |
| 173 | LOG_FILE= |
| 174 | date |
| 175 | else |
| 176 | LOG_FILE=$LOG_DIR/ftracetest.log |
| 177 | mkdir -p $LOG_DIR || errexit "Failed to make a log directory: $LOG_DIR" |
| 178 | date > $LOG_FILE |
| 179 | fi |
| 180 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 181 | # Define text colors |
| 182 | # Check available colors on the terminal, if any |
| 183 | ncolors=`tput colors 2>/dev/null || echo 0` |
| 184 | color_reset= |
| 185 | color_red= |
| 186 | color_green= |
| 187 | color_blue= |
| 188 | # If stdout exists and number of colors is eight or more, use them |
| 189 | if [ -t 1 -a "$ncolors" -ge 8 ]; then |
| 190 | color_reset="\033[0m" |
| 191 | color_red="\033[31m" |
| 192 | color_green="\033[32m" |
| 193 | color_blue="\033[34m" |
| 194 | fi |
| 195 | |
| 196 | strip_esc() { |
| 197 | # busybox sed implementation doesn't accept "\x1B", so use [:cntrl:] instead. |
| 198 | sed -E "s/[[:cntrl:]]\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g" |
| 199 | } |
| 200 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 201 | prlog() { # messages |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 202 | newline="\n" |
| 203 | if [ "$1" = "-n" ] ; then |
| 204 | newline= |
| 205 | shift |
| 206 | fi |
| 207 | printf "$*$newline" |
| 208 | [ "$LOG_FILE" ] && printf "$*$newline" | strip_esc >> $LOG_FILE |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 209 | } |
| 210 | catlog() { #file |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 211 | cat $1 |
| 212 | [ "$LOG_FILE" ] && cat $1 | strip_esc >> $LOG_FILE |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 213 | } |
| 214 | prlog "=== Ftrace unit tests ===" |
| 215 | |
| 216 | |
| 217 | # Testcase management |
| 218 | # Test result codes - Dejagnu extended code |
| 219 | PASS=0 # The test succeeded. |
| 220 | FAIL=1 # The test failed, but was expected to succeed. |
| 221 | UNRESOLVED=2 # The test produced indeterminate results. (e.g. interrupted) |
| 222 | UNTESTED=3 # The test was not run, currently just a placeholder. |
| 223 | UNSUPPORTED=4 # The test failed because of lack of feature. |
| 224 | XFAIL=5 # The test failed, and was expected to fail. |
| 225 | |
| 226 | # Accumulations |
| 227 | PASSED_CASES= |
| 228 | FAILED_CASES= |
| 229 | UNRESOLVED_CASES= |
| 230 | UNTESTED_CASES= |
| 231 | UNSUPPORTED_CASES= |
| 232 | XFAILED_CASES= |
| 233 | UNDEFINED_CASES= |
| 234 | TOTAL_RESULT=0 |
| 235 | |
| 236 | INSTANCE= |
| 237 | CASENO=0 |
| 238 | testcase() { # testfile |
| 239 | CASENO=$((CASENO+1)) |
| 240 | desc=`grep "^#[ \t]*description:" $1 | cut -f2 -d:` |
| 241 | prlog -n "[$CASENO]$INSTANCE$desc" |
| 242 | } |
| 243 | |
| 244 | test_on_instance() { # testfile |
| 245 | grep -q "^#[ \t]*flags:.*instance" $1 |
| 246 | } |
| 247 | |
| 248 | eval_result() { # sigval |
| 249 | case $1 in |
| 250 | $PASS) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 251 | prlog " [${color_green}PASS${color_reset}]" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 252 | PASSED_CASES="$PASSED_CASES $CASENO" |
| 253 | return 0 |
| 254 | ;; |
| 255 | $FAIL) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 256 | prlog " [${color_red}FAIL${color_reset}]" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 257 | FAILED_CASES="$FAILED_CASES $CASENO" |
| 258 | return 1 # this is a bug. |
| 259 | ;; |
| 260 | $UNRESOLVED) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 261 | prlog " [${color_blue}UNRESOLVED${color_reset}]" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 262 | UNRESOLVED_CASES="$UNRESOLVED_CASES $CASENO" |
| 263 | return 1 # this is a kind of bug.. something happened. |
| 264 | ;; |
| 265 | $UNTESTED) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 266 | prlog " [${color_blue}UNTESTED${color_reset}]" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 267 | UNTESTED_CASES="$UNTESTED_CASES $CASENO" |
| 268 | return 0 |
| 269 | ;; |
| 270 | $UNSUPPORTED) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 271 | prlog " [${color_blue}UNSUPPORTED${color_reset}]" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 272 | UNSUPPORTED_CASES="$UNSUPPORTED_CASES $CASENO" |
| 273 | return $UNSUPPORTED_RESULT # depends on use case |
| 274 | ;; |
| 275 | $XFAIL) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 276 | prlog " [${color_red}XFAIL${color_reset}]" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 277 | XFAILED_CASES="$XFAILED_CASES $CASENO" |
| 278 | return 0 |
| 279 | ;; |
| 280 | *) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 281 | prlog " [${color_blue}UNDEFINED${color_reset}]" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 282 | UNDEFINED_CASES="$UNDEFINED_CASES $CASENO" |
| 283 | return 1 # this must be a test bug |
| 284 | ;; |
| 285 | esac |
| 286 | } |
| 287 | |
| 288 | # Signal handling for result codes |
| 289 | SIG_RESULT= |
| 290 | SIG_BASE=36 # Use realtime signals |
| 291 | SIG_PID=$$ |
| 292 | |
| 293 | exit_pass () { |
| 294 | exit 0 |
| 295 | } |
| 296 | |
| 297 | SIG_FAIL=$((SIG_BASE + FAIL)) |
| 298 | exit_fail () { |
| 299 | exit 1 |
| 300 | } |
| 301 | trap 'SIG_RESULT=$FAIL' $SIG_FAIL |
| 302 | |
| 303 | SIG_UNRESOLVED=$((SIG_BASE + UNRESOLVED)) |
| 304 | exit_unresolved () { |
| 305 | kill -s $SIG_UNRESOLVED $SIG_PID |
| 306 | exit 0 |
| 307 | } |
| 308 | trap 'SIG_RESULT=$UNRESOLVED' $SIG_UNRESOLVED |
| 309 | |
| 310 | SIG_UNTESTED=$((SIG_BASE + UNTESTED)) |
| 311 | exit_untested () { |
| 312 | kill -s $SIG_UNTESTED $SIG_PID |
| 313 | exit 0 |
| 314 | } |
| 315 | trap 'SIG_RESULT=$UNTESTED' $SIG_UNTESTED |
| 316 | |
| 317 | SIG_UNSUPPORTED=$((SIG_BASE + UNSUPPORTED)) |
| 318 | exit_unsupported () { |
| 319 | kill -s $SIG_UNSUPPORTED $SIG_PID |
| 320 | exit 0 |
| 321 | } |
| 322 | trap 'SIG_RESULT=$UNSUPPORTED' $SIG_UNSUPPORTED |
| 323 | |
| 324 | SIG_XFAIL=$((SIG_BASE + XFAIL)) |
| 325 | exit_xfail () { |
| 326 | kill -s $SIG_XFAIL $SIG_PID |
| 327 | exit 0 |
| 328 | } |
| 329 | trap 'SIG_RESULT=$XFAIL' $SIG_XFAIL |
| 330 | |
| 331 | __run_test() { # testfile |
| 332 | # setup PID and PPID, $$ is not updated. |
| 333 | (cd $TRACING_DIR; read PID _ < /proc/self/stat; set -e; set -x; initialize_ftrace; . $1) |
| 334 | [ $? -ne 0 ] && kill -s $SIG_FAIL $SIG_PID |
| 335 | } |
| 336 | |
| 337 | # Run one test case |
| 338 | run_test() { # testfile |
| 339 | local testname=`basename $1` |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 340 | testcase $1 |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 341 | if [ ! -z "$LOG_FILE" ] ; then |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 342 | local testlog=`mktemp $LOG_DIR/${CASENO}-${testname}-log.XXXXXX` |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 343 | else |
| 344 | local testlog=/proc/self/fd/1 |
| 345 | fi |
| 346 | export TMPDIR=`mktemp -d /tmp/ftracetest-dir.XXXXXX` |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 347 | export FTRACETEST_ROOT=$TOP_DIR |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 348 | echo "execute$INSTANCE: "$1 > $testlog |
| 349 | SIG_RESULT=0 |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 350 | if [ $VERBOSE -eq -1 ]; then |
| 351 | __run_test $1 |
| 352 | elif [ -z "$LOG_FILE" ]; then |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 353 | __run_test $1 2>&1 |
| 354 | elif [ $VERBOSE -ge 3 ]; then |
| 355 | __run_test $1 | tee -a $testlog 2>&1 |
| 356 | elif [ $VERBOSE -eq 2 ]; then |
| 357 | __run_test $1 2>> $testlog | tee -a $testlog |
| 358 | else |
| 359 | __run_test $1 >> $testlog 2>&1 |
| 360 | fi |
| 361 | eval_result $SIG_RESULT |
| 362 | if [ $? -eq 0 ]; then |
| 363 | # Remove test log if the test was done as it was expected. |
| 364 | [ $KEEP_LOG -eq 0 -a ! -z "$LOG_FILE" ] && rm $testlog |
| 365 | else |
| 366 | [ $VERBOSE -eq 1 -o $VERBOSE -eq 2 ] && catlog $testlog |
| 367 | TOTAL_RESULT=1 |
| 368 | fi |
| 369 | rm -rf $TMPDIR |
| 370 | } |
| 371 | |
| 372 | # load in the helper functions |
| 373 | . $TEST_DIR/functions |
| 374 | |
| 375 | # Main loop |
| 376 | for t in $TEST_CASES; do |
| 377 | run_test $t |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 378 | if [ $STOP_FAILURE -ne 0 -a $TOTAL_RESULT -ne 0 ]; then |
| 379 | echo "A failure detected. Stop test." |
| 380 | exit 1 |
| 381 | fi |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 382 | done |
| 383 | |
| 384 | # Test on instance loop |
| 385 | INSTANCE=" (instance) " |
| 386 | for t in $TEST_CASES; do |
| 387 | test_on_instance $t || continue |
| 388 | SAVED_TRACING_DIR=$TRACING_DIR |
| 389 | export TRACING_DIR=`mktemp -d $TRACING_DIR/instances/ftracetest.XXXXXX` |
| 390 | run_test $t |
| 391 | rmdir $TRACING_DIR |
| 392 | TRACING_DIR=$SAVED_TRACING_DIR |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 393 | if [ $STOP_FAILURE -ne 0 -a $TOTAL_RESULT -ne 0 ]; then |
| 394 | echo "A failure detected. Stop test." |
| 395 | exit 1 |
| 396 | fi |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 397 | done |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 398 | (cd $TRACING_DIR; initialize_ftrace) # for cleanup |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 399 | |
| 400 | prlog "" |
| 401 | prlog "# of passed: " `echo $PASSED_CASES | wc -w` |
| 402 | prlog "# of failed: " `echo $FAILED_CASES | wc -w` |
| 403 | prlog "# of unresolved: " `echo $UNRESOLVED_CASES | wc -w` |
| 404 | prlog "# of untested: " `echo $UNTESTED_CASES | wc -w` |
| 405 | prlog "# of unsupported: " `echo $UNSUPPORTED_CASES | wc -w` |
| 406 | prlog "# of xfailed: " `echo $XFAILED_CASES | wc -w` |
| 407 | prlog "# of undefined(test bug): " `echo $UNDEFINED_CASES | wc -w` |
| 408 | |
| 409 | # if no error, return 0 |
| 410 | exit $TOTAL_RESULT |