diff options
| author | Simon Glass <[email protected]> | 2018-11-18 08:14:29 -0700 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2018-11-29 09:30:05 -0700 |
| commit | 499fde5c23921add3cf95fecfe0b03d717d5a33b (patch) | |
| tree | e27d66a946453ab7095e5a917adb7ed21a443940 /test/py/tests | |
| parent | c83c436de0f8f02b7626fdd9a55663845facb26f (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 <[email protected]>
Diffstat (limited to 'test/py/tests')
| -rw-r--r-- | test/py/tests/test_fs/test_basic.py | 1 | ||||
| -rw-r--r-- | test/py/tests/test_fs/test_ext.py | 1 | ||||
| -rw-r--r-- | test/py/tests/test_fs/test_mkdir.py | 1 | ||||
| -rw-r--r-- | test/py/tests/test_fs/test_unlink.py | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/test/py/tests/test_fs/test_basic.py b/test/py/tests/test_fs/test_basic.py index c067cc9ba3f..140ca29ac73 100644 --- a/test/py/tests/test_fs/test_basic.py +++ b/test/py/tests/test_fs/test_basic.py @@ -13,6 +13,7 @@ import re from fstest_defs import * @pytest.mark.boardspec('sandbox') class TestFsBasic(object): def test_fs1(self, u_boot_console, fs_obj_basic): """ diff --git a/test/py/tests/test_fs/test_ext.py b/test/py/tests/test_fs/test_ext.py index 38217d08bf6..06cad5516d5 100644 --- a/test/py/tests/test_fs/test_ext.py +++ b/test/py/tests/test_fs/test_ext.py @@ -13,6 +13,7 @@ import re from fstest_defs import * @pytest.mark.boardspec('sandbox') class TestFsExt(object): def test_fs_ext1(self, u_boot_console, fs_obj_ext): """ diff --git a/test/py/tests/test_fs/test_mkdir.py b/test/py/tests/test_fs/test_mkdir.py index d9da97b56b5..b3fe11cf3b5 100644 --- a/test/py/tests/test_fs/test_mkdir.py +++ b/test/py/tests/test_fs/test_mkdir.py @@ -11,6 +11,7 @@ This test verifies mkdir operation on file system. import pytest @pytest.mark.boardspec('sandbox') class TestMkdir(object): def test_mkdir1(self, u_boot_console, fs_obj_mkdir): """ diff --git a/test/py/tests/test_fs/test_unlink.py b/test/py/tests/test_fs/test_unlink.py index 69c1a6e078c..2b817468eda 100644 --- a/test/py/tests/test_fs/test_unlink.py +++ b/test/py/tests/test_fs/test_unlink.py @@ -12,6 +12,7 @@ on file system. import pytest @pytest.mark.boardspec('sandbox') class TestUnlink(object): def test_unlink1(self, u_boot_console, fs_obj_unlink): """ |
