diff options
author | Kent Boortz <kent.boortz@sun.com> | 2010-12-28 19:57:23 +0100 |
---|---|---|
committer | Kent Boortz <kent.boortz@sun.com> | 2010-12-28 19:57:23 +0100 |
commit | a1a90798ce2125d839d0865ff52ac990fc9eecbb (patch) | |
tree | f341a98de1a200ac824d90042d01052f7156ce84 /myisam/ftbench | |
parent | d92a7eb1f39d5b6c627508cc314b45e93a80ca21 (diff) | |
download | mariadb-git-a1a90798ce2125d839d0865ff52ac990fc9eecbb.tar.gz |
- Added/updated copyright headers
- Removed files specific to compiling on OS/2
- Removed files specific to SCO Unix packaging
- Removed "libmysqld/copyright", text is included in documentation
- Removed LaTeX headers for NDB Doxygen documentation
- Removed obsolete NDB files
- Removed "mkisofs" binaries
- Removed the "cvs2cl.pl" script
- Changed a few GPL texts to use "program" instead of "library"
Diffstat (limited to 'myisam/ftbench')
-rwxr-xr-x | myisam/ftbench/Ecompare.pl | 15 | ||||
-rwxr-xr-x | myisam/ftbench/Ecreate.pl | 15 | ||||
-rwxr-xr-x | myisam/ftbench/Ereport.pl | 15 | ||||
-rwxr-xr-x | myisam/ftbench/ft-test-run.sh | 17 |
4 files changed, 62 insertions, 0 deletions
diff --git a/myisam/ftbench/Ecompare.pl b/myisam/ftbench/Ecompare.pl index 265534e704d..2c50ae9b9ce 100755 --- a/myisam/ftbench/Ecompare.pl +++ b/myisam/ftbench/Ecompare.pl @@ -1,5 +1,20 @@ #!/usr/bin/perl +# Copyright (C) 2003 MySQL AB +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + # compares out-files (as created by Ereport.pl) from dir1/*.out and dir2/*.out # for each effectiveness column computes the probability of the hypothesis # "Both files have the same effectiveness" diff --git a/myisam/ftbench/Ecreate.pl b/myisam/ftbench/Ecreate.pl index d90a6f7a0ad..123ca729c31 100755 --- a/myisam/ftbench/Ecreate.pl +++ b/myisam/ftbench/Ecreate.pl @@ -1,5 +1,20 @@ #!/usr/bin/perl +# Copyright (C) 2003 MySQL AB +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + $test=shift || die "Usage $0 testname [option]"; $option=shift; diff --git a/myisam/ftbench/Ereport.pl b/myisam/ftbench/Ereport.pl index 5969304da09..2f63d7ea37a 100755 --- a/myisam/ftbench/Ereport.pl +++ b/myisam/ftbench/Ereport.pl @@ -1,5 +1,20 @@ #!/usr/bin/perl +# Copyright (C) 2003 MySQL AB +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + die "Use: $0 eval_output qrels_file\n" unless @ARGV==2; open(EOUT,$eout=shift) || die "Cannot open $eout: $!"; diff --git a/myisam/ftbench/ft-test-run.sh b/myisam/ftbench/ft-test-run.sh index ceba818fa5c..6ef5f81c527 100755 --- a/myisam/ftbench/ft-test-run.sh +++ b/myisam/ftbench/ft-test-run.sh @@ -1,5 +1,22 @@ #!/bin/sh +# Copyright (C) 2003 MySQL AB +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public +# License as published by the Free Software Foundation; version 2 +# of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Library General Public License for more details. +# +# You should have received a copy of the GNU Library General Public +# License along with this library; if not, write to the Free +# Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, +# MA 02111-1307, USA + if [ ! -x ./ft-test-run.sh ] ; then echo "Usage: ./ft-test-run.sh" exit 1 |