*** empty log message ***

svn path=/trunk/boinc/; revision=5469
This commit is contained in:
David Anderson 2005-02-17 22:46:52 +00:00
parent e35fe95365
commit de5ec1ff32
2 changed files with 14 additions and 1 deletions

View File

@ -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

View File

@ -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)