git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2b60f8c
)
test: cmd: Use UTF_CONSOLE in tests
author
Simon Glass
<sjg@chromium.org>
Thu, 22 Aug 2024 13:57:57 +0000
(07:57 -0600)
committer
Tom Rini
<trini@konsulko.com>
Tue, 27 Aug 2024 00:51:49 +0000
(18:51 -0600)
Set this flag rather than doing things manually in the test.
Signed-off-by: Simon Glass <sjg@chromium.org>
test/cmd/pinmux.c
patch
|
blob
|
history
test/cmd/wget.c
patch
|
blob
|
history
diff --git
a/test/cmd/pinmux.c
b/test/cmd/pinmux.c
index
0b4e001
..
7ee9269
100644
(file)
--- a/
test/cmd/pinmux.c
+++ b/
test/cmd/pinmux.c
@@
-36,4
+36,5
@@
static int dm_test_cmd_pinmux_status_pinname(struct unit_test_state *uts)
return 0;
}
-DM_TEST(dm_test_cmd_pinmux_status_pinname, UTF_SCAN_PDATA | UTF_SCAN_FDT);
+DM_TEST(dm_test_cmd_pinmux_status_pinname, UTF_SCAN_PDATA | UTF_SCAN_FDT |
+ UTF_CONSOLE);
diff --git
a/test/cmd/wget.c
b/test/cmd/wget.c
index
1ce167c
..
a91aa24
100644
(file)
--- a/
test/cmd/wget.c
+++ b/
test/cmd/wget.c
@@
-223,4
+223,4
@@
static int net_test_wget(struct unit_test_state *uts)
return 0;
}
-LIB_TEST(net_test_wget,
0
);
+LIB_TEST(net_test_wget,
UTF_CONSOLE
);