Update copyright year range in all GDB files
[external/binutils.git] / gdb / testsuite / gdb.multi / tids.exp
index 5763234..334e08e 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 2015-2016 Free Software Foundation, Inc.
+# Copyright 2015-2018 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -23,7 +23,7 @@ standard_testfile
 # gdbserver modes are supported.  Only non-extended gdbserver is not
 # supported.
 if [target_info exists use_gdb_stub] {
-    untested ${testfile}.exp
+    untested "using gdb stub"
     return
 }
 
@@ -224,6 +224,12 @@ with_test_prefix "two inferiors" {
     thr_apply_info_thr "1.1-2 2.2-3" \
        "1.1 1.2 2.2 2.3"
 
+    # All threads.
+    thread_apply "all" \
+       "2.3 2.2 2.1 1.3 1.2 1.1"
+    thread_apply "all -ascending" \
+       "1.1 1.2 1.3 2.1 2.2 2.3"
+
     # Now test using GDB convenience variables.
 
     gdb_test "p \$inf = 1" " = 1"
@@ -277,6 +283,36 @@ with_test_prefix "two inferiors" {
        "warning: Unknown thread 30.1" \
        "thread apply \$inf.1"
 
+    # Star ranges.
+
+    thr_apply_info_thr "1.*" \
+       "1.1 1.2 1.3"
+
+    thr_apply_info_thr "*" \
+       "1.1 1.2 1.3"
+
+    thr_apply_info_thr "1.* 2.1" \
+       "1.1 1.2 1.3 2.1"
+
+    thr_apply_info_thr "2.1 1.*" \
+       "1.1 1.2 1.3 2.1" \
+       "2.1 1.1 1.2 1.3"
+
+    thr_apply_info_thr "1.* 2.*" \
+       "1.1 1.2 1.3 2.1 2.2 2.3"
+
+    thr_apply_info_thr "2.* 1.*" \
+       "1.1 1.2 1.3 2.1 2.2 2.3" \
+       "2.1 2.2 2.3 1.1 1.2 1.3"
+
+    # There's no inferior 3, but "info threads" treats the thread list
+    # as a filter, so it's OK.  "thread apply" complains about the
+    # unknown inferior through.
+    info_threads "1.1 3.*" \
+       "1.1"
+    gdb_test "thread apply 1.1 3.* p 1" \
+       "Thread 1.1.*warning: Unknown inferior 3"
+
     # Now test a set of invalid thread IDs/ranges.
 
     thr_apply_info_thr_invalid "1." \
@@ -318,6 +354,11 @@ with_test_prefix "two inferiors" {
        thr_apply_info_thr_error "${prefix}-\$one" "negative value"
        thr_apply_info_thr_error "${prefix}\$minus_one" \
            "negative value: ${prefix_re}\\\$minus_one"
+
+       thr_apply_info_thr_error "${prefix}1-*" "inverted range"
+       thr_apply_info_thr_invalid "${prefix}*1"
+       thr_apply_info_thr_invalid "${prefix}*foo"
+       thr_apply_info_thr_invalid "${prefix}foo*"
     }
 
     # Check that a valid thread ID list with a missing command errors
@@ -330,6 +371,7 @@ with_test_prefix "two inferiors" {
        gdb_test "thread apply 1-2" $output
        gdb_test "thread apply 1.1-2" $output
        gdb_test "thread apply $thr" $output
+       gdb_test "thread apply 1.*" $output
     }
 
     # Check that we do parse the inferior number and don't confuse it.