check_compiler.sh
资源名称:gateway-1.2.1 [点击查看]
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:0k
源码类别:
手机WAP编程
开发平台:
WINDOWS
- #!/bin/sh
- #
- # Use `test/test_compiler' to test gw/wml_compiler.c
- set -e
- test/wml_tester -b test/testcase.wml | test/decompile | diff test/testcase.wml - > check_compiler.log 2>&1
- ret=$?
- if [ "$ret" != 0 ]
- then
- echo check_compiler failed 1>&2
- echo See check_compiler.log or run test/test_compiler for info 1>&2
- exit 1
- fi
- rm check_compiler.log