Skip to content

Commit 8b9aaac

Browse files
roxellnareshkamboju
authored andcommitted
automated: linux: rcutorture: drop SKIP_INSTALL
No need to have the install step since gunzip isn't used anymore. Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
1 parent 1479bf1 commit 8b9aaac

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

automated/linux/rcutorture/rcutorture.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,15 @@ OUTPUT="${TEST_DIR}/output"
55
RESULT_FILE="${OUTPUT}/result.txt"
66
export RESULT_FILE
77
LOGFILE="${OUTPUT}/dmesg-rcutorture.txt"
8-
SKIP_INSTALL="false"
98
TORTURE_TIME="600"
109

1110
usage() {
12-
echo "Usage: $0 [-s <skip_install>] [-t <rcutorture_time>]" 1>&2
11+
echo "Usage: $0 [-t <rcutorture_time>]" 1>&2
1312
exit 1
1413
}
1514

16-
while getopts ':s:t:' opt; do
15+
while getopts ':t:' opt; do
1716
case "${opt}" in
18-
s) SKIP_INSTALL="${OPTARG}" ;;
1917
t) TORTURE_TIME="${OPTARG}" ;;
2018
*) usage ;;
2119
esac
@@ -25,7 +23,6 @@ done
2523
. "${TEST_DIR}/../../lib/sh-test-lib"
2624

2725
! check_root && error_msg "Please run this script as root."
28-
install_deps "gzip" "${SKIP_INSTALL}"
2926
create_out_dir "${OUTPUT}"
3027

3128
# Insert rcutoruture kernel module.

automated/linux/rcutorture/rcutorture.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,10 @@ metadata:
2727
- functional
2828

2929
params:
30-
SKIP_INSTALL: "false"
3130
TORTURE_TIME: 600
3231

3332
run:
3433
steps:
3534
- cd automated/linux/rcutorture
36-
- ./rcutorture.sh -s "${SKIP_INSTALL}" -t "${TORTURE_TIME}"
35+
- ./rcutorture.sh -t "${TORTURE_TIME}"
3736
- ../../utils/send-to-lava.sh ./output/result.txt

0 commit comments

Comments
 (0)