diff options
author | unknown <joerg@trift2.> | 2007-11-16 17:36:13 +0100 |
---|---|---|
committer | unknown <joerg@trift2.> | 2007-11-16 17:36:13 +0100 |
commit | 9395439cfa4297953f08df53e3dbbb5e445a136e (patch) | |
tree | 8e91818b74c8bbe3300c8adf94e12857ba55c00a /support-files | |
parent | 5f28ecad97bad51ce0c08adcb5be49d2182cc3d6 (diff) | |
download | mariadb-git-9395439cfa4297953f08df53e3dbbb5e445a136e.tar.gz |
In the "spec" file for RPM builds, handle the debug server tests different from the standard server.
support-files/mysql.spec.sh:
Don't use the "test-bt" target to run the tests on the debug server,
rather use "test-bt-debug".
There are two reasons for this:
1) Consistency with the "tar.gz" builds.
2) The tool that evaluates the build logs needs unique "--comment=" options in the log,
or else it will fail when it generates the test status summary.
Diffstat (limited to 'support-files')
-rw-r--r-- | support-files/mysql.spec.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index ddeb29bec8c..8c4909fc8d5 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -340,7 +340,7 @@ do ./libtool --mode=execute cp sql/mysqld sql/mysqld-debug ./libtool --mode=execute nm --numeric-sort sql/mysqld-debug > sql/mysqld-debug.sym echo "# debug" - make test-bt + make test-bt-debug make clean fi done @@ -715,6 +715,10 @@ fi # itself - note that they must be ordered by date (important when # merging BK trees) %changelog +* Fri Nov 16 2007 Joerg Bruehe <joerg@mysql.com> + +- When testing the debug server, use "make test-bt-debug". + * Sat Apr 07 2007 Kent Boortz <kent@mysql.com> - Removed man page for "mysql_create_system_tables" |