|
From: <sv...@va...> - 2015-08-26 10:27:27
|
Author: mjw
Date: Wed Aug 26 11:27:19 2015
New Revision: 15591
Log:
Filter out gdb file transfer warnings in gdbserver_tests/filter_stderr.
GDB is correct that we don't support that at the moment.
See bug #351792 - vgdb doesn't support remote file transfers.
Modified:
trunk/gdbserver_tests/filter_stderr
Modified: trunk/gdbserver_tests/filter_stderr
==============================================================================
--- trunk/gdbserver_tests/filter_stderr (original)
+++ trunk/gdbserver_tests/filter_stderr Wed Aug 26 11:27:19 2015
@@ -10,4 +10,5 @@
-e '/\/path\/to\/gdb/d' \
-e '/and then give GDB the following command/d' \
-e '/target remote |/d' \
- -e '/pid is optional if only one valgrind process is running/d'
+ -e '/pid is optional if only one valgrind process is running/d' \
+ -e '/warning: remote target does not support file transfer, attempting to access files from local filesystem./d'
|