selftests: kselftest_deps: fix l5_test() empty variable
In the function l5_test(), variable $tests is empty when there is no .mk file in the subsystem to be tested. It causes the following grep operation get stuck. This fix check the variable $tests, return when it is empty. Signed-off-by: Lu Dai <dai.lu@exordes.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
This commit is contained in:
parent
d4e6fbd245
commit
17909476d6
@ -244,6 +244,7 @@ l4_test()
|
||||
l5_test()
|
||||
{
|
||||
tests=$(find $(dirname "$test") -type f -name "*.mk")
|
||||
[[ -z "${tests// }" ]] && return
|
||||
test_libs=$(grep "^IOURING_EXTRA_LIBS +\?=" $tests | \
|
||||
cut -d "=" -f 2)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user