Skip to content

Commit f6c1b3d

Browse files
committed
Public CI Video Decode and Encode Shell Scripts.
Implemented shell scripts for public CI for Decode and Encode Scenarios. Added Video encode test script Added Video decode test script Added readme document for video validation Implemented Function for ActiveIP Implemented Function for wget pull resource Implemented Functions for untar of resource Addressed Comments from earlier commit (Removed logs capturing as they are not required for Video Scenarios) Signed-off-by: Abhishek <[email protected]>
1 parent d8ef90a commit f6c1b3d

File tree

2 files changed

+0
-22
lines changed
  • Runner/suites/Multimedia/Video

2 files changed

+0
-22
lines changed

Runner/suites/Multimedia/Video/iris_v4l2_video_decode/run.sh

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,6 @@ extract_tar_from_url https://github.com/qualcomm-linux/qcom-linux-testkit/releas
2020
mkdir -p results/iris_v4l2_video_decode
2121
chmod -R 755 results/iris_v4l2_video_decode
2222

23-
# Start logs
24-
dmesg -C
25-
tail -f /var/log/syslog > results/iris_v4l2_video_decode/syslog_log.txt &
26-
SYSLOG_PID=$!
27-
dmesg -w > results/iris_v4l2_video_decode/dmesg_log.txt &
28-
DMESG_PID=$!
29-
3023
# Run the first test
3124
iris_v4l2_test --config ./suites/Multimedia/Video/iris_v4l2_video_decode/h264Decoder.json --loglevel 15 >> ./suites/Multimedia/Video/iris_v4l2_video_decode/video_dec.txt
3225

@@ -38,8 +31,4 @@ else
3831
echo "$TESTNAME FAIL" > $test_path/$TESTNAME.res
3932
fi
4033

41-
# Cleanup
42-
kill $DMESG_PID
43-
kill $SYSLOG_PID
44-
4534
log_info "-------------------Completed $TESTNAME Testcase----------------------------"

Runner/suites/Multimedia/Video/iris_v4l2_video_encode/run.sh

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,6 @@ extract_tar_from_url https://github.com/qualcomm-linux/qcom-linux-testkit/releas
2020
mkdir -p results/iris_v4l2_video_encode
2121
chmod -R 755 results/iris_v4l2_video_encode
2222

23-
# Start logs
24-
dmesg -C
25-
tail -f /var/log/syslog > results/iris_v4l2_video_encode/syslog_log.txt &
26-
SYSLOG_PID=$!
27-
dmesg -w > results/iris_v4l2_video_encode/dmesg_log.txt &
28-
DMESG_PID=$!
29-
3023
# Run the first test
3124
iris_v4l2_test --config ./suites/Multimedia/Video/iris_v4l2_video_encode/h264Encoder.json --loglevel 15 >> ./suites/Multimedia/Video/iris_v4l2_video_encode/video_enc.txt
3225

@@ -38,8 +31,4 @@ else
3831
echo "$TESTNAME FAIL" > $test_path/$TESTNAME.res
3932
fi
4033

41-
# Cleanup
42-
kill $DMESG_PID
43-
kill $SYSLOG_PID
44-
4534
log_info "-------------------Completed $TESTNAME Testcase----------------------------"

0 commit comments

Comments
 (0)