File: test_1sec.php

package info (click to toggle)
boinc 5.4.11-4%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 21,440 kB
  • ctags: 16,986
  • sloc: cpp: 70,682; ansic: 45,747; php: 35,513; xml: 10,487; sh: 9,324; python: 4,291; makefile: 1,958; asm: 1,258; perl: 914; sql: 395; csh: 126; pascal: 124
file content (75 lines) | stat: -rw-r--r-- 2,618 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/local/bin/php -q
<?php {
    // $Id: test_1sec.php,v 1.18 2003/06/11 23:09:08 quarl Exp $

    // This tests whether the client handles multiple projects,
    // and whether CPU time is divided correctly between projects
    // The client should do work for project 2 5 times faster
    // than for project 1

    include_once("test.inc");

    test_msg("multiple projects with resource share");

    $project1 = new Project;
    $project2 = new Project;
    $user = new User();
    $host = new Host($user);

    $project1->add_core_and_version();
    $project1->add_app_and_version("upper_case");
    $project2->add_core_and_version();
    $project2->add_app_and_version("upper_case");

    $work = new Work();
    $work->wu_template = "uc_wu";
    $work->result_template = "uc_result";
    $work->redundancy = 5;
    $work->delay_bound = 60;
    array_push($work->input_files, "input");

    $project1->resource_share = 1;
    $project1->shmem_key = "0x12344321";
    $project1->short_name = "Project1";
    $project1->long_name = "Project1";
    $project1->add_user($user);
    $project1->install();      // must install projects before adding to hosts
    $project1->install_feeder();

    $project2->resource_share = 5;
    $project2->shmem_key = "0x12345678";
    $project2->short_name = "Project2";
    $project2->long_name = "Project2";
    $project2->add_user($user);
    $project2->install();      // must install projects before adding to hosts
    $project2->install_feeder();

    $host->add_user($user,$project1);
    $host->add_user($user,$project2);
    $host->install();

    $work->install($project1);
    $work->install($project2);

    $project1->start_servers();
    $project2->start_servers();
    $host->run("-exit_when_idle -skip_cpu_benchmarks");
    $project1->stop(1);
    $project2->stop();

    $result->server_state = RESULT_SERVER_STATE_OVER;
    $project1->check_results(5, $result);
    $project1->compare_file("uc_wu_0_0", "uc_correct_output");
    $project1->compare_file("uc_wu_1_0", "uc_correct_output");
    $project1->compare_file("uc_wu_2_0", "uc_correct_output");
    $project1->compare_file("uc_wu_3_0", "uc_correct_output");
    $project1->compare_file("uc_wu_4_0", "uc_correct_output");
    $project2->check_results(5, $result);
    $project2->compare_file("uc_wu_0_0", "uc_correct_output");
    $project2->compare_file("uc_wu_1_0", "uc_correct_output");
    $project2->compare_file("uc_wu_2_0", "uc_correct_output");
    $project2->compare_file("uc_wu_3_0", "uc_correct_output");
    $project2->compare_file("uc_wu_4_0", "uc_correct_output");

    test_done();
} ?>