| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #!/bin/sh
- # SPDX-License-Identifier: GPL-2.0-or-later
- ###############################################################################
- #
- # Copyright © International Business Machines Corp., 2009
- #
- # DESCRIPTION
- # Run tests in the current directory.
- #
- # AUTHOR
- # Darren Hart <dvhart@linux.intel.com>
- #
- # HISTORY
- # 2009-Nov-9: Initial version by Darren Hart <dvhart@linux.intel.com>
- # 2010-Jan-6: Add futex_wait_uninitialized_heap and futex_wait_private_mapped_file
- # by KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
- #
- ###############################################################################
- echo
- ./futex_requeue_pi
- echo
- ./futex_requeue_pi_mismatched_ops
- echo
- ./futex_requeue_pi_signal_restart
- echo
- ./futex_wait_timeout
- echo
- ./futex_wait_wouldblock
- echo
- ./futex_wait_uninitialized_heap
- ./futex_wait_private_mapped_file
- echo
- ./futex_wait
- echo
- ./futex_requeue
- echo
- ./futex_waitv
- echo
- ./futex_priv_hash
- echo
- ./futex_numa_mpol
|