File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed
Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -13,3 +13,4 @@ add_test "-t spout:check_lib" Windows_only
1313# reflector
1414add_test -v run_reflector # basic sanity test
1515add_test " 8M 5004" run_reflector,should_timeout
16+ add_test " 8M 5004 -c lavc:c=H.264 -P 8000 ::1" run_reflector,should_timeout
Original file line number Diff line number Diff line change @@ -533,7 +533,9 @@ configure-messages:
533533tests : $(TEST_TARGET )
534534 @export DYLD_LIBRARY_PATH=$(MY_DYLD_LIBRARY_PATH ) ; $(TEST_TARGET )
535535
536+ .PHONY : check
536537check : tests
538+ $(srcdir ) /data/scripts/check.sh " $( TARGET) " " $( REFLECTOR_TARGET) "
537539
538540distcheck :
539541 $(TARGET )
Original file line number Diff line number Diff line change 1+ #! /bin/sh -eux
2+ # SPDX-License-Identifier: BSD-3-Clause
3+ # Copyright (c) 2019-2026 CESNET, zájmové sdružení právnických osob
4+ #
5+ # here are additional run-checks of uv/reflector
6+
7+ # UV_TARGET=$1
8+ REFLECTOR_TARGET=$2
9+
10+ # test hd-rum-transcode crasn as in the commit 66f1f0e2
11+ $REFLECTOR_TARGET 8M 5004 & pid=$!
12+ sleep 1
13+ kill $pid || true
14+ wait $pid || [ $? -eq 143 ]
You can’t perform that action at this time.
0 commit comments