diff --git a/checkin_notes b/checkin_notes index 4a0b39f636..e5505b7bba 100755 --- a/checkin_notes +++ b/checkin_notes @@ -5849,3 +5849,12 @@ Karl 2003/08/18 test/*.py astropulse/*/*.C + +Karl 2003/08/19 + - misc test case updates + +Karl 2003/08/20 + - changed 'active_frac' initial assumption to "on" instead of the current + state + + time_stats.C diff --git a/client/time_stats.C b/client/time_stats.C index c951920533..88729a708c 100644 --- a/client/time_stats.C +++ b/client/time_stats.C @@ -2,18 +2,18 @@ // Version 1.0 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at // http://boinc.berkeley.edu/license_1.0.txt -// +// // Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations -// under the License. -// -// The Original Code is the Berkeley Open Infrastructure for Network Computing. -// +// under the License. +// +// The Original Code is the Berkeley Open Infrastructure for Network Computing. +// // The Initial Developer of the Original Code is the SETI@home project. // Portions created by the SETI@home project are Copyright (C) 2002 -// University of California at Berkeley. All Rights Reserved. -// +// University of California at Berkeley. All Rights Reserved. +// // Contributor(s): // @@ -54,7 +54,7 @@ void TIME_STATS::update(bool is_connected, bool is_active) { on_frac = 1; connected_frac = is_connected?1:0; - active_frac = is_active?1:0; + active_frac = true; first = false; last_update = now; } else { diff --git a/client/win/resource.rc b/client/win/resource.rc index 68bb2cc8f0..6b5d6baaf2 100755 --- a/client/win/resource.rc +++ b/client/win/resource.rc @@ -281,7 +281,7 @@ IDI_ICONSMALL ICON DISCARDABLE "res\\iconsmall.ico" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,9,0 + FILEVERSION 1,0,12,0 PRODUCTVERSION 1,0,8,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG @@ -300,14 +300,14 @@ BEGIN VALUE "Comments", "\0" VALUE "CompanyName", "Space Sciences Laboratory\0" VALUE "FileDescription", "boinc_gui\0" - VALUE "FileVersion", "1, 0, 9, 0\0" + VALUE "FileVersion", "1, 0, 12, 0\0" VALUE "InternalName", "boinc_gui\0" VALUE "LegalCopyright", "Copyright © 2003 SETI@home\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "boinc_gui.exe\0" VALUE "PrivateBuild", "\0" VALUE "ProductName", "BOINC Core Client\0" - VALUE "ProductVersion", "1, 0, 9, 0\0" + VALUE "ProductVersion", "1, 0, 12, 0\0" VALUE "SpecialBuild", "\0" END END diff --git a/py/boinc_db.py b/py/boinc_db.py index fa17b5e127..043212c0fc 100644 --- a/py/boinc_db.py +++ b/py/boinc_db.py @@ -1,4 +1,4 @@ -# Generated by db_def_to_py on Tue Jul 29 14:13:20 PDT 2003 +# Generated by db_def_to_py on Tue Aug 19 15:03:51 PDT 2003 MAX_BLOB_SIZE = 4096 TEAM_TYPE_CLUB = 1 TEAM_TYPE_COMPANY = 2 @@ -15,7 +15,8 @@ ASSIMILATE_READY = 1 ASSIMILATE_DONE = 2 WU_ERROR_COULDNT_SEND_RESULT = 1 WU_ERROR_TOO_MANY_ERROR_RESULTS = 2 -WU_ERROR_TOO_MANY_RESULTS = 4 +WU_ERROR_TOO_MANY_SUCCESS_RESULTS = 4 +WU_ERROR_TOO_MANY_TOTAL_RESULTS = 8 RESULT_SERVER_STATE_INACTIVE = 1 RESULT_SERVER_STATE_UNSENT = 2 RESULT_SERVER_STATE_UNSENT_SEQ = 3 diff --git a/test/Makefile.am b/test/Makefile.am index 9b0aef514f..15bd15eaa6 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -10,7 +10,6 @@ TESTS = test_sanity.py \ test_rsc.py \ test_exit.py \ test_signal.py \ - test_backend.py \ test_masterurl_failure.py # TODO: phase out php stuff diff --git a/test/boinc_db.inc b/test/boinc_db.inc index eb7a116a1a..bf67012982 100644 --- a/test/boinc_db.inc +++ b/test/boinc_db.inc @@ -1,5 +1,5 @@