Commit e9775dd8 authored by unknown's avatar unknown

Cleanups: ignore more files.


BitKeeper/etc/ignore:
  Modify ignore list to work with BitKeeper 4
mysql-test/t/mysqldump.test:
  Fix the test for Bug#18462 to use MYSQLTEST_VARDIR instead of mysql-test/
  directory for temporary files.
parent f5340f8c
...@@ -20,11 +20,15 @@ ...@@ -20,11 +20,15 @@
*.res *.res
*.sbr *.sbr
*.so *.so
*.so.*
*.spec *.spec
*/*_pure_*warnings */*_pure_*warnings
*/.pure */.pure
*~ *~
.*.swp .*.swp
*.Po
*.Plo
*.lai
./README.build-files ./README.build-files
./config.h ./config.h
./copy_mysql_files.bat ./copy_mysql_files.bat
...@@ -41,6 +45,9 @@ ...@@ -41,6 +45,9 @@
.gdb_history .gdb_history
.gdbinit .gdbinit
.libs .libs
client/.libs -prune
tests/.libs -prune
tools/.libs -prune
.o .o
.out .out
.snprj/* .snprj/*
......
...@@ -1155,12 +1155,11 @@ insert into t values(5, 51); ...@@ -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 v1 as select qty, price, qty*price as value from t;
create view v2 as select qty from v1; create view v2 as select qty from v1;
--echo mysqldump { --echo mysqldump {
--exec $MYSQL_DUMP --compact -F --tab . test --exec $MYSQL_DUMP --compact -F --tab $MYSQLTEST_VARDIR/tmp test
--exec cat v1.sql --exec cat $MYSQLTEST_VARDIR/tmp/v1.sql
--echo } mysqldump { --echo } mysqldump {
--exec cat v2.sql --exec cat $MYSQLTEST_VARDIR/tmp/v2.sql
--echo } mysqldump --echo } mysqldump
--rm v.sql t.sql t.txt
drop view v1; drop view v1;
drop view v2; drop view v2;
drop table t; drop table t;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment