diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-04-11 22:34:57 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-04-12 09:29:06 +0100 |
commit | 4fe07763c7078c67e45be9952cbedcf8c94b86ea (patch) | |
tree | ad1e056d5cedf7e92d8d79fcad0fa6a52dc869e4 /meta/recipes-devtools | |
parent | 00a0e90f17bd2e66be56c060f4cfc54f6ffdade8 (diff) | |
download | poky-4fe07763c7078c67e45be9952cbedcf8c94b86ea.tar.gz |
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.
(From OE-Core rev: 7469c2a5595337fc4407fa7a2ad06b5bf2347545)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-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 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | cd ./test | 3 | cd ./test |
4 | ./test_script | sed -u -e '/:[[:space:]]ok/s/^/PASS: /' -e '/:[[:space:]]failed/s/^/FAIL: /' -e '/:[[:space:]]skipped/s/^/SKIP: /' | 4 | SKIP_SLOW_TESTS=yes ./test_script | sed -u -e '/:[[:space:]]ok/s/^/PASS: /' -e '/:[[:space:]]failed/s/^/FAIL: /' -e '/:[[:space:]]skipped/s/^/SKIP: /' |
5 | rm -rf /var/volatile/tmp/*e2fsprogs* | 5 | rm -rf /var/volatile/tmp/*e2fsprogs* |
6 | rm -f tmp-* | 6 | rm -f tmp-* |
7 | rm -f *.tmp | 7 | rm -f *.tmp |