diff options
| author | Petr Mladek <pmladek@suse.com> | 2026-06-17 08:58:22 +0200 |
|---|---|---|
| committer | Petr Mladek <pmladek@suse.com> | 2026-06-17 08:58:22 +0200 |
| commit | 2a706d98d50a28dd635b3d028531d839c1f5f19a (patch) | |
| tree | 0ba637c4bc75928b250c21dd4480ccd9344de14f /lib/tests/printf_kunit.c | |
| parent | 809967e0aed09a851ad7e3aa19fd1ac6ec464337 (diff) | |
| parent | 7cde5613006c1a1192efe3da3572d35a2fa5fbfe (diff) | |
| download | linux-next-2a706d98d50a28dd635b3d028531d839c1f5f19a.tar.gz linux-next-2a706d98d50a28dd635b3d028531d839c1f5f19a.zip | |
Merge branch 'for-7.2-vsprintf-pmM-uppercase' into for-linus
Diffstat (limited to 'lib/tests/printf_kunit.c')
| -rw-r--r-- | lib/tests/printf_kunit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/tests/printf_kunit.c b/lib/tests/printf_kunit.c index 58e639b01e83..eccf041ebd56 100644 --- a/lib/tests/printf_kunit.c +++ b/lib/tests/printf_kunit.c @@ -435,8 +435,10 @@ mac(struct kunit *kunittest) test("2d:48:d6:fc:7a:05", "%pM", addr); test("05:7a:fc:d6:48:2d", "%pMR", addr); + test("05:7A:FC:D6:48:2D", "%pMRU", addr); test("2d-48-d6-fc-7a-05", "%pMF", addr); test("2d48d6fc7a05", "%pm", addr); + test("2D48D6FC7A05", "%pmU", addr); test("057afcd6482d", "%pmR", addr); } |
