mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
2239c8b7ac
And fix a deprecation warning.
12 lines
317 B
Makefile
12 lines
317 B
Makefile
TEST_DATA = \
|
|
logs/trace.latency.log
|
|
|
|
all:
|
|
|
|
logs/trace.latency.log:
|
|
mkdir -p logs; \
|
|
GST_DEBUG="GST_TRACER:7" GST_TRACERS=latency GST_DEBUG_FILE=$@ \
|
|
gst-launch-1.0 -q audiotestsrc num-buffers=10 wave=silence ! audioconvert ! autoaudiosink
|
|
|
|
check: $(TEST_DATA)
|
|
python3 -m unittest discover tracer "*_test.py"
|