diff options
author | unknown <joerg@mysql.com> | 2005-08-22 12:48:01 +0200 |
---|---|---|
committer | unknown <joerg@mysql.com> | 2005-08-22 12:48:01 +0200 |
commit | 8fc308b873ae6fb7deea59c9a8328c4b0026c2c5 (patch) | |
tree | 1b5f32749ce7ae1e0fc84b403c74d3e0be232eb7 /support-files | |
parent | 9df32ec8f8952876f10525d11d152ccbd21bfb67 (diff) | |
download | mariadb-git-8fc308b873ae6fb7deea59c9a8328c4b0026c2c5.tar.gz |
Ensure that a failing test does not stop testing or the whole RPM build process.
Diffstat (limited to 'support-files')
-rw-r--r-- | support-files/mysql.spec.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index b563972e08a..af9abd2fce1 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -308,7 +308,7 @@ BuildMySQL "--enable-shared \ --with-comment=\"MySQL Community Edition - Max (GPL)\" \ --with-server-suffix='-Max'" -make test +make test-force || true # Save mysqld-max mv sql/mysqld sql/mysqld-max @@ -359,7 +359,7 @@ BuildMySQL "--disable-shared \ --without-openssl" nm --numeric-sort sql/mysqld > sql/mysqld.sym -make test +make test-force || true %install RBR=$RPM_BUILD_ROOT |