diff options
author | unknown <joerg@mysql.com> | 2006-02-10 17:40:04 +0100 |
---|---|---|
committer | unknown <joerg@mysql.com> | 2006-02-10 17:40:04 +0100 |
commit | b4d38aa0c66a1c3f83f61e35e007c3a6f03185a9 (patch) | |
tree | b4c1ab362b80d2151dce5f76c2d228331b344561 /support-files | |
parent | ddab016fc46cfbd175fff5b3a5a27f371afad012 (diff) | |
download | mariadb-git-b4d38aa0c66a1c3f83f61e35e007c3a6f03185a9.tar.gz |
support-files/mysql.spec.sh : Use "-i" on "make test-force", essential for log file evaluation.
support-files/mysql.spec.sh:
Use "-i" on "make test-force";
this will prevent "make" from writing "***" which in turn was treated as a _build_ error
by the log evaluation tool, causing it not to list the failing tests.
Diffstat (limited to 'support-files')
-rw-r--r-- | support-files/mysql.spec.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index 7afdae69439..42958a3a871 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -309,7 +309,7 @@ BuildMySQL "--enable-shared \ --with-comment=\"MySQL Community Edition - Max (GPL)\" \ --with-server-suffix='-Max'" -make test-force || true +make -i test-force || true # Save mysqld-max mv sql/mysqld sql/mysqld-max @@ -363,7 +363,7 @@ BuildMySQL "--disable-shared \ --without-openssl" nm --numeric-sort sql/mysqld > sql/mysqld.sym -make test-force || true +make -i test-force || true %install RBR=$RPM_BUILD_ROOT @@ -689,6 +689,11 @@ fi # itself - note that they must be ordered by date (important when # merging BK trees) %changelog +* Fri Jan 10 2006 Joerg Bruehe <joerg@mysql.com> + +- Use "-i" on "make test-force"; + this is essential for later evaluation of this log file. + * Mon Dec 05 2005 Joerg Bruehe <joerg@mysql.com> - Avoid using the "bundled" zlib on "shared" builds: |