aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Muller <muller@sourceware.org>2008-02-27 15:46:46 +0000
committerPierre Muller <muller@sourceware.org>2008-02-27 15:46:46 +0000
commit6f439c366af18c0f1b9c397a628bb4b053657fc6 (patch)
tree1cbed9c2ca684756c685173535bd6b6eeb68f5a7
parent1890b465916e3233d9a6835efcb4f5b05875c60b (diff)
downloadgdb-6f439c366af18c0f1b9c397a628bb4b053657fc6.zip
gdb-6f439c366af18c0f1b9c397a628bb4b053657fc6.tar.gz
gdb-6f439c366af18c0f1b9c397a628bb4b053657fc6.tar.bz2
2008-02-27 Pierre Muller <muller@ics.u-strasbg.fr>
* gdb.base/args.exp: avoid same output for tests with single quotes.
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/gdb.base/args.exp4
2 files changed, 7 insertions, 2 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index fafc303..c3c2699 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2008-02-27 Pierre Muller <muller@ics.u-strasbg.fr>
+
+ * gdb.base/args.exp: avoid same output for tests
+ with single quotes.
+
2008-02-26 Vladimir Prus <vladimir@codesourcery.com>
* gdb.base/annota1.exp: Adjust for 'info break'
diff --git a/gdb/testsuite/gdb.base/args.exp b/gdb/testsuite/gdb.base/args.exp
index 38086e6..2f015ed 100644
--- a/gdb/testsuite/gdb.base/args.exp
+++ b/gdb/testsuite/gdb.base/args.exp
@@ -94,9 +94,9 @@ args_test "two empty" {{1} {} {} 3}
# Try with arguments containing literal single quotes.
set GDBFLAGS "--args $binfile 1 '' 3"
-args_test "one empty" {{1} {''} {3}}
+args_test "one empty (with single quotes)" {{1} {''} {3}}
set GDBFLAGS "--args $binfile 1 '' '' 3"
-args_test "two empty" {{1} {''} {''} {3}}
+args_test "two empty (with single quotes)" {{1} {''} {''} {3}}
set GDBFLAGS $old_gdbflags