liyujie
2025-08-28 b3810562527858a3b3d98ffa6e9c9c5b0f4a9a8e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
#!/bin/sh
#
# Copyright (c) Linux Test Project, 2014-2018
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Written by Cyril Hrubis <chrubis@suse.cz>
#
# This is a LTP test library for shell.
#
 
[ -n "$TST_LIB_LOADED" ] && return 0
 
export TST_PASS=0
export TST_FAIL=0
export TST_BROK=0
export TST_WARN=0
export TST_CONF=0
export TST_COUNT=1
export TST_ITERATIONS=1
export TST_TMPDIR_RHOST=0
export TST_LIB_LOADED=1
 
. tst_ansi_color.sh
 
# default trap function
trap "tst_brk TBROK 'test interrupted'" INT
 
_tst_do_exit()
{
   local ret=0
   TST_DO_EXIT=1
 
   if [ -n "$TST_SETUP_STARTED" -a -n "$TST_CLEANUP" -a \
        -z "$TST_NO_CLEANUP" ]; then
       $TST_CLEANUP
   fi
 
   if [ "$TST_NEEDS_DEVICE" = 1 -a "$TST_DEVICE_FLAG" = 1 ]; then
       if ! tst_device release "$TST_DEVICE"; then
           tst_res TWARN "Failed to release device '$TST_DEVICE'"
       fi
   fi
 
   if [ "$TST_NEEDS_TMPDIR" = 1 -a -n "$TST_TMPDIR" ]; then
       cd "$LTPROOT"
       rm -r "$TST_TMPDIR"
       [ "$TST_TMPDIR_RHOST" = 1 ] && tst_cleanup_rhost
   fi
 
   if [ -n "$_tst_setup_timer_pid" ]; then
       kill $_tst_setup_timer_pid 2>/dev/null
       wait $_tst_setup_timer_pid 2>/dev/null
   fi
 
   if [ $TST_FAIL -gt 0 ]; then
       ret=$((ret|1))
   fi
 
   if [ $TST_BROK -gt 0 ]; then
       ret=$((ret|2))
   fi
 
   if [ $TST_WARN -gt 0 ]; then
       ret=$((ret|4))
   fi
 
   if [ $TST_CONF -gt 0 ]; then
       ret=$((ret|32))
   fi
 
   echo
   echo "Summary:"
   echo "passed   $TST_PASS"
   echo "failed   $TST_FAIL"
   echo "skipped  $TST_CONF"
   echo "warnings $TST_WARN"
 
   exit $ret
}
 
_tst_inc_res()
{
   case "$1" in
   TPASS) TST_PASS=$((TST_PASS+1));;
   TFAIL) TST_FAIL=$((TST_FAIL+1));;
   TBROK) TST_BROK=$((TST_BROK+1));;
   TWARN) TST_WARN=$((TST_WARN+1));;
   TCONF) TST_CONF=$((TST_CONF+1));;
   TINFO) ;;
   *) tst_brk TBROK "Invalid res type '$1'";;
   esac
}
 
tst_res()
{
   local res=$1
   shift
 
   tst_color_enabled
   local color=$?
 
   _tst_inc_res "$res"
 
   printf "$TST_ID $TST_COUNT "
   tst_print_colored $res "$res: "
   echo "$@"
}
 
tst_brk()
{
   local res=$1
   shift
 
   if [ "$TST_DO_EXIT" = 1 ]; then
       tst_res TWARN "$@"
       return
   fi
 
   tst_res "$res" "$@"
   _tst_do_exit
}
 
ROD_SILENT()
{
   local tst_out="$(tst_rod $@ 2>&1)"
   if [ $? -ne 0 ]; then
       echo "$tst_out"
       tst_brk TBROK "$@ failed"
   fi
}
 
ROD()
{
   tst_rod "$@"
   if [ $? -ne 0 ]; then
       tst_brk TBROK "$@ failed"
   fi
}
 
EXPECT_PASS()
{
   tst_rod "$@"
   if [ $? -eq 0 ]; then
       tst_res TPASS "$@ passed as expected"
   else
       tst_res TFAIL "$@ failed unexpectedly"
   fi
}
 
EXPECT_FAIL()
{
   # redirect stderr since we expect the command to fail
   tst_rod "$@" 2> /dev/null
   if [ $? -ne 0 ]; then
       tst_res TPASS "$@ failed as expected"
   else
       tst_res TFAIL "$@ passed unexpectedly"
   fi
}
 
TST_RETRY_FN_EXP_BACKOFF()
{
   local tst_fun="$1"
   local tst_exp=$2
   local tst_sec=$(expr $3 \* 1000000)
   local tst_delay=1
 
   if [ $# -ne 3 ]; then
       tst_brk TBROK "TST_RETRY_FN_EXP_BACKOFF expects 3 parameters"
   fi
 
   if ! tst_is_int "$tst_sec"; then
       tst_brk TBROK "TST_RETRY_FN_EXP_BACKOFF: tst_sec must be integer ('$tst_sec')"
   fi
 
   while true; do
       $tst_fun
       if [ "$?" = "$tst_exp" ]; then
           break
       fi
 
       if [ $tst_delay -lt $tst_sec ]; then
           tst_sleep ${tst_delay}us
           tst_delay=$((tst_delay*2))
       else
           tst_brk TBROK "\"$tst_fun\" timed out"
       fi
   done
 
   return $tst_exp
}
 
TST_RETRY_FUNC()
{
   if [ $# -ne 2 ]; then
       tst_brk TBROK "TST_RETRY_FUNC expects 2 parameters"
   fi
 
   TST_RETRY_FN_EXP_BACKOFF "$1" "$2" 1
   return $2
}
 
TST_RTNL_CHK()
{
   local msg1="RTNETLINK answers: Function not implemented"
   local msg2="RTNETLINK answers: Operation not supported"
   local msg3="RTNETLINK answers: Protocol not supported"
   local output="$($@ 2>&1 || echo 'LTP_ERR')"
   local msg
 
   echo "$output" | grep -q "LTP_ERR" || return 0
 
   for msg in "$msg1" "$msg2" "$msg3"; do
       echo "$output" | grep -q "$msg" && tst_brk TCONF "'$@': $msg"
   done
 
   tst_brk TBROK "$@ failed: $output"
}
 
tst_umount()
{
   local device="$1"
   local i=0
 
   if ! grep -q "$device" /proc/mounts; then
       tst_res TINFO "The $device is not mounted, skipping umount"
       return
   fi
 
   while [ "$i" -lt 50 ]; do
       if umount "$device" > /dev/null; then
           return
       fi
 
       i=$((i+1))
 
       tst_res TINFO "umount($device) failed, try $i ..."
       tst_res TINFO "Likely gvfsd-trash is probing newly mounted "\
                     "fs, kill it to speed up tests."
 
       tst_sleep 100ms
   done
 
   tst_res TWARN "Failed to umount($device) after 50 retries"
}
 
tst_mkfs()
{
   local fs_type=$1
   local device=$2
   shift 2
   local fs_opts="$@"
 
   if [ -z "$fs_type" ]; then
       tst_brk TBROK "No fs_type specified"
   fi
 
   if [ -z "$device" ]; then
       tst_brk TBROK "No device specified"
   fi
 
   tst_res TINFO "Formatting $device with $fs_type extra opts='$fs_opts'"
 
   ROD_SILENT mkfs.$fs_type $fs_opts $device
}
 
tst_cmd_available()
{
   if type command > /dev/null 2>&1; then
       command -v $1 > /dev/null 2>&1 || return 1
   else
       which $1 > /dev/null 2>&1
       if [ $? -eq 0 ]; then
           return 0
       elif [ $? -eq 127 ]; then
           tst_brk TCONF "missing which command"
       else
           return 1
       fi
   fi
}
 
tst_test_cmds()
{
   local cmd
   for cmd in $*; do
       tst_cmd_available $cmd || tst_brk TCONF "'$cmd' not found"
   done
}
 
tst_check_cmds()
{
   local cmd
   for cmd; do
       if ! tst_cmd_available $cmd; then
           tst_res TCONF "'$cmd' not found"
           return 1
       fi
   done
   return 0
}
 
tst_test_drivers()
{
   [ $# -eq 0 ] && return 0
 
   local drv
 
   drv="$(tst_check_drivers $@ 2>&1)"
 
   [ $? -ne 0 ] && tst_brk TCONF "$drv driver not available"
   return 0
}
 
tst_is_int()
{
   [ "$1" -eq "$1" ] 2>/dev/null
   return $?
}
 
tst_usage()
{
   if [ -n "$TST_USAGE" ]; then
       $TST_USAGE
   else
       echo "usage: $0"
       echo "OPTIONS"
   fi
 
   echo "-h      Prints this help"
   echo "-i n    Execute test n times"
}
 
_tst_resstr()
{
   echo "$TST_PASS$TST_FAIL$TST_CONF"
}
 
_tst_rescmp()
{
   local res=$(_tst_resstr)
 
   if [ "$1" = "$res" ]; then
       tst_brk TBROK "Test didn't report any results"
   fi
}
 
 
_tst_setup_timer()
{
   LTP_TIMEOUT_MUL=${LTP_TIMEOUT_MUL:-1}
 
   local sec=$((300 * LTP_TIMEOUT_MUL))
   local h=$((sec / 3600))
   local m=$((sec / 60 % 60))
   local s=$((sec % 60))
   local pid=$$
 
   tst_res TINFO "timeout per run is ${h}h ${m}m ${s}s"
 
   sleep $sec && tst_res TBROK "test killed, timeout! If you are running on slow machine, try exporting LTP_TIMEOUT_MUL > 1" && kill -9 -$pid &
 
   _tst_setup_timer_pid=$!
}
 
tst_run()
{
   local _tst_i
   local _tst_data
   local _tst_max
   local _tst_name
 
   if [ -n "$TST_TEST_PATH" ]; then
       for _tst_i in $(grep TST_ "$TST_TEST_PATH" | sed 's/.*TST_//; s/[="} \t\/:`].*//'); do
           case "$_tst_i" in
           SETUP|CLEANUP|TESTFUNC|ID|CNT|MIN_KVER);;
           OPTS|USAGE|PARSE_ARGS|POS_ARGS);;
           NEEDS_ROOT|NEEDS_TMPDIR|TMPDIR|NEEDS_DEVICE|DEVICE);;
           NEEDS_CMDS|NEEDS_MODULE|MODPATH|DATAROOT);;
           NEEDS_DRIVERS);;
           IPV6|IPVER|TEST_DATA|TEST_DATA_IFS);;
           RETRY_FUNC|RETRY_FN_EXP_BACKOFF);;
           *) tst_res TWARN "Reserved variable TST_$_tst_i used!";;
           esac
       done
 
       for _tst_i in $(grep _tst_ "$TST_TEST_PATH" | sed 's/.*_tst_//; s/[="} \t\/:`].*//'); do
           tst_res TWARN "Private variable or function _tst_$_tst_i used!"
       done
   fi
 
   OPTIND=1
 
   while getopts ":hi:$TST_OPTS" _tst_name $TST_ARGS; do
       case $_tst_name in
       'h') tst_usage; exit 0;;
       'i') TST_ITERATIONS=$OPTARG;;
       '?') tst_usage; exit 2;;
       *) $TST_PARSE_ARGS "$_tst_name" "$OPTARG";;
       esac
   done
 
   if ! tst_is_int "$TST_ITERATIONS"; then
       tst_brk TBROK "Expected number (-i) not '$TST_ITERATIONS'"
   fi
 
   if [ "$TST_ITERATIONS" -le 0 ]; then
       tst_brk TBROK "Number of iterations (-i) must be > 0"
   fi
 
   if [ "$TST_NEEDS_ROOT" = 1 ]; then
       if [ "$(id -ru)" != 0 ]; then
           tst_brk TCONF "Must be super/root for this test!"
       fi
   fi
 
   tst_test_cmds $TST_NEEDS_CMDS
   tst_test_drivers $TST_NEEDS_DRIVERS
 
   if [ -n "$TST_MIN_KVER" ]; then
       tst_kvcmp -lt "$TST_MIN_KVER" && \
           tst_brk TCONF "test requires kernel $TST_MIN_KVER+"
   fi
 
   _tst_setup_timer
 
   if [ "$TST_NEEDS_TMPDIR" = 1 ]; then
       if [ -z "$TMPDIR" ]; then
           export TMPDIR="/tmp"
       fi
 
       TST_TMPDIR=$(mktemp -d "$TMPDIR/LTP_$TST_ID.XXXXXXXXXX")
 
       chmod 777 "$TST_TMPDIR"
 
       TST_STARTWD=$(pwd)
 
       cd "$TST_TMPDIR"
   fi
 
   if [ "$TST_NEEDS_DEVICE" = 1 ]; then
       if [ -z ${TST_TMPDIR} ]; then
           tst_brk TBROK "Use TST_NEEDS_TMPDIR must be set for TST_NEEDS_DEVICE"
       fi
 
       TST_DEVICE=$(tst_device acquire)
 
       if [ ! -b "$TST_DEVICE" -o $? -ne 0 ]; then
           tst_brk TBROK "Failed to acquire device"
       fi
 
       TST_DEVICE_FLAG=1
   fi
 
   if [ -n "$TST_NEEDS_MODULE" ]; then
       for tst_module in "$TST_NEEDS_MODULE" \
                         "$LTPROOT/testcases/bin/$TST_NEEDS_MODULE" \
                         "$TST_STARTWD/$TST_NEEDS_MODULE"; do
 
               if [ -f "$tst_module" ]; then
                   TST_MODPATH="$tst_module"
                   break
               fi
       done
 
       if [ -z "$TST_MODPATH" ]; then
           tst_brk TCONF "Failed to find module '$TST_NEEDS_MODULE'"
       else
           tst_res TINFO "Found module at '$TST_MODPATH'"
       fi
   fi
 
   if [ -n "$TST_SETUP" ]; then
       TST_SETUP_STARTED=1
       $TST_SETUP
   fi
 
   #TODO check that test reports some results for each test function call
   while [ $TST_ITERATIONS -gt 0 ]; do
       if [ -n "$TST_TEST_DATA" ]; then
           tst_test_cmds cut tr wc
           _tst_max=$(( $(echo $TST_TEST_DATA | tr -cd "$TST_TEST_DATA_IFS" | wc -c) +1))
           for _tst_i in $(seq $_tst_max); do
               _tst_data="$(echo "$TST_TEST_DATA" | cut -d"$TST_TEST_DATA_IFS" -f$_tst_i)"
               _tst_run_tests "$_tst_data"
           done
       else
           _tst_run_tests
       fi
       TST_ITERATIONS=$((TST_ITERATIONS-1))
   done
 
   _tst_do_exit
}
 
_tst_run_tests()
{
   local _tst_data="$1"
   local _tst_i
 
   for _tst_i in $(seq ${TST_CNT:-1}); do
       if type ${TST_TESTFUNC}1 > /dev/null 2>&1; then
           _tst_run_test "$TST_TESTFUNC$_tst_i" $_tst_i "$_tst_data"
       else
           _tst_run_test "$TST_TESTFUNC" $_tst_i "$_tst_data"
       fi
   done
}
 
_tst_run_test()
{
   local _tst_res=$(_tst_resstr)
   local _tst_fnc="$1"
   shift
 
   $_tst_fnc "$@"
   _tst_rescmp "$_tst_res"
   TST_COUNT=$((TST_COUNT+1))
}
 
if [ -z "$TST_ID" ]; then
   _tst_filename=$(basename $0) || \
       tst_brk TCONF "Failed to set TST_ID from \$0 ('$0'), fix it with setting TST_ID before sourcing tst_test.sh"
   TST_ID=${_tst_filename%%.*}
fi
export TST_ID="$TST_ID"
 
if [ -z "$LTPROOT" ]; then
   export LTPROOT="$PWD"
   export TST_DATAROOT="$LTPROOT/datafiles"
else
   export TST_DATAROOT="$LTPROOT/testcases/data/$TST_ID"
fi
 
if [ -z "$TST_NO_DEFAULT_RUN" ]; then
   if TST_TEST_PATH=$(which $0) 2>/dev/null; then
       if ! grep -q tst_run "$TST_TEST_PATH"; then
           tst_brk TBROK "Test $0 must call tst_run!"
       fi
   fi
 
   if [ -z "$TST_TESTFUNC" ]; then
       tst_brk TBROK "TST_TESTFUNC is not defined"
   fi
 
   TST_TEST_DATA_IFS="${TST_TEST_DATA_IFS:- }"
 
   if [ -n "$TST_CNT" ]; then
       if ! tst_is_int "$TST_CNT"; then
           tst_brk TBROK "TST_CNT must be integer"
       fi
 
       if [ "$TST_CNT" -le 0 ]; then
           tst_brk TBROK "TST_CNT must be > 0"
       fi
   fi
 
   if [ -n "$TST_POS_ARGS" ]; then
       if ! tst_is_int "$TST_POS_ARGS"; then
           tst_brk TBROK "TST_POS_ARGS must be integer"
       fi
 
       if [ "$TST_POS_ARGS" -le 0 ]; then
           tst_brk TBROK "TST_POS_ARGS must be > 0"
       fi
   fi
 
   TST_ARGS="$@"
 
   while getopts ":hi:$TST_OPTS" tst_name; do
       case $tst_name in
       'h') TST_PRINT_HELP=1;;
       *);;
       esac
   done
 
   shift $((OPTIND - 1))
 
   if [ -n "$TST_POS_ARGS" ]; then
       if [ -z "$TST_PRINT_HELP" -a $# -ne "$TST_POS_ARGS" ]; then
           tst_brk TBROK "Invalid number of positional parameters:"\
                     "have ($@) $#, expected ${TST_POS_ARGS}"
       fi
   else
       if [ -z "$TST_PRINT_HELP" -a $# -ne 0 ]; then
           tst_brk TBROK "Unexpected positional arguments '$@'"
       fi
   fi
fi