run-http2-tests
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. #!/bin/sh
  2. #
  3. # Compare lynx -source output and test_http output on a number of URLs.
  4. #
  5. # Lars Wirzenius
  6. for url in `cat test/http-test-urls`
  7. do
  8. echo "Testing $url..."
  9. lynx -source "$url" > lynx.tmp
  10. test/test_http -s "$url" > http.tmp
  11. test/test_http -s "$url" > http2.tmp
  12. if diff -u lynx.tmp http.tmp >/dev/null && 
  13.    diff -u lynx.tmp http2.tmp > /dev/null
  14. then
  15. :
  16. else
  17. echo "Lynx and test_http disagree. Oops."
  18. echo "URL is <$url>."
  19. echo "See lynx.tmp and http2.tmp."
  20. exit 1
  21. fi
  22. done
  23. echo "All tests passed. Very good."
  24. rm -f lynx.tmp http.tmp http2.tmp