2002-04-30 22:22:54 +00:00
|
|
|
#! /usr/local/bin/php
|
|
|
|
<?php
|
|
|
|
// test multiple projects
|
|
|
|
//
|
|
|
|
|
|
|
|
include_once("init.inc");
|
|
|
|
|
2002-06-10 06:14:18 +00:00
|
|
|
check_env_vars();
|
2002-04-30 22:22:54 +00:00
|
|
|
clear_db();
|
|
|
|
clear_data_dirs();
|
|
|
|
init_client_dirs("account2.xml");
|
|
|
|
copy_to_download_dir("small_input");
|
|
|
|
add_platform();
|
|
|
|
add_core_client();
|
2002-05-29 23:25:21 +00:00
|
|
|
add_user(null);
|
2002-04-30 22:22:54 +00:00
|
|
|
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");
|
2002-06-10 06:14:18 +00:00
|
|
|
start_feeder();
|
|
|
|
run_client();
|
|
|
|
stop_feeder();
|
2002-04-30 22:22:54 +00:00
|
|
|
?>
|