1#!/bin/sh
2
3# Test copy-file on the file system of the build directory, which may be
4# a local file system or NFS mounted.
5
6. "${srcdir=.}/init.sh"; path_prepend_ .
7
8TMPDIR=`pwd`
9export TMPDIR
10
11$BOURNE_SHELL "${srcdir}/test-copy-file.sh"
12ret1=$?
13NO_STDERR_OUTPUT=1 $BOURNE_SHELL "${srcdir}/test-copy-file.sh"
14ret2=$?
15case $ret1 in
16  77 ) Exit $ret2 ;;
17  * ) Exit $ret1 ;;
18esac
19