Patch "kunit: fix debugfs code to use enum kunit_status, not bool" has been added to the 5.15-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    kunit: fix debugfs code to use enum kunit_status, not bool

to the 5.15-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     kunit-fix-debugfs-code-to-use-enum-kunit_status-not-.patch
and it can be found in the queue-5.15 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit a5c12232c01f5417d2d5bcfcf80b9d85240d6583
Author: Daniel Latypov <dlatypov@xxxxxxxxxx>
Date:   Fri Apr 29 11:12:59 2022 -0700

    kunit: fix debugfs code to use enum kunit_status, not bool
    
    [ Upstream commit 38289a26e1b8a37755f3e07056ca416c1ee2a2e8 ]
    
    Commit 6d2426b2f258 ("kunit: Support skipped tests") switched to using
    `enum kunit_status` to track the result of running a test/suite since we
    now have more than just pass/fail.
    
    This callsite wasn't updated, silently converting to enum to a bool and
    then back.
    
    Fixes: 6d2426b2f258 ("kunit: Support skipped tests")
    Signed-off-by: Daniel Latypov <dlatypov@xxxxxxxxxx>
    Reviewed-by: Brendan Higgins <brendanhiggins@xxxxxxxxxx>
    Signed-off-by: Shuah Khan <skhan@xxxxxxxxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/lib/kunit/debugfs.c b/lib/kunit/debugfs.c
index b71db0abc12b..1048ef1b8d6e 100644
--- a/lib/kunit/debugfs.c
+++ b/lib/kunit/debugfs.c
@@ -52,7 +52,7 @@ static void debugfs_print_result(struct seq_file *seq,
 static int debugfs_print_results(struct seq_file *seq, void *v)
 {
 	struct kunit_suite *suite = (struct kunit_suite *)seq->private;
-	bool success = kunit_suite_has_succeeded(suite);
+	enum kunit_status success = kunit_suite_has_succeeded(suite);
 	struct kunit_case *test_case;
 
 	if (!suite || !suite->log)



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux