dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / test / zfs-tests / tests / functional / atime / atime_common.kshlib
blob64ffdf0854872adb7735796c0e71f2de38bab699
2 # CDDL HEADER START
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
19 # CDDL HEADER END
23 # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24 # Use is subject to license terms.
28 # Copyright (c) 2016 by Delphix. All rights reserved.
31 . $STF_SUITE/tests/functional/atime/atime.cfg
32 . $STF_SUITE/include/libtest.shlib
35 # Check if the access time for specified file is updated.
37 # $1 Given an absolute path to a file name
39 # Return value:
40 #       0 -> The access time is updated.
41 #       1 -> The access time is not updated.
43 function check_atime_updated
45         typeset filename=$1
47         typeset before=$(ls -Eu $filename | awk '{print $7}')
48         log_must cat $filename
49         typeset after=$(ls -Eu $filename | awk '{print $7}')
51         if [[ $before != $after ]]; then
52                 return 0
53         else
54                 return 1
55         fi
58 function setup_snap_clone
60         # Create two file to verify snapshot.
61         log_must touch $TESTDIR/$TESTFILE
63         create_snapshot $TESTPOOL/$TESTFS $TESTSNAP
64         create_clone $TESTPOOL/$TESTFS@$TESTSNAP $TESTPOOL/$TESTCLONE
67 function cleanup
69         destroy_clone $TESTPOOL/$TESTCLONE
70         destroy_snapshot $TESTPOOL/$TESTFS@$TESTSNAP