Home | History | Annotate | Download | only in testcase
      1 test1:
      2 	echo TEST
      3 ifdef UNDEFINED
      4 	echo FAIL
      5 else
      6 	echo PASS
      7 endif
      8 	echo DONE
      9 
     10 test2:
     11 ifdef UNDEFINED
     12 	echo FAIL
     13 else
     14 	echo PASS
     15 endif
     16 	echo DONE
     17 
     18 test3:
     19 ifndef UNDEFINED
     20 	echo PASS
     21 else
     22 	echo FAIL
     23 endif
     24 	echo DONE
     25