mirror of https://github.com/BOINC/boinc.git
21 lines
452 B
PHP
21 lines
452 B
PHP
#!/usr/local/bin/php -q
|
|
<?php {
|
|
// $Id$
|
|
|
|
$use_proxy_cgi = 1;
|
|
|
|
include_once("test_uc.inc");
|
|
test_msg("upload backoff");
|
|
|
|
start_proxy('print "#$nconnections url=$url time=$time\n"; exit 1 if ($nconnections < 4); if_done_kill(); if_done_ping();');
|
|
|
|
$project = new ProjectUC;
|
|
|
|
// $pid = $host->run_asynch("-exit_when_idle");
|
|
|
|
$project->start_servers_and_host();
|
|
$project->validate_all_and_stop();
|
|
|
|
test_done();
|
|
} ?>
|