mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
13 lines
282 B
Makefile
13 lines
282 B
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
|