boinc/test/test_stderr.php

26 lines
647 B
PHP

#! /usr/local/bin/php
<?php
// test the error-reporting mechanism
//
include_once("init.inc");
check_env_vars();
clear_db();
clear_data_dirs();
init_client_dirs("prefs1.xml");
copy_to_download_dir("input");
add_platform();
add_core_client();
add_user(null);
add_app("upper_case");
create_work("-appname upper_case -wu_name uc_wu -wu_template uc_wu -result_template uc_result -nresults 2 input input");
start_feeder();
run_client();
stop_feeder();
check_results_done();
compare_file("uc_wu_0_0", "uc_correct_output");
compare_file("uc_wu_1_0", "uc_correct_output");
?>