diff options
author | Per Bothner <per@bothner.com> | 1995-02-21 00:29:08 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1995-02-21 00:29:08 +0000 |
commit | 1b5cdb7e2299ba04719554293737d4f0afcbdbb1 (patch) | |
tree | 909dfde0130a7c5ea52605503604f4b88da4b8e0 | |
parent | 9fa343240eeebd5427da205d45758bd8b98a9bb9 (diff) | |
download | gdb-1b5cdb7e2299ba04719554293737d4f0afcbdbb1.zip gdb-1b5cdb7e2299ba04719554293737d4f0afcbdbb1.tar.gz gdb-1b5cdb7e2299ba04719554293737d4f0afcbdbb1.tar.bz2 |
* pr-5016.exp: Allow builtin types as either case. E.g. (BOOL|bool).
-rw-r--r-- | gdb/testsuite/gdb.chill/ChangeLog | 1 | ||||
-rw-r--r-- | gdb/testsuite/gdb.chill/pr-5016.exp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.chill/ChangeLog b/gdb/testsuite/gdb.chill/ChangeLog index 46872bd..bb17b9c 100644 --- a/gdb/testsuite/gdb.chill/ChangeLog +++ b/gdb/testsuite/gdb.chill/ChangeLog @@ -2,6 +2,7 @@ Mon Feb 20 16:19:58 1995 Per Bothner <bothner@kalessin.cygnus.com> * chillvars.ch: Add missing INIT's. * chillvars.exp: Allow builtin types as either case. E.g. (BOOL|bool). + * pr-5016.exp: Likewise. Sun Feb 12 11:26:08 1995 Per Bothner <bothner@kalessin.cygnus.com> diff --git a/gdb/testsuite/gdb.chill/pr-5016.exp b/gdb/testsuite/gdb.chill/pr-5016.exp index 827c405..0e4f83d 100644 --- a/gdb/testsuite/gdb.chill/pr-5016.exp +++ b/gdb/testsuite/gdb.chill/pr-5016.exp @@ -42,7 +42,7 @@ proc do_tests {} { gdb_test "whatis i" "type = m_index" "whatis int-range" gdb_test_exact "ptype m_index" "type = RANGE (1:10)" "ptype m_index" gdb_test_exact "whatis a" "type = /*LOC*/ vector" - gdb_test_exact "ptype a" "type = /*LOC*/ ARRAY (1:10) INT" + gdb_test "ptype a" "type = /\\*LOC\\*/ ARRAY \\(1:10\\) (INT|int)" } # Check to see if we have an executable to test. If not, then either we |