waveterm/tests/copytests/cases/test044.sh
Sylvie Crowe 8b262445d5
feat: print test text when the test fails (#1927)
Adds the following changes to copy tests:
- print the body of the test if the test fails
- add a count of how many tests passed out of the total
- remove the -r flag from the tests
2025-02-07 14:45:47 -08:00

15 lines
345 B
Bash
Executable file

# copy a doubly nested directory containing a file to a non-existant directory
# ensure this succeeds and the new files exist with the first directory renamed
set -e
cd "$HOME/testcp"
mkdir foo
mkdir foo/bar
touch foo/bar/baz.txt
wsh file copy foo qux
if [ ! -f qux/bar/baz.txt ]; then
echo "qux/bar/baz.txt does not exist"
exit 1
fi