Re: [PATCH v2 14/45] test: Support tests which can only be run manually

2022-10-14 Thread Simon Glass
Hi Heinrich, On Thu, 13 Oct 2022 at 10:19, Heinrich Schuchardt wrote: > > On 10/13/22 14:28, Simon Glass wrote: > > 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

Re: [PATCH v2 14/45] test: Support tests which can only be run manually

2022-10-13 Thread Heinrich Schuchardt
On 10/13/22 14:28, Simon Glass wrote: 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 working

[PATCH v2 14/45] test: Support tests which can only be run manually

2022-10-13 Thread Simon Glass
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 comma