summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bzrignore7
-rw-r--r--mysql-test/t/mysqldump.test7
2 files changed, 10 insertions, 4 deletions
diff --git a/.bzrignore b/.bzrignore
index 7ea7f1ab7e2..d81f7c5f71c 100644
--- a/.bzrignore
+++ b/.bzrignore
@@ -20,11 +20,15 @@
*.res
*.sbr
*.so
+*.so.*
*.spec
*/*_pure_*warnings
*/.pure
*~
.*.swp
+*.Po
+*.Plo
+*.lai
./README.build-files
./config.h
./copy_mysql_files.bat
@@ -41,6 +45,9 @@
.gdb_history
.gdbinit
.libs
+client/.libs -prune
+tests/.libs -prune
+tools/.libs -prune
.o
.out
.snprj/*
diff --git a/mysql-test/t/mysqldump.test b/mysql-test/t/mysqldump.test
index a091242171e..4a355897adb 100644
--- a/mysql-test/t/mysqldump.test
+++ b/mysql-test/t/mysqldump.test
@@ -1155,12 +1155,11 @@ insert into t values(5, 51);
create view v1 as select qty, price, qty*price as value from t;
create view v2 as select qty from v1;
--echo mysqldump {
---exec $MYSQL_DUMP --compact -F --tab . test
---exec cat v1.sql
+--exec $MYSQL_DUMP --compact -F --tab $MYSQLTEST_VARDIR/tmp test
+--exec cat $MYSQLTEST_VARDIR/tmp/v1.sql
--echo } mysqldump {
---exec cat v2.sql
+--exec cat $MYSQLTEST_VARDIR/tmp/v2.sql
--echo } mysqldump
---rm v.sql t.sql t.txt
drop view v1;
drop view v2;
drop table t;