2002-07-17 18:33:37 +00:00
|
|
|
#! /usr/local/bin/php
|
|
|
|
<?php
|
|
|
|
//Run the comprehensive suite of tests
|
|
|
|
//
|
|
|
|
|
2003-06-06 19:00:42 +00:00
|
|
|
passthru("./test_1sec.php", $retval);
|
|
|
|
if($retval) printf("./test_1sec.php did not run correctly\n");
|
2003-04-01 07:34:08 +00:00
|
|
|
sleep(3);
|
|
|
|
|
2003-06-06 19:00:42 +00:00
|
|
|
PassThru("./test_backend.php", $retval);
|
|
|
|
if($retval) printf("./test_backend.php did not run correctly\n");
|
2003-04-01 07:34:08 +00:00
|
|
|
sleep(3);
|
2002-07-17 18:33:37 +00:00
|
|
|
|
2003-06-06 19:00:42 +00:00
|
|
|
PassThru("./test_concat.php", $retval);
|
|
|
|
if($retval) printf("./test_concat.php did not run correctly\n");
|
2003-04-01 07:34:08 +00:00
|
|
|
sleep(3);
|
2002-07-17 18:33:37 +00:00
|
|
|
|
2003-06-06 19:00:42 +00:00
|
|
|
PassThru("./test_rsc.php", $retval);
|
|
|
|
if($retval) printf("./test_rsc.php did not run correctly\n");
|
2003-04-01 07:34:08 +00:00
|
|
|
sleep(3);
|
|
|
|
|
2003-06-06 19:00:42 +00:00
|
|
|
PassThru("./test_sticky.php", $retval);
|
|
|
|
if($retval) printf("./test_sticky.php did not run correctly\n");
|
2003-04-01 07:34:08 +00:00
|
|
|
sleep(3);
|
2002-07-17 18:33:37 +00:00
|
|
|
|
2003-06-06 19:00:42 +00:00
|
|
|
passthru("./test_uc.php", $retval);
|
|
|
|
if($retval) printf("./test_uc.php did not run correctly\n");
|
2002-07-17 18:33:37 +00:00
|
|
|
?>
|