run.sh 983 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #!/bin/sh
  2. # SPDX-License-Identifier: GPL-2.0-or-later
  3. ###############################################################################
  4. #
  5. # Copyright © International Business Machines Corp., 2009
  6. #
  7. # DESCRIPTION
  8. # Run tests in the current directory.
  9. #
  10. # AUTHOR
  11. # Darren Hart <dvhart@linux.intel.com>
  12. #
  13. # HISTORY
  14. # 2009-Nov-9: Initial version by Darren Hart <dvhart@linux.intel.com>
  15. # 2010-Jan-6: Add futex_wait_uninitialized_heap and futex_wait_private_mapped_file
  16. # by KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
  17. #
  18. ###############################################################################
  19. echo
  20. ./futex_requeue_pi
  21. echo
  22. ./futex_requeue_pi_mismatched_ops
  23. echo
  24. ./futex_requeue_pi_signal_restart
  25. echo
  26. ./futex_wait_timeout
  27. echo
  28. ./futex_wait_wouldblock
  29. echo
  30. ./futex_wait_uninitialized_heap
  31. ./futex_wait_private_mapped_file
  32. echo
  33. ./futex_wait
  34. echo
  35. ./futex_requeue
  36. echo
  37. ./futex_waitv
  38. echo
  39. ./futex_priv_hash
  40. echo
  41. ./futex_numa_mpol