Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/testing/selftests/futex/functional/run.sh
29271 views
1
#!/bin/sh
2
# SPDX-License-Identifier: GPL-2.0-or-later
3
4
###############################################################################
5
#
6
# Copyright © International Business Machines Corp., 2009
7
#
8
# DESCRIPTION
9
# Run tests in the current directory.
10
#
11
# AUTHOR
12
# Darren Hart <[email protected]>
13
#
14
# HISTORY
15
# 2009-Nov-9: Initial version by Darren Hart <[email protected]>
16
# 2010-Jan-6: Add futex_wait_uninitialized_heap and futex_wait_private_mapped_file
17
# by KOSAKI Motohiro <[email protected]>
18
#
19
###############################################################################
20
21
echo
22
./futex_requeue_pi
23
24
echo
25
./futex_requeue_pi_mismatched_ops
26
27
echo
28
./futex_requeue_pi_signal_restart
29
30
echo
31
./futex_wait_timeout
32
33
echo
34
./futex_wait_wouldblock
35
36
echo
37
./futex_wait_uninitialized_heap
38
./futex_wait_private_mapped_file
39
40
echo
41
./futex_wait
42
43
echo
44
./futex_requeue
45
46
echo
47
./futex_waitv
48
49
echo
50
./futex_priv_hash
51
52
echo
53
./futex_numa_mpol
54
55