Print this page
    
2605 want to resume interrupted zfs send
Reviewed by: George Wilson <george.wilson@delphix.com>
Reviewed by: Paul Dagnelie <pcd@delphix.com>
Reviewed by: Richard Elling <Richard.Elling@RichardElling.com>
Reviewed by: Xin Li <delphij@freebsd.org>
Reviewed by: Arne Jansen <sensille@gmx.net>
Approved by: Dan McDonald <danmcd@omniti.com>
    
      
        | Split | 
	Close | 
      
      | Expand all | 
      | Collapse all | 
    
    
          --- old/usr/src/test/zfs-tests/tests/functional/rsend/rsend_021_pos.ksh
          +++ new/usr/src/test/zfs-tests/tests/functional/rsend/rsend_021_pos.ksh
   1    1  #!/usr/bin/ksh
   2    2  
   3    3  #
   4    4  # This file and its contents are supplied under the terms of the
   5    5  # Common Development and Distribution License ("CDDL"), version 1.0.
   6    6  # You may only use this file in accordance with the terms of version
   7    7  # 1.0 of the CDDL.
   8    8  #
   9    9  # A full copy of the text of the CDDL should have accompanied this
  10   10  # source.  A copy of the CDDL is also available via the Internet at
  11   11  # http://www.illumos.org/license/CDDL.
  12   12  #
  13   13  
  14   14  #
  15   15  # Copyright (c) 2014, 2016 by Delphix. All rights reserved.
  16   16  #
  17   17  
  18   18  . $STF_SUITE/include/libtest.shlib
  19   19  . $STF_SUITE/tests/functional/rsend/rsend.kshlib
  20   20  
  21   21  #
  22   22  # Description:
  23   23  # Verify resumability of a full and incremental ZFS send/receive with the
  24   24  # -e (embedded) flag in the presence of a corrupted stream.
  25   25  #
  26   26  # Strategy:
  27   27  # 1. Start a full ZFS send with the -e flag (embedded), redirect output to
  28   28  #    a file
  29   29  # 2. Mess up the contents of the stream state file on disk
  30   30  # 3. Try ZFS receive, which should fail with a checksum mismatch error
  31   31  # 4. ZFS send to the stream state file again using the receive_resume_token
  32   32  # 5. ZFS receieve and verify the receive completes successfully
  33   33  # 6. Repeat steps on an incremental ZFS send
  34   34  #
  35   35  
  36   36  verify_runnable "both"
  
    | 
      ↓ open down ↓ | 
    36 lines elided | 
    
      ↑ open up ↑ | 
  
  37   37  
  38   38  log_assert "Verify resumability of a full and incremental ZFS send/receive " \
  39   39      "with the -e (embedded) flag"
  40   40  
  41   41  sendfs=$POOL/sendfs
  42   42  recvfs=$POOL2/recvfs
  43   43  streamfs=$POOL/stream
  44   44  
  45   45  log_onexit resume_cleanup $sendfs $streamfs
  46   46  
  47      -test_fs_setup $sendfs $recvfs $streamfs
       47 +test_fs_setup $sendfs $recvfs
  48   48  resume_test "zfs send -v -e $sendfs@a" $streamfs $recvfs
  49   49  resume_test "zfs send -v -e -i @a $sendfs@b" $streamfs $recvfs
  50   50  file_check $sendfs $recvfs
  51   51  
  52   52  log_pass "Verify resumability of a full and incremental ZFS send/receive " \
  53   53      "with the -e (embedded) flag"
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX