check_compiler.sh
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:0k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. #!/bin/sh
  2. #
  3. # Use `test/test_compiler' to test gw/wml_compiler.c
  4. set -e
  5. test/wml_tester -b test/testcase.wml | test/decompile | diff test/testcase.wml - > check_compiler.log 2>&1
  6. ret=$?
  7. if [ "$ret" != 0 ]
  8. then
  9. echo check_compiler failed 1>&2
  10. echo See check_compiler.log or run test/test_compiler for info 1>&2
  11. exit 1
  12. fi
  13. rm check_compiler.log