This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
sys_prog/splitter/tests/test7.sh

12 lines
210 B
Bash
Executable File

#!/bin/sh
TMP=`rm -rf tests/dir7`
TMP=`mkdir tests/dir7`
TMP=`cp tests/src/*.pdf tests/dir7/`
TMP=`./splitter split tests/dir5/imaginary.pdf 1024`
TMP=`echo $?`
if [ $TMP == "0" ]; then
echo 0
else
echo 1
fi