Skip to content

Commit

Permalink
Skip tests that are slow on 32-bit builders
Browse files Browse the repository at this point in the history
zpool_create_024_pos, zvol_misc_002_pos, write_dirs_002_pos are slow
on the buildbot 32-bit builder. Skip the test cases for now on 32-bit
builders.

Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Signed-off-by: Giuseppe Di Natale <[email protected]>
Closes #6195
  • Loading branch information
dinatale2 authored and behlendorf committed Jun 7, 2017
1 parent ca8b210 commit 829aaf2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@

verify_runnable "global"

if is_32bit; then
log_unsupported "Test case runs slowly on 32 bit"
fi

function cleanup
{
if [[ -n "$child_pids" ]]; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@

verify_runnable "both"

if is_32bit; then
log_unsupported "Test case runs slowly on 32 bit"
fi

function cleanup
{
for file in `find $TESTDIR -type f`; do
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@

verify_runnable "global"

if is_32bit; then
log_unsupported "Test case runs slowly on 32 bit"
fi

volsize=$(zfs get -H -o value volsize $TESTPOOL/$TESTVOL)

function cleanup
Expand Down Expand Up @@ -88,7 +92,7 @@ done

if is_linux; then
EXIT_STATUS=4
sync
log_must sync
else
EXIT_STATUS=39
log_must lockfs -f $TESTDIR
Expand Down

0 comments on commit 829aaf2

Please sign in to comment.