Added test of water mark, called test_water.php

svn path=/trunk/boinc/; revision=139
This commit is contained in:
Michael Gary 2002-06-28 17:49:40 +00:00
parent 20aefffb33
commit a07a5e899a
2 changed files with 21 additions and 0 deletions

20
test/test_water.php Normal file
View File

@ -0,0 +1,20 @@
#! /usr/local/bin/php
<?php
//make sure that the scheduler sends the correct number of wu's in test_uc
include_once("init.inc");
PassThru("test_uc.php | grep -c '<scheduler_request>' > tw_results",
$retval
);
if($retval) {
echo "test_uc.php did not run correctly\n";
}
$f = fopen("tw_results", "r");
fscanf($f, "%d", $val);
if($val > 2) {
echo "Water marks are working\n";
} else {
echo "Water marks are not working\n";
}
?>

1
test/tw_correct Normal file
View File

@ -0,0 +1 @@
3