mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=2712
This commit is contained in:
parent
faebf665dd
commit
1df85a1240
|
@ -7933,6 +7933,7 @@ David 28 Nov 2003
|
||||||
|
|
||||||
Karl 2003-11-28
|
Karl 2003-11-28
|
||||||
- fixed testbase.py not working due to change in client default benchmark
|
- fixed testbase.py not working due to change in client default benchmark
|
||||||
|
- fixed problem with app_versions due to checking major version
|
||||||
|
|
||||||
test/
|
test/
|
||||||
testbase.py
|
testbase.py
|
||||||
|
|
|
@ -101,7 +101,13 @@ class User(DatabaseObject):
|
||||||
'url',
|
'url',
|
||||||
'send_email',
|
'send_email',
|
||||||
'show_hosts',
|
'show_hosts',
|
||||||
'posts' ])
|
'posts',
|
||||||
|
'seti_id',
|
||||||
|
'seti_nresults',
|
||||||
|
'seti_last_result_time',
|
||||||
|
'seti_total_cpu',
|
||||||
|
'signature'
|
||||||
|
])
|
||||||
|
|
||||||
class Team(DatabaseObject):
|
class Team(DatabaseObject):
|
||||||
_table = DatabaseTable(
|
_table = DatabaseTable(
|
||||||
|
@ -217,7 +223,9 @@ class Result(DatabaseObject):
|
||||||
'granted_credit',
|
'granted_credit',
|
||||||
'opaque',
|
'opaque',
|
||||||
'random',
|
'random',
|
||||||
'client_version_num' ])
|
'client_version_num',
|
||||||
|
'appid'
|
||||||
|
])
|
||||||
|
|
||||||
class Workseq(DatabaseObject):
|
class Workseq(DatabaseObject):
|
||||||
_table = DatabaseTable(
|
_table = DatabaseTable(
|
||||||
|
|
|
@ -350,7 +350,7 @@ class TestProject(Project):
|
||||||
def progress_meter_ctor(self):
|
def progress_meter_ctor(self):
|
||||||
pass
|
pass
|
||||||
def progress_meter_status(self):
|
def progress_meter_status(self):
|
||||||
return "WUs: [A:%d T:%d] Results: [U:%d,P:%d,O:%d T:%d]" % (
|
return "WUs: [A:%d T:%d] Results: [U:%d,IP:%d,O:%d T:%d]" % (
|
||||||
num_wus_assimilated(),
|
num_wus_assimilated(),
|
||||||
#num_wus(),
|
#num_wus(),
|
||||||
self.num_wu,
|
self.num_wu,
|
||||||
|
@ -459,7 +459,7 @@ class AppVersion(database.AppVersion):
|
||||||
def __init__(self, app, platform, exec_file):
|
def __init__(self, app, platform, exec_file):
|
||||||
database.AppVersion.__init__(self,id=None)
|
database.AppVersion.__init__(self,id=None)
|
||||||
self.app = app
|
self.app = app
|
||||||
self.version_num = 1
|
self.version_num = version.MAJOR_VERSION * 100
|
||||||
self.platform = platform
|
self.platform = platform
|
||||||
self.min_core_version = 1
|
self.min_core_version = 1
|
||||||
self.max_core_version = 999
|
self.max_core_version = 999
|
||||||
|
|
Loading…
Reference in New Issue