PageRenderTime 34ms CodeModel.GetById 4ms RepoModel.GetById 0ms app.codeStats 0ms

/bin/testrpt

https://code.google.com/p/xmeta/
Korn Shell | 35 lines | 2 code | 0 blank | 33 comment | 0 complexity | d54a92f677a75e9889b5bb5e7118b075 MD5 | raw file
  1. #!/bin/env ksh
  2. #
  3. # Copyright (C) 2011 Young, Fey <fey.young@gmail.com>
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. #
  18. # SCRIPT: testrpt
  19. # AUTHOR: hiarcs <fey.young@gmail.com>
  20. # DATE: 2011-03-15
  21. #
  22. # PURPOSE: open the gradle test report
  23. #
  24. # set -n # Uncomment to check syntax without execution
  25. #
  26. # set -x # Uncomment to debug
  27. #
  28. default_browser=opera
  29. rpt=build/reports/tests/index.html
  30. #
  31. #if [ -s $rpt ]
  32. #then
  33. # $default_browser $rpt 2>&1 > /dev/null &
  34. #fi
  35. # End of script