cs252/lab3-src/test-shell/test_cd2

21 lines
390 B
Plaintext
Raw Normal View History

2018-10-25 14:45:56 -04:00
#!/bin/bash
echo -e "\033[1;4;93mTest_cd2: cd pwd\033[0m"
rm csh-out shell-out
echo "cd" > shell-in
echo "/bin/pwd" >> shell-in
echo "cd" > csh-in
echo "/bin/pwd" >> csh-in
/bin/sh < csh-in > csh-out 2>&1
../shell < shell-in > shell-out 2>&1
diff shell-out csh-out
if [ $? -ne 0 ]
then
echo -e "\033[1;31m$0 Failed\033[0m"
exit -1
fi
echo -e "\033[1;32m$0 Passed\033[0m"
exit 0