mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-03 15:55:38 +00:00

Add a self test for the membarrier system call. Signed-off-by: Pranith Kumar <bobby.prani@gmail.com> Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Shuah Khan <shuahkh@osg.samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
11 lines
181 B
Makefile
11 lines
181 B
Makefile
CFLAGS += -g -I../../../../usr/include/
|
|
|
|
all:
|
|
$(CC) $(CFLAGS) membarrier_test.c -o membarrier_test
|
|
|
|
TEST_PROGS := membarrier_test
|
|
|
|
include ../lib.mk
|
|
|
|
clean:
|
|
$(RM) membarrier_test
|