Files
valgrind/drd/tests/supported_sem_init
Bart Van Assche f76d7ab6d9 Only run the test programs that call sem_init() on operating systems that have implemented this function.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10564
2009-07-23 17:51:58 +00:00

7 lines
164 B
Bash
Executable File

#!/bin/sh
# Exit with status 0 if the system this script runs on supports sem_init()
# (Linux) and exit with status 1 if not (Darwin).
[ "$(uname)" != "Darwin" ]