all-tests
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:3k
源码类别:

CA认证

开发平台:

WINDOWS

  1. #!/bin/sh
  2. ## The contents of this file are subject to the Mozilla Public
  3. ## License Version 1.1 (the "License"); you may not use this file
  4. ## except in compliance with the License. You may obtain a copy of
  5. ## the License at http://www.mozilla.org/MPL/
  6. ##
  7. ## Software distributed under the License is distributed on an "AS
  8. ## IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9. ## implied. See the License for the specific language governing
  10. ## rights and limitations under the License.
  11. ##
  12. ## The Original Code is the MPI Arbitrary Precision Integer Arithmetic
  13. ## library.
  14. ##
  15. ## The Initial Developer of the Original Code is 
  16. ## Michael J. Fromberger <sting@linguist.dartmouth.edu>
  17. ##
  18. ## Portions created by Michael J. Fromberger are 
  19. ## Copyright (C) 1997, 1998, 1999, 2000 Michael J. Fromberger. 
  20. ## All Rights Reserved.
  21. ##
  22. ## Contributor(s):
  23. ##
  24. ## Alternatively, the contents of this file may be used under the
  25. ## terms of the GNU General Public License Version 2 or later (the
  26. ## "GPL"), in which case the provisions of the GPL are applicable
  27. ## instead of those above.  If you wish to allow use of your
  28. ## version of this file only under the terms of the GPL and not to
  29. ## allow others to use your version of this file under the MPL,
  30. ## indicate your decision by deleting the provisions above and
  31. ## replace them with the notice and other provisions required by
  32. ## the GPL.  If you do not delete the provisions above, a recipient
  33. ## may use your version of this file under either the MPL or the GPL.
  34. ECHO=/bin/echo
  35. MAKE=gmake
  36. $ECHO "n** Running unit tests for MPI libraryn"
  37. # Build the mpi-test program, which comprises all the unit tests for
  38. # the MPI library...
  39. $ECHO "Bringing mpi-test up to date ... "
  40. if $MAKE mpi-test ; then
  41.   :
  42. else
  43.   $ECHO " "
  44.   $ECHO "Make failed to build mpi-test."
  45.   $ECHO " "
  46.   exit 1
  47. fi
  48. if [ ! -x mpi-test ] ; then
  49.   $ECHO " "
  50.   $ECHO "Cannot find 'mpi-test' program, testing cannot continue."
  51.   $ECHO " "
  52.   exit 1
  53. fi
  54. # Get the list of available test suites...
  55. tests=`mpi-test list | awk '{print $1}'`
  56. errs=0
  57. # Run each test suite and check the result code of mpi-test
  58. for test in $tests ; do
  59.   $ECHO "$test ... c"
  60.   if mpi-test $test ; then
  61.     $ECHO "passed"
  62.   else
  63.     $ECHO "FAILED"
  64.     errs=1
  65.   fi
  66. done
  67. # If any tests failed, we'll stop at this point
  68. if [ "$errs" = "0" ] ; then
  69.   $ECHO "All unit tests passed"
  70. else
  71.   $ECHO "One or more tests failed"
  72.   exit 1
  73. fi
  74. # Now try to build the 'pi' program, and see if it can compute the
  75. # first thousand digits of pi correctly
  76. $ECHO "n** Running other testsn"
  77. $ECHO "Bringing 'pi' up to date ... "
  78. if $MAKE pi ; then
  79.     :
  80. else
  81.     $ECHO "nMake failed to build pi.n"
  82.     exit 1
  83. fi
  84. if [ ! -x pi ] ; then
  85.     $ECHO "nCannot find 'pi' program; testing cannot continue.n"
  86.     exit 1
  87. fi
  88. ./pi 2000 > /tmp/pi.tmp.$$
  89. if cmp tests/pi2k.txt /tmp/pi.tmp.$$ ; then
  90.     $ECHO "Okay!  The pi test passes."
  91. else
  92.     $ECHO "Oops!  The pi test failed. :("
  93.     exit 1
  94. fi
  95. rm -f /tmp/pi.tmp.$$
  96. exit 0
  97. # Here there be dragons