Rom Lemarchand | de3942a | 2014-11-10 10:32:49 -0800 | [diff] [blame] | 1 | local_target_dir := $(TARGET_OUT_DATA)/local/tmp |
| 2 | LOCAL_PATH:= $(call my-dir) |
| 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_SRC_FILES:= \ |
| 6 | pagingtest.c \ |
| 7 | mmap_test.c \ |
| 8 | pageinout_test.c \ |
| 9 | thrashing_test.c |
| 10 | |
Rom Lemarchand | de3942a | 2014-11-10 10:32:49 -0800 | [diff] [blame] | 11 | LOCAL_MODULE:= pagingtest |
Bob Badour | 4e06008 | 2021-02-16 18:59:28 -0800 | [diff] [blame] | 12 | LOCAL_LICENSE_KINDS:= SPDX-license-identifier-Apache-2.0 |
| 13 | LOCAL_LICENSE_CONDITIONS:= notice |
| 14 | LOCAL_NOTICE_FILE:= $(LOCAL_PATH)/../NOTICE |
Rom Lemarchand | de3942a | 2014-11-10 10:32:49 -0800 | [diff] [blame] | 15 | |
Chih-Hung Hsieh | 373d3c7 | 2017-10-18 16:28:14 -0700 | [diff] [blame] | 16 | LOCAL_CFLAGS := -Wall -Werror |
| 17 | |
Rom Lemarchand | de3942a | 2014-11-10 10:32:49 -0800 | [diff] [blame] | 18 | LOCAL_MODULE_TAGS := tests |
| 19 | |
| 20 | LOCAL_MODULE_PATH := $(local_target_dir) |
| 21 | LOCAL_MULTILIB := both |
| 22 | LOCAL_MODULE_STEM_32 := pagingtest |
| 23 | LOCAL_MODULE_STEM_64 := pagingtest64 |
| 24 | |
| 25 | include $(BUILD_EXECUTABLE) |