*** empty log message ***

svn path=/trunk/boinc/; revision=2114
This commit is contained in:
Karl Chen 2003-08-15 20:27:21 +00:00
parent ddcc744a2b
commit d4bf03fde6
6 changed files with 6 additions and 4 deletions

View File

@ -64,6 +64,7 @@ create table user (
url varchar(254),
send_email smallint not null,
show_hosts smallint not null,
posts integer unsigned not null,
primary key (id)
);

View File

@ -15,7 +15,7 @@ class WorkAbort(WorkUC):
class ResultAbort(ResultUCError):
def __init__(self):
ResultUCError.__init__(self)
self.stderr_out.append('<message>Output file exceeded size limit</message>')
self.stderr_out.append('<message>Output file exceeded size limit')
class ProjectAbort(ProjectUC):
def __init__(self):

View File

@ -12,6 +12,7 @@ class WorkConcat(Work):
self.wu_template = "concat_wu"
self.result_template = "concat_result"
self.input_files = ['input']*2
self.delay_bound = 86400*3
class ProjectConcat(TestProject):
def __init__(self, works=None, users=None, hosts=None, redundancy=2):

View File

@ -14,7 +14,7 @@ class WorkExit(WorkUC):
class ResultExit(ResultUCError):
def __init__(self):
ResultUCError.__init__(self)
self.stderr_out.append('<message>process exited with a nonzero exit code')
self.stderr_out.append('<message>process exited with a non-zero exit code')
class ProjectExit(ProjectUC):
def __init__(self):

View File

@ -15,7 +15,7 @@ class ResultSignal(ResultUCError):
def __init__(self):
ResultUCError.__init__(self)
self.stderr_out.append('SIGHUP: terminal line hangup')
self.stderr_out.append('<message>process exited with a nonzero exit code')
self.stderr_out.append('<message>process exited with a non-zero exit code')
class ProjectSignal(ProjectUC):
def __init__(self):

View File

@ -355,7 +355,7 @@ class Host:
self.global_prefs = None
self.log_flags = 'log_flags.xml'
self.host_dir = os.path.join(options.hosts_dir, self.name)
self.defargs = "-exit_when_idle -skip_cpu_benchmarks -debug_fake_exponential_backoff"
self.defargs = "-exit_when_idle -skip_cpu_benchmarks -debug_fake_exponential_backoff -return_results_immediately"
# self.defargs = "-exit_when_idle -skip_cpu_benchmarks -sched_retry_delay_min 1"
def add_user(self, user, project):