You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
243 B
11 lines
243 B
4 months ago
|
#!/bin/sh
|
||
|
# Check delay injection.
|
||
|
|
||
|
. "${srcdir=.}/init.sh"
|
||
|
|
||
|
delay_enter=800000
|
||
|
delay_exit=1600000
|
||
|
run_strace -f -r -egettimeofday \
|
||
|
-einject=gettimeofday:delay_enter=$delay_enter:delay_exit=$delay_exit \
|
||
|
../delay 4 $delay_enter $delay_exit
|