*** empty log message ***

svn path=/trunk/boinc/; revision=6324
This commit is contained in:
Rom Walton 2005-06-09 19:31:37 +00:00
parent 0e771a512f
commit d74f627d41
1 changed files with 31 additions and 0 deletions

31
doc/test_bvt.php Normal file
View File

@ -0,0 +1,31 @@
<?php
require_once("docutil.php");
page_head("Build Verification Tests for BOINC");
echo "
<h2>Build Verification Tests</h2>
<p>Build verification tests are used to determine if a particular release
of software is even worth passing off to the Alpha group for further testing.</p>
<p>They are not meant to be a comprehensive set of tests, just merely a set of
tests to determine if a build is good enough for further testing.</p>
<p>The following list of tests is meant for the single-user installation scenario:
<ol>
<li>Attach to a project.
<li>Schedule an RPC to the project server requesting results to process.
<li>Download the project executable and support files.
<li>Download a result and support files.
<li>Begin execution of the project executable using the retrieved result and support files.
<li>Complete a result and upload the resulting file(s) of the result execution.
<li>Accept the update GUI RPC to tell the client to report the completed result to the scheduler.
<li>Server Scheduler Exponential Back-off on connection failure.
<li>File download Exponential Back-off on transient connection failure.
<li>Server Scheduler Back-off with a requested value.
<li>Server Scheduler error message reported to client.
<li>File download resumes after back-off completes.
<li>File upload resumes after back-off completes.
</ol></p>
";
page_tail();
?>