mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5469
This commit is contained in:
parent
e35fe95365
commit
de5ec1ff32
|
@ -24981,3 +24981,13 @@ Bruce 17 Feb 2005
|
|||
doc/
|
||||
configuration.php
|
||||
|
||||
David 17 Feb 2005
|
||||
- partially fixed test_uc.py.
|
||||
It doesn't get Python errors any more, but it sometimes fails.
|
||||
This is because of file_deleter.
|
||||
It can delete input files that are needed by
|
||||
another WU, and it can delete output files before they're checked.
|
||||
Should fix this.
|
||||
|
||||
test/
|
||||
testbase.py
|
||||
|
|
|
@ -35,6 +35,9 @@ def test_init():
|
|||
|
||||
options.auto_setup = int(get_env_var("BOINC_TEST_AUTO_SETUP",1))#######
|
||||
options.user_name = get_env_var("BOINC_TEST_USER_NAME", '') or get_env_var("USER")
|
||||
options.db_user = options.user_name
|
||||
options.db_passwd = ''
|
||||
options.db_host = ''
|
||||
options.delete_testbed = get_env_var("BOINC_TEST_DELETE", 'if-successful').lower()
|
||||
# options.install_method = get_env_var("BOINC_TEST_INSTALL_METHOD", 'symlink').lower()
|
||||
options.install_method = 'copy'
|
||||
|
@ -455,7 +458,7 @@ class CoreVersion(database.CoreVersion):
|
|||
self.version_num = 1
|
||||
self.platform = platform
|
||||
def commit(self):
|
||||
self.xml_doc = tools.process_executable_file(
|
||||
self.xml_doc = tools.process_app_file(
|
||||
os.path.join(boinc_path_config.TOP_BUILD_DIR,'client',
|
||||
options.client_bin_filename),
|
||||
quiet=True)
|
||||
|
|
Loading…
Reference in New Issue