blob: a115de3434cb51dacce779c3b264144819f7c376 [file] [log] [blame]
test1:
echo TEST
ifdef UNDEFINED
echo FAIL
else
echo PASS
endif
echo DONE
test2:
ifdef UNDEFINED
echo FAIL
else
echo PASS
endif
echo DONE
test3:
ifndef UNDEFINED
echo PASS
else
echo FAIL
endif
echo DONE