1 # Common tests for the MutexPrinter and MutexAttributesPrinter classes.
3 # Copyright (C) 2016-2022 Free Software Foundation, Inc.
4 # This file is part of the GNU C Library.
6 # The GNU C Library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2.1 of the License, or (at your option) any later version.
11 # The GNU C Library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Lesser General Public License for more details.
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with the GNU C Library; if not, see
18 # <https://www.gnu.org/licenses/>.
22 from test_printers_common
import *
24 test_source
= sys
.argv
[1]
25 test_bin
= sys
.argv
[2]
26 printer_files
= sys
.argv
[3:]
27 printer_names
= ['global glibc-pthread-locks']
31 init_test(test_bin
, printer_files
, printer_names
)
34 check_debug_symbol('struct pthread_mutexattr')
37 mutex_to_string
= 'pthread_mutex_t'
40 attr_to_string
= 'pthread_mutexattr_t'
42 break_at(test_source
, 'Set type')
43 continue_cmd() # Go to test_settype
45 test_printer(attr_var
, attr_to_string
, {'Type': 'Error check'})
46 test_printer(mutex_var
, mutex_to_string
, {'Type': 'Error check'})
48 test_printer(attr_var
, attr_to_string
, {'Type': 'Recursive'})
49 test_printer(mutex_var
, mutex_to_string
, {'Type': 'Recursive'})
51 test_printer(attr_var
, attr_to_string
, {'Type': 'Normal'})
52 test_printer(mutex_var
, mutex_to_string
, {'Type': 'Normal'})
54 break_at(test_source
, 'Set robust')
55 continue_cmd() # Go to test_setrobust
57 test_printer(attr_var
, attr_to_string
, {'Robust': 'Yes'})
58 test_printer(mutex_var
, mutex_to_string
, {'Robust': 'Yes'})
60 test_printer(attr_var
, attr_to_string
, {'Robust': 'No'})
61 test_printer(mutex_var
, mutex_to_string
, {'Robust': 'No'})
63 break_at(test_source
, 'Set shared')
64 continue_cmd() # Go to test_setpshared
66 test_printer(attr_var
, attr_to_string
, {'Shared': 'Yes'})
67 test_printer(mutex_var
, mutex_to_string
, {'Shared': 'Yes'})
69 test_printer(attr_var
, attr_to_string
, {'Shared': 'No'})
70 test_printer(mutex_var
, mutex_to_string
, {'Shared': 'No'})
72 break_at(test_source
, 'Set protocol')
73 continue_cmd() # Go to test_setprotocol
75 test_printer(attr_var
, attr_to_string
, {'Protocol': 'Priority inherit'})
76 test_printer(mutex_var
, mutex_to_string
, {'Protocol': 'Priority inherit'})
78 test_printer(attr_var
, attr_to_string
, {'Protocol': 'Priority protect'})
79 test_printer(mutex_var
, mutex_to_string
, {'Protocol': 'Priority protect'})
81 test_printer(mutex_var
, mutex_to_string
, {'Priority ceiling':
84 test_printer(attr_var
, attr_to_string
, {'Protocol': 'None'})
85 test_printer(mutex_var
, mutex_to_string
, {'Protocol': 'None'})
89 except (NoLineError
, pexpect
.TIMEOUT
) as exception
:
90 print('Error: {0}'.format(exception
))
93 except DebugError
as exception
:
98 print('Test succeeded.')