]> git.baikalelectronics.ru Git - kernel.git/commit
kunit: fix missing f in f-string in run_checks.py
authorDaniel Latypov <dlatypov@google.com>
Thu, 27 Jan 2022 22:17:10 +0000 (14:17 -0800)
committerShuah Khan <skhan@linuxfoundation.org>
Wed, 2 Feb 2022 18:12:15 +0000 (11:12 -0700)
commit77344b6e21aa7c75a92258942a0a5f0b0fbf117e
tree4937e2b8129498cc8d91f71b80df2501b4a19455
parent4db3c1d1b0c50d2343012d8a27c65605b0a1f20d
kunit: fix missing f in f-string in run_checks.py

We're missing the `f` prefix to have python do string interpolation, so
we'd never end up printing what the actual "unexpected" error is.

Fixes: aeafc5199de2 ("kunit: add run_checks.py script to validate kunit changes")
Signed-off-by: Daniel Latypov <dlatypov@google.com>
Reviewed-by: David Gow <davidgow@google.com>
Reviewed-by: Brendan Higgins <brendanhiggins@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/kunit/run_checks.py