GDB/testsuite: Fix PARAM_ZUINTEGER reported for PARAM_ZUINTEGER_UNLIMITED
authorMaciej W. Rozycki <macro@embecosm.com>
Wed, 17 Aug 2022 21:59:11 +0000 (22:59 +0100)
committerMaciej W. Rozycki <macro@embecosm.com>
Wed, 17 Aug 2022 21:59:11 +0000 (22:59 +0100)
Correctly report PARAM_ZUINTEGER_UNLIMITED rather than PARAM_ZUINTEGER
in testing a Python parameter of the PARAM_ZUINTEGER_UNLIMITED type.

gdb/testsuite/gdb.python/py-parameter.exp

index d6db6ac3bb173267e1d0f19e28f1cb01ed6922a9..4aa3e9686db23e3e3a7f5d3f99a4173217282e9c 100644 (file)
@@ -346,9 +346,9 @@ proc_with_prefix test_integer_parameter { } {
            gdb_test "python test_param_$kind.value = -1" "RuntimeError: Range exceeded.*"
        } elseif {$kind == "PARAM_ZUINTEGER_UNLIMITED"} {
            gdb_test_no_output "python test_param_$kind.value = -1" \
-               "check that PARAM_ZUINTEGER value can be set to -1"
+               "check that PARAM_ZUINTEGER_UNLIMITED value can be set to -1"
            gdb_test "python print(gdb.parameter('test-$kind'))" "-1" \
-               "check that PARAM_ZUINTEGER value is -1 after setting"
+               "check that PARAM_ZUINTEGER_UNLIMITED value is -1 after setting"
        } else {
            error "invalid kind: $kind"
        }