#!/bin/sh # # Copyright (c) 2003 Dan Nelson # All rights reserved. # # Please see src/share/examples/etc/bsd-style-copyright. # # $FreeBSD: stable/11/usr.sbin/fmtree/test/test02.sh 121798 2003-10-31 13:39:19Z phk $ # set -e setglobal TMP = "/tmp/mtree.$Pid" rm -rf $(TMP) mkdir -p $(TMP) $(TMP)/mr $(TMP)/mt touch -t 199901020304 $(TMP)/mr/oldfile touch $(TMP)/mt/oldfile mtree -c -p $(TMP)/mr > ${TMP}/_ mtree -U -r -p $(TMP)/mt < ${TMP}/_ > /dev/null setglobal x = "x$[shell {cd $(TMP)/mr ; ls -l 2>&1} || true]" setglobal y = "x$[shell {cd $(TMP)/mt ; ls -l 2>&1} || true]" if test $x != $y { echo "ERROR Update of mtime failed" 1>&2 rm -rf $(TMP) exit 1 } rm -rf $(TMP) exit 0