From: kent Date: February 21 2007 5:17pm Subject: bk commit into 5.1 tree (kent:1.2450) List-Archive: http://lists.mysql.com/commits/20296 Message-Id: <200702211717.l1LHHiRa029835@production.mysql.com> Below is the list of changes that have just been committed into a local 5.1 repository of mysqldev. When mysqldev does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2007-02-21 18:17:32+01:00, kent@stripped +1 -0 base64-t.c: Calculate and output line count first to be compatible with older versions of Test::Harness unittest/mysys/base64-t.c@stripped, 2007-02-21 18:16:36+01:00, kent@stripped +6 -1 Calculate and output line count first to be compatible with older versions of Test::Harness # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: kent # Host: production.mysql.com # Root: /data0/mysqldev/my/build-200702202011-5.1.16-beta/mysql-5.1-release --- 1.7/unittest/mysys/base64-t.c 2007-02-21 18:17:44 +01:00 +++ 1.8/unittest/mysys/base64-t.c 2007-02-21 18:17:44 +01:00 @@ -18,13 +18,18 @@ #include #include +#define BASE64_LOOP_COUNT 500 +#define BASE64_ROWS 4 /* Number of ok(..) */ + int main(void) { int i, cmp; size_t j, k, l, dst_len, needed_length; - for (i= 0; i < 500; i++) + plan(BASE64_LOOP_COUNT * BASE64_ROWS); + + for (i= 0; i < BASE64_LOOP_COUNT; i++) { /* Create source data */ const size_t src_len= rand() % 1000 + 1;