From b4d38aa0c66a1c3f83f61e35e007c3a6f03185a9 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 10 Feb 2006 17:40:04 +0100 Subject: [PATCH] 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. --- support-files/mysql.spec.sh | 9 +++++++-- 1 file 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 + +- Use "-i" on "make test-force"; + this is essential for later evaluation of this log file. + * Mon Dec 05 2005 Joerg Bruehe - Avoid using the "bundled" zlib on "shared" builds: