blob: 69fea9d04a5c8993af99291ed1ca0fa1a5f54b12 [file] [log] [blame]
Rom Lemarchandde3942a2014-11-10 10:32:49 -08001local_target_dir := $(TARGET_OUT_DATA)/local/tmp
2LOCAL_PATH:= $(call my-dir)
3include $(CLEAR_VARS)
4
5LOCAL_SRC_FILES:= \
6 pagingtest.c \
7 mmap_test.c \
8 pageinout_test.c \
9 thrashing_test.c
10
Rom Lemarchandde3942a2014-11-10 10:32:49 -080011LOCAL_MODULE:= pagingtest
Bob Badour4e060082021-02-16 18:59:28 -080012LOCAL_LICENSE_KINDS:= SPDX-license-identifier-Apache-2.0
13LOCAL_LICENSE_CONDITIONS:= notice
14LOCAL_NOTICE_FILE:= $(LOCAL_PATH)/../NOTICE
Rom Lemarchandde3942a2014-11-10 10:32:49 -080015
Chih-Hung Hsieh373d3c72017-10-18 16:28:14 -070016LOCAL_CFLAGS := -Wall -Werror
17
Rom Lemarchandde3942a2014-11-10 10:32:49 -080018LOCAL_MODULE_TAGS := tests
19
20LOCAL_MODULE_PATH := $(local_target_dir)
21LOCAL_MULTILIB := both
22LOCAL_MODULE_STEM_32 := pagingtest
23LOCAL_MODULE_STEM_64 := pagingtest64
24
25include $(BUILD_EXECUTABLE)