Files
u-boot/test/dm
Simon Glass cbd71fad6d test: Support tests which can only be run manually
At present we normally write tests either in Python or in C. But most
Python tests end up doing a lot of checks which would be better done in C.
Checks done in C are orders of magnitude faster and it is possible to get
full access to U-Boot's internal workings, rather than just relying on
the command line.

The model is to have a Python test set up some things and then use C code
(in a unit test) to check that they were done correctly. But we don't want
those checks to happen as part of normal test running, since each C unit
tests is dependent on the associate Python tests, so cannot run without
it.

To acheive this, add a new UT_TESTF_MANUAL flag to use with the C 'check'
tests, so that they can be skipped by default when the 'ut' command is
used. Require that tests have a name ending with '_norun', so that pytest
knows to skip them.

Signed-off-by: Simon Glass <sjg@chromium.org>
2022-10-31 11:02:44 -04:00
..
2022-01-19 18:11:34 +01:00
2022-09-16 11:05:16 -04:00
2021-01-12 10:58:04 +05:30
2021-09-25 09:46:15 -06:00
2021-01-30 14:25:41 -07:00
2021-09-28 18:50:56 +03:00
2022-04-25 10:00:03 -04:00
2021-10-13 14:18:30 -07:00
2022-10-05 08:43:53 +02:00
2021-10-31 08:46:44 -04:00
2022-10-20 15:22:30 +08:00
2022-04-28 09:26:44 -04:00
2022-10-26 15:21:11 -04:00
2021-02-26 15:30:55 +01:00
2021-05-26 17:26:07 -04:00
2022-09-25 13:59:56 -06:00
2022-04-14 15:39:15 -04:00
2021-03-27 15:04:31 +13:00
2021-09-30 08:08:56 -04:00
2021-05-04 07:57:18 -04:00
2020-11-05 09:11:30 -07:00
2022-04-23 22:05:34 +02:00
2021-02-16 11:48:20 -05:00
2021-09-25 09:46:15 -06:00
2022-09-03 16:59:05 +03:00
2020-10-22 09:54:53 -04:00
2022-01-19 18:11:34 +01:00