test_policy.htm 4.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  4. <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
  5. <meta name="ProgId" content="FrontPage.Editor.Document">
  6. <title>Boost Test Policies and Protocols</title>
  7. </head>
  8. <body bgcolor="#FFFFFF" text="#000000">
  9. <table border="1" bgcolor="#007F7F" cellpadding="2">
  10. <tr>
  11. <td bgcolor="#FFFFFF"><img src="../c++boost.gif" alt="c++boost.gif (8819 bytes)" width="277" height="86"></td>
  12. <td><a href="../index.htm"><font face="Arial" color="#FFFFFF"><big>Home</big></font></a></td>
  13. <td><a href="../libs/libraries.htm"><font face="Arial" color="#FFFFFF"><big>Libraries</big></font></a></td>
  14. <td><a href="../people/people.htm"><font face="Arial" color="#FFFFFF"><big>People</big></font></a></td>
  15. <td><a href="faq.htm"><font face="Arial" color="#FFFFFF"><big>FAQ</big></font></a></td>
  16. <td><a href="index.htm"><font face="Arial" color="#FFFFFF"><big>More</big></font></a></td>
  17. </tr>
  18. </table>
  19. <h1>Boost Test Policies and Protocols</h1>
  20. <p>The Boost libraries are intended to be both reliable and portable.&nbsp;
  21. Every experienced programmer knows that means each library must be tested against a suitable number of test cases, on a wide range of platforms,
  22. and then tested again (regression tested) every time a change is made and before
  23. every release.&nbsp;</p>
  24. <p>&quot;Quality assurance based on a wide range of targeted tests&quot; as one
  25. of the key answers to <a href="http://oldwww.comlab.ox.ac.uk/oucl/people/tony.hoare.html">C.A.R
  26. Hoare's</a> question <a href="http://oldwww.comlab.ox.ac.uk/oucl/users/tony.hoare/icse18.html">&quot;How
  27. did software get so reliable without proof.&quot;</a></p>
  28. <h2>Regression test</h2>
  29. <p>Boost uses an automatic <a href="regression.html"> regression test suite</a> which generates HTML
  30. <a href="../status/compiler_status.html">compiler
  31. status tables</a>.</p>
  32. <h2>Test Policy</h2>
  33. <h3>Required</h3>
  34. <ul>
  35. <li>Every Boost library should supply one or more suitable test programs to be
  36. exercised by the Boost <a href="regression.html"> regression test suite</a>.&nbsp; In addition to
  37. the usual compile-link-run tests expecting successful completion,
  38. compile-only or compile-and-link-only tests may be performed, and success
  39. for the test may be defined as failure of the steps.</li>
  40. <li>Test program execution must report errors by returning a non-zero value.&nbsp; They
  41. may also write to stdout or stderr, but that output should be relatively
  42. brief.&nbsp; Regardless of other output, a non-zero return value is the only
  43. way the regression test framework will recognize an error has
  44. occurred.&nbsp;Note that test programs to be included in the status tables must
  45. compile, link, and run quickly since the tests are executed many, many,
  46. times.</li>
  47. <li>Libraries with time consuming tests should be divided into a
  48. fast-execution basic test program for the status tables, and a separate
  49. full-coverage test program for exhaustive test cases.&nbsp; The basic test
  50. should concentrate on compilation issues so that the status tables
  51. accurately reflect the library's likelihood of correct compilation on a
  52. platform.</li>
  53. <li>If for any reason the usual test policies do not apply to a particular
  54. library, an alternate test strategy must be implemented. &nbsp;&nbsp;</li>
  55. </ul>
  56. <h3>Optional</h3>
  57. <ul>
  58. <li>Use the Boost Test Library for the construction of simple tests.</li>
  59. <li>[Planned] Use the Boost Unit Test Library for the construction of more complex tests
  60. and test suites.</li>
  61. <li>The Boost Program Execution Library is also available for very simple
  62. tests, but the Boost Test Library is much preferred even for very simple
  63. tests.</li>
  64. </ul>
  65. <h2>Suggested Protocol for Fixing Bugs or Adding Features.</h2>
  66. <ul>
  67. <li>First, add regression test cases that detects the bug or tests the
  68. feature. Sometimes adding one case suggests similar untested cases, and they
  69. are added too.</li>
  70. <li>Second, for bugs, run the regression test and verify that the bug is now
  71. detected.</li>
  72. <li>Third, then, and only then, fix the bug or add the feature.</li>
  73. <li>Finally, rerun the full regression tests - sometimes the change breaks
  74. something else.</li>
  75. </ul>
  76. <h2>History</h2>
  77. <p>The current regression test program was developed by Jens Maurer in December,
  78. 2000. The original regression test concept and program, including the automatic
  79. generation of HTML compiler status tables, was developed by Beman Dawes in June,
  80. 2000.</p>
  81. <h2>Acknowledgements</h2>
  82. <p>Written by Beman Dawes. Jens Maurer, Paul Moore, Gary Powell and Jeremy Siek contributed helpful suggestions.</p>
  83. <hr>
  84. <p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->09 January, 2003<!--webbot bot="Timestamp" endspan i-checksum="38582" -->
  85. </p>
  86. <p>&nbsp;</p>
  87. <p>&nbsp;</p>
  88. </body>
  89. </html>
粤ICP备19079148号