Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee authored by Linus Torvalds on 22 June 2014, 05:02:54 UTC
Linux 3.16-rc2
Tip revision: a497c3b
Makefile
# Makefile for user memory selftests

# No binaries, but make sure arg-less "make" doesn't trigger "run_tests"
all:

run_tests: all
	@if /sbin/modprobe test_user_copy ; then \
		rmmod test_user_copy; \
		echo "user_copy: ok"; \
	else \
		echo "user_copy: [FAIL]"; \
		exit 1; \
	fi
back to top