Prepare directory in case test_system fails
authorYao Qi <yao@codesourcery.com>
Wed, 29 Oct 2014 13:43:05 +0000 (21:43 +0800)
committerYao Qi <yao@codesourcery.com>
Wed, 29 Oct 2014 13:43:05 +0000 (21:43 +0800)
commit563e8d85161198df8a13de4bc660a047305458c9
tree44d49bac575370a3b9c2247447a0b3ba94517aaf
parent0ea4d52e4396f6fdf44e6b0d5a21db17cad41ec7
Prepare directory in case test_system fails

In gdb.base/fileio.c, some functions may depend on others.  For
example, test_rename renames a file to one directory which is created
in test_system.  That is means, if test_system fails, test_rename
fails too, which is not a good practise, IMO.

In test_system, system ("mkdir -p XX") is used to create directories
needed for test_rename.  In this patch, we use dejagnu remote_exec
proc to create these directories on host.

In my gdb testing, mingw32 host and arm-none-eabi target, system
("mkdir -p XX") doesn't work properly (this issue can be addressed
separately), and this patch fixes the following fails.

FAIL: gdb.base/fileio.exp: Renaming a directory to a non-empty directory returns ENOTEMPTY or EEXIST
FAIL: gdb.base/fileio.exp: Unlink a file
FAIL: gdb.base/fileio.exp: Unlinking a file in a directory w/o write access returns EACCES

gdb/testsuite:

2014-10-29  Yao Qi  <yao@codesourcery.com>

* gdb.base/fileio.exp: Make directories on host.
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/fileio.exp
This page took 0.025275 seconds and 4 git commands to generate.