1#!/bin/sh 2 3desc="chflags returns ENOENT if path or file does not exist" 4 5n0=`namegen` 6n1=`namegen` 7 8expect 0 mkdir ${n0} 0755 9expect ENOENT chflags ${n0}/${n1}/test UF_IMMUTABLE 10expect ENOENT chflags ${n0}/${n1} UF_IMMUTABLE 11expect 0 rmdir ${n0} 12