# Make sure that it is possible to do an `svms create' from
# a sub-directory:
rm -rf create_subdir
svms new -R create_subdir create_subdir
(cd create_subdir ; mkdir subdir ; svms mkdir subdir)
echo Hello > create_subdir/subdir/hello.txt
(cd create_subdir/subdir ;				\
 if svms create hello.txt ; then		\
    echo "Command succeeded" ; else		\
    echo "Command failed" ;			\
    fi)
Command succeeded
# Capture the directory structure:
ls -R create_subdir
SVMS
subdir

create_subdir/SVMS:
d.subdir
h.subdir
p.listing
p.project

create_subdir/SVMS/d.subdir:
h.hello.txt
p.listing

create_subdir/subdir:
hello.txt
cat create_subdir/SVMS/d.subdir/p.listing
H "SVMS Listing" 1. 2.
C 1.
F "hello.txt"  "{timestamp}" {hash} {zero_hash} F
E
rm -rf create_subdir
