mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 21:16:24 +00:00
meson: Do not use path separator in test names
Avoiding warnings like: WARNING: Target "elements/audioamplify" has a path separator in its name.
This commit is contained in:
parent
5f5caffa70
commit
d4032d9e0f
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ gst_deps = [gst_dep, gst_base_dep, gst_check_dep, gst_net_dep, gst_controller_de
|
|||
|
||||
foreach t : core_tests
|
||||
fname = t.get(0)
|
||||
test_name = fname.split('.').get(0)
|
||||
test_name = fname.split('.').get(0).underscorify()
|
||||
skip_test = t.get(1, false)
|
||||
link_with_libs = t.get(2, [])
|
||||
|
||||
|
|
Loading…
Reference in a new issue