diff options
author | unknown <jonas@eel.(none)> | 2007-02-16 21:39:20 +0100 |
---|---|---|
committer | unknown <jonas@eel.(none)> | 2007-02-16 21:39:20 +0100 |
commit | 9ededefdceb35b292711b528031f9e901d150269 (patch) | |
tree | aac73073220f7f9d4817a008fcea2048a4dd3759 /storage/ndb | |
parent | 3b6dad3bd3be5307aca542623dc61645b8ad3909 (diff) | |
parent | cad9d6a84ff708a7cf7b2d3a693127da442b228b (diff) | |
download | mariadb-git-9ededefdceb35b292711b528031f9e901d150269.tar.gz |
Merge localhost:/home/jonas/src/51-work
into eel.(none):/home/jonas/src/51-work
Diffstat (limited to 'storage/ndb')
-rwxr-xr-x | storage/ndb/test/run-test/atrt-gather-result.sh | 2 | ||||
-rw-r--r-- | storage/ndb/test/run-test/autotest-run.sh | 3 | ||||
-rw-r--r-- | storage/ndb/test/run-test/main.cpp | 6 |
3 files changed, 9 insertions, 2 deletions
diff --git a/storage/ndb/test/run-test/atrt-gather-result.sh b/storage/ndb/test/run-test/atrt-gather-result.sh index ca5f0a76736..f2473578b41 100755 --- a/storage/ndb/test/run-test/atrt-gather-result.sh +++ b/storage/ndb/test/run-test/atrt-gather-result.sh @@ -8,7 +8,7 @@ rm -rf * while [ $# -gt 0 ] do - rsync -a --exclude='ndb_*_fs/*' "$1" . + rsync -a --exclude='BACKUP' --exclude='ndb_*_fs' "$1" . shift done diff --git a/storage/ndb/test/run-test/autotest-run.sh b/storage/ndb/test/run-test/autotest-run.sh index 6136a3a1060..34c3fe53949 100644 --- a/storage/ndb/test/run-test/autotest-run.sh +++ b/storage/ndb/test/run-test/autotest-run.sh @@ -246,8 +246,9 @@ cd $res_dir echo "date=$DATE" > info.txt echo "suite=$RUN" >> info.txt -echo "clone=$clone" >> info.txt +echo "clone=mysql-$clone" >> info.txt echo "arch=$target" >> info.txt +find . | xargs chmod ugo+r cd .. p2=`pwd` diff --git a/storage/ndb/test/run-test/main.cpp b/storage/ndb/test/run-test/main.cpp index a62a5ecbbb7..9bbf62e22fd 100644 --- a/storage/ndb/test/run-test/main.cpp +++ b/storage/ndb/test/run-test/main.cpp @@ -238,6 +238,12 @@ main(int argc, char ** argv) g_logger.info("(Re)starting server processes processes"); if(!stop_processes(g_config, ~0)) goto end; + + if (!setup_directories(g_config, 2)) + goto end; + + if (!setup_files(g_config, 2, 1)) + goto end; if(!setup_hosts(g_config)) goto end; |