mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
07f4eadc99
A common check before sending patches is to run all available tests on sandbox. But everytime I do this I have to look up the README. This presents quite a barrier to actually doing this. Add a shell script to help. To run the tests, type: test/run in the U-Boot directory, which should be easy to remember. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Teddy Reed <teddy.reed@gmail.com>
4 lines
66 B
Bash
Executable file
4 lines
66 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Run all tests
|
|
./test/py/test.py --bd sandbox --build
|