diff options
author | unknown <joerg@trift2.> | 2006-11-15 20:27:02 +0100 |
---|---|---|
committer | unknown <joerg@trift2.> | 2006-11-15 20:27:02 +0100 |
commit | 5363ec5275b0087ecbbe86b5e9ae9e7cb0229795 (patch) | |
tree | f1d2d36cc3f80eff8aba1158b02fc1e36363e99f /support-files | |
parent | 3bf9b43182b6d747e0c3c33d135742508b07a246 (diff) | |
download | mariadb-git-5363ec5275b0087ecbbe86b5e9ae9e7cb0229795.tar.gz |
support-files/mysql.spec.sh : Use "report features" in the first test run.
support-files/mysql.spec.sh:
Switch from "make test*" to explicit calls of the test suite, so that "report features" can be used.
Diffstat (limited to 'support-files')
-rw-r--r-- | support-files/mysql.spec.sh | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index 1daac2d0e95..1547a5b578d 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -317,7 +317,10 @@ then cp -fp config.log "$MYSQL_MAXCONFLOG_DEST" fi -make -i test-force || true +( cd mysql-test + perl ./mysql-test-run.pl --force --report-features + perl ./mysql-test-run.pl --force --ps-protocol + true ) # Save mysqld-max ./libtool --mode=execute cp sql/mysqld sql/mysqld-max @@ -380,7 +383,10 @@ then cp -fp config.log "$MYSQL_CONFLOG_DEST" fi -make -i test-force || true +( cd mysql-test + perl ./mysql-test-run.pl --force --report-features + perl ./mysql-test-run.pl --force --ps-protocol + true ) %install RBR=$RPM_BUILD_ROOT @@ -716,6 +722,11 @@ fi # itself - note that they must be ordered by date (important when # merging BK trees) %changelog +* Wed Nov 15 2006 Joerg Bruehe <joerg@mysql.com> + +- Switch from "make test*" to explicit calls of the test suite, + so that "report features" can be used. + * Tue Jun 27 2006 Joerg Bruehe <joerg@mysql.com> - move "mysqldumpslow" from the client RPM to the server RPM (bug#20216) |