mirror of https://github.com/BOINC/boinc.git
19 lines
449 B
PHP
19 lines
449 B
PHP
|
#! /usr/local/bin/php
|
||
|
<?php
|
||
|
// test multiple projects
|
||
|
//
|
||
|
|
||
|
include_once("init.inc");
|
||
|
|
||
|
clear_db();
|
||
|
clear_data_dirs();
|
||
|
init_client_dirs("account2.xml");
|
||
|
copy_to_download_dir("small_input");
|
||
|
add_platform();
|
||
|
add_core_client();
|
||
|
add_user();
|
||
|
add_app("upper_case");
|
||
|
create_work("-appname upper_case -wu_name uc_wu -wu_template uc_wu -result_template uc_result -nresults 2 small_input");
|
||
|
//run_client();
|
||
|
?>
|