1# -*- cperl -*-
2# Copyright (c) 2004, 2006 MySQL AB, 2008 Sun Microsystems, Inc.
3# Use is subject to license terms.
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License, version 2.0,
7# as published by the Free Software Foundation.
8#
9# This program is also distributed with certain software (including
10# but not limited to OpenSSL) that is licensed under separate terms,
11# as designated in a particular file or component or in included license
12# documentation.  The authors of MySQL hereby grant you an additional
13# permission to link the program and your derivative works with the
14# separately licensed software that they have included with MySQL.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19# GNU General Public License, version 2.0, for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
24
25# This is a library file used by the Perl version of mysql-test-run,
26# and is part of the translation of the Bourne shell script with the
27# same name.
28
29use strict;
30
31# These are not to be prefixed with "mtr_"
32
33sub gcov_prepare ();
34sub gcov_collect ();
35
36##############################################################################
37#
38#
39#
40##############################################################################
41
42sub gcov_prepare () {
43
44  `find $::glob_basedir -name \*.gcov \
45    -or -name \*.da | xargs rm`;
46}
47
48# Used by gcov
49our @mysqld_src_dirs=
50  (
51   "strings",
52   "mysys",
53   "include",
54   "extra",
55   "regex",
56   "isam",
57   "merge",
58   "myisam",
59   "myisammrg",
60   "heap",
61   "sql",
62  );
63
64sub gcov_collect () {
65
66  print "Collecting source coverage info...\n";
67  -f $::opt_gcov_msg and unlink($::opt_gcov_msg);
68  -f $::opt_gcov_err and unlink($::opt_gcov_err);
69  foreach my $d ( @mysqld_src_dirs )
70  {
71    chdir("$::glob_basedir/$d");
72    foreach my $f ( (glob("*.h"), glob("*.cc"), glob("*.c")) )
73    {
74      `$::opt_gcov $f 2>>$::opt_gcov_err  >>$::opt_gcov_msg`;
75    }
76    chdir($::glob_mysql_test_dir);
77  }
78  print "gcov info in $::opt_gcov_msg, errors in $::opt_gcov_err\n";
79}
80
81
821;
83