summaryrefslogtreecommitdiff
path: root/test/README
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2018-11-18 08:14:29 -0700
committerSimon Glass <sjg@chromium.org>2018-11-29 09:30:05 -0700
commit499fde5c23921add3cf95fecfe0b03d717d5a33b (patch)
treee27d66a946453ab7095e5a917adb7ed21a443940 /test/README
parentc83c436de0f8f02b7626fdd9a55663845facb26f (diff)
test: Add a 'make qcheck' target for quicker testing
At present tests are quite slow to run, over a minute on my machine. This presents a considerable barrier to bisecting for failures. The slowest tests are the filesystem ones and the buildman --fetch-arch test. Add a new 'qcheck' target that skips these tests. This reduces test time down to about 40 second, still too long, but bearable. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/README')
-rw-r--r--test/README6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/README b/test/README
index 873a4e1931..4bc9ca3a6a 100644
--- a/test/README
+++ b/test/README
@@ -10,11 +10,15 @@ Running tests
To run most tests on sandbox, type this:
- test/run
+ make check
in the U-Boot directory. Note that only the pytest suite is run using this
command.
+Some tests take ages to run. To run just the quick ones, type this:
+
+ make qcheck
+
Sandbox
-------