diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-04-11 22:34:57 +0100 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2019-04-14 07:24:19 -0700 |
commit | ae87e2fab31590aaf8c2f0672d327d633f896cbd (patch) | |
tree | 88b78fa9736beecc9310ec0775e5f7e6a08ed1e1 /meta | |
parent | ed650ca30379279f6a0f1e8f9f728cc542504732 (diff) | |
download | openembedded-core-ae87e2fab31590aaf8c2f0672d327d633f896cbd.tar.gz openembedded-core-ae87e2fab31590aaf8c2f0672d327d633f896cbd.tar.bz2 openembedded-core-ae87e2fab31590aaf8c2f0672d327d633f896cbd.zip |
e2fsprogs: Skip slow ptest tests
The slow tests run unreliably with our current setup/infrsstructure/timeouts.
There are only five slow ones and having the other ~250 run reliably without timeouts
is the priority right now. We can revisit the slow tests at some later date if wanted.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/e2fsprogs/e2fsprogs/run-ptest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs/run-ptest b/meta/recipes-devtools/e2fsprogs/e2fsprogs/run-ptest index ef10b08bc8..c97c0377e9 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs/run-ptest +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs/run-ptest @@ -1,7 +1,7 @@ #!/bin/sh cd ./test -./test_script | sed -u -e '/:[[:space:]]ok/s/^/PASS: /' -e '/:[[:space:]]failed/s/^/FAIL: /' -e '/:[[:space:]]skipped/s/^/SKIP: /' +SKIP_SLOW_TESTS=yes ./test_script | sed -u -e '/:[[:space:]]ok/s/^/PASS: /' -e '/:[[:space:]]failed/s/^/FAIL: /' -e '/:[[:space:]]skipped/s/^/SKIP: /' rm -rf /var/volatile/tmp/*e2fsprogs* rm -f tmp-* rm -f *.tmp |