mirror of https://github.com/BOINC/boinc.git
46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
#! /usr/local/bin/php
|
|
<?php
|
|
// test whether the scheduling server filters out
|
|
// work units too big for client
|
|
|
|
include_once("test.inc");
|
|
|
|
$retval = 0;
|
|
|
|
$project = new Project;
|
|
$user = new User();
|
|
$host = new Host($user);
|
|
$app = new App("upper_case");
|
|
$app_version = new App_Version($app);
|
|
|
|
$project->add_user($user);
|
|
$project->add_app($app);
|
|
$project->add_app_version($app_version);
|
|
$project->install(); // must install projects before adding to hosts
|
|
$project->install_feeder();
|
|
|
|
$host->log_flags = "log_flags.xml";
|
|
$host->add_user($user,$project);
|
|
$host->install();
|
|
|
|
echo "adding work\n";
|
|
|
|
$work = new Work($app);
|
|
$work->wu_template = "uc_wu";
|
|
$work->result_template = "uc_result";
|
|
$work->redundancy = 1;
|
|
$work->rsc_disk = 1000000000000; // 1 TB
|
|
$work->rsc_fpops = 0;
|
|
array_push($work->input_files, "input");
|
|
$work->install($project);
|
|
|
|
$project->start_servers();
|
|
$host->run("-exit_when_idle -skip_cpu_benchmarks");
|
|
$project->stop();
|
|
|
|
$result->server_state = RESULT_STATE_OVER;
|
|
$project->check_results(0, $result);
|
|
|
|
exit($retval);
|
|
?>
|