Home | History | Annotate | Download | only in mtree

Lines Matching refs:output

28 # Postprocess mtree output, canonicalising portions that
87 # run mtree and check output
88 ( cd create && mtree -F ${FLAVOR} -c -k type,nlink,link,size,sha256 ) >output.raw \
90 h_postprocess <output.raw >output
91 h_check "$(atf_get_srcdir)/${FLAVOR}_d_create.out" output
125 # run mtree and check output
126 ( cd create && mtree -F ${FLAVOR} ) <"$(atf_get_srcdir)/${FLAVOR}_d_create.out" >output \
128 h_check /dev/null output
159 mtree -F ${FLAVOR} -C -K all <"$(atf_get_srcdir)/d_convert.in" >output
160 h_check "$(atf_get_srcdir)/d_convert_C.out" output
191 mtree -F ${FLAVOR} -C -S -K all <"$(atf_get_srcdir)/d_convert.in" >output
192 h_check "$(atf_get_srcdir)/d_convert_C_S.out" output
223 mtree -F ${FLAVOR} -D -K all <"$(atf_get_srcdir)/d_convert.in" >output
224 h_check "$(atf_get_srcdir)/d_convert_D.out" output
255 mtree -F ${FLAVOR} -D -S -K all <"$(atf_get_srcdir)/d_convert.in" >output
256 h_check "$(atf_get_srcdir)/d_convert_D_S.out" output
343 mtree -F ${FLAVOR} -C -M -K all <"$(atf_get_srcdir)/d_merge.in" >output
344 h_check "$(atf_get_srcdir)/d_merge_C_M.out" output
346 mtree -F ${FLAVOR} -C -M -S -K all <"$(atf_get_srcdir)/d_merge.in" >output
347 h_check "$(atf_get_srcdir)/d_merge_C_M_S.out" output
389 atf_check -s ignore -o save:output -x "mtree -F ${FLAVOR} -f mtree.spec"
391 if [ ! -n "$(egrep "extra: bar" output)" ]; then
441 atf_check -s ignore -o save:output \
444 if ! cut -f 3 output | egrep -q "bar file" || \
445 ! cut -f 3 output | egrep -q "bar link"; then
461 mtree -F ${FLAVOR} -c -n -O onlyfile >output
462 if [ ! -s output ]; then