OSDN Git Service

2003-07-27 Andrew Cagney <cagney@redhat.com>
authorcagney <cagney>
Sun, 27 Jul 2003 21:24:09 +0000 (21:24 +0000)
committercagney <cagney>
Sun, 27 Jul 2003 21:24:09 +0000 (21:24 +0000)
* gdb.base/fileio.exp: Use SH when running commands using
remote_exec.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/fileio.exp

index 1b5595e..548655a 100644 (file)
@@ -1,3 +1,8 @@
+2003-07-27  Andrew Cagney  <cagney@redhat.com>
+
+       * gdb.base/fileio.exp: Use SH when running commands using
+       remote_exec.
+
 2003-07-24  Daniel Jacobowitz  <drow@mvista.com>
 
        From Kei Sakamoto <sakamoto.kei@renesas.com>:
index 279f1ab..98c64db 100644 (file)
@@ -52,8 +52,8 @@ if [get_compiler_info ${binfile}] {
     return -1;
 }
 
-remote_exec build "test -r dir2.fileio.test && chmod -f +w dir2.fileio.test"
-remote_exec build "rm -rf *.fileio.test"
+remote_exec build {sh -xc test\ -r\ dir2.fileio.test\ &&\ chmod\ -f\ +w\ dir2.fileio.test}
+remote_exec build {sh -xc rm\ -rf\ *.fileio.test}
 
 set oldtimeout $timeout
 set timeout [expr "$timeout + 60"]
@@ -269,9 +269,8 @@ gdb_test continue \
 send_gdb "quit\n"
 send_gdb "y\n"
 
-remote_exec build "test -r dir2.fileio.test && chmod -f +w dir2.fileio.test"
-remote_exec build "rm -rf *.fileio.test"
+remote_exec build {sh -xc test\ -r\ dir2.fileio.test\ &&\ chmod\ -f\ +w\ dir2.fileio.test}
+remote_exec build {sh -xc rm\ -rf\ *.fileio.test}
 
 set timeout $oldtimeout
 return 0
-