Print this page
NEX-10069 ZFS_READONLY is a little too strict
Reviewed by: Sanjay Nadkarni <sanjay.nadkarni@nexenta.com>
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com>
NEX-9752 backport illumos 6950 ARC should cache compressed data
Reviewed by: Saso Kiselkov <saso.kiselkov@nexenta.com>
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com>
6950 ARC should cache compressed data
Reviewed by: Prakash Surya <prakash.surya@delphix.com>
Reviewed by: Dan Kimmel <dan.kimmel@delphix.com>
Reviewed by: Matt Ahrens <mahrens@delphix.com>
Reviewed by: Paul Dagnelie <pcd@delphix.com>
Reviewed by: Don Brady <don.brady@intel.com>
Reviewed by: Richard Elling <Richard.Elling@RichardElling.com>
Approved by: Richard Lowe <richlowe@richlowe.net>
6248 zpool_create_008_pos and zpool_create_009_neg can fail intermittently
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed by: George Wilson <george.wilson@delphix.com>
Approved by: Richard Lowe <richlowe@richlowe.net>
5767 fix several problems with zfs test suite
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed by: Christopher Siden <christopher.siden@delphix.com>
Approved by: Gordon Ross <gwr@nexenta.com>
NEX-3974 Remove timing issues so the robot can run consistently
Reviewed by: Steve Peng <steve.peng@nexenta.com>
Reviewed by: Josef Sipek <josef.sipek@nexenta.com>
Reviewed by: Alek Pinchuk <alek.pinchuk@nexenta.com>

Split Close
Expand all
Collapse all
          --- old/usr/src/test/zfs-tests/include/default.cfg
          +++ new/usr/src/test/zfs-tests/include/default.cfg
↓ open down ↓ 18 lines elided ↑ open up ↑
  19   19  # CDDL HEADER END
  20   20  #
  21   21  
  22   22  #
  23   23  # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
  24   24  # Use is subject to license terms.
  25   25  #
  26   26  
  27   27  #
  28   28  # Copyright (c) 2012, 2016 by Delphix. All rights reserved.
       29 +# Copyright 2015 Nexenta Systems, Inc.  All rights reserved.
  29   30  #
  30   31  
  31   32  . $STF_SUITE/include/libtest.shlib
  32   33  
  33   34  # Define run length constants
  34   35  export RT_LONG="3"
  35   36  export RT_MEDIUM="2"
  36   37  export RT_SHORT="1"
  37   38  
  38   39  # Define macro for zone test
↓ open down ↓ 73 lines elided ↑ open up ↑
 112  113  export LONGFSNAME="fsysname50charslong_012345678901234567890123456789"
 113  114  export SNAPFS="$TESTPOOL/$TESTFS@$TESTSNAP"
 114  115  export SNAPFS1="$TESTPOOL/$TESTVOL@$TESTSNAP"
 115  116  
 116  117  export VOLSIZE=150m
 117  118  export BIGVOLSIZE=1eb
 118  119  
 119  120  # Default to limit disks to be checked
 120  121  export MAX_FINDDISKSNUM=6
 121  122  
      123 +# Default to determine the time to sleep before retrying a zpool destroy
      124 +export DESTROY_SLEEP_TIME=10
      125 +
      126 +# Default to determine the time to sleep before retrying a zpool export
      127 +export EXPORT_SLEEP_TIME=10
      128 +
      129 +# Default to determine the number of times to retry a command
      130 +export NUM_RETRIES=7
      131 +
 122  132  # Default minimum size for file based vdevs in the test suite
 123  133  export MINVDEVSIZE=$((256 * 1024 * 1024))
 124  134  
 125  135  # Minimum vdev size possible as defined in the OS
 126  136  export SPA_MINDEVSIZE=$((64 * 1024 * 1024))
 127  137  
 128  138  export AUTO_SNAP=$(svcs -a | grep auto-snapshot | grep online | awk \
 129  139      '{print $3}')
 130  140  
 131  141  # finally, if we're running in a local zone
↓ open down ↓ 11 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX