Back to home page

Enduro/X

 
 

    


0001 #!/bin/bash
0002 
0003 if [ "X$HELLO1" != "XYTHIS IS 1" ]; then
0004     echo "TESTERROR ! Invalid value for HELLO1: [$HELLO1]"
0005 fi
0006 
0007 if [ "X$HELLO2" != "XYTHIS IS 2" ]; then
0008     echo "TESTERROR ! Invalid value for HELLO2: [$HELLO2]"
0009 fi
0010 
0011 if [ "X$HELLO6" != "X" ]; then
0012     echo "TESTERROR ! Invalid value for HELLO6: [$HELLO6]"
0013 fi
0014 
0015 if [ "X$HELLO7" != "XYTHIS IS 6" ]; then
0016     echo "TESTERROR ! Invalid value for HELLO7: [$HELLO7]"
0017 fi
0018 
0019 if [ "X$HELLO10" != "XYTHIS IS 10" ]; then
0020     echo "TESTERROR ! Invalid value for HELLO10: [$HELLO10]"
0021 fi
0022 
0023 
0024 echo "test55.sh - done"