You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
826 B
34 lines
826 B
# Copyright 2006 The Android Open Source Project |
|
|
|
LOCAL_PATH:= $(call my-dir) |
|
|
|
include $(CLEAR_VARS) |
|
LOCAL_SRC_FILES := timetest.c |
|
LOCAL_MODULE := timetest |
|
LOCAL_MODULE_TAGS := tests |
|
LOCAL_FORCE_STATIC_EXECUTABLE := true |
|
LOCAL_STATIC_LIBRARIES := libc |
|
include $(BUILD_NATIVE_TEST) |
|
|
|
# ----------------------------------------------------------------------------- |
|
# Unit tests. |
|
# ----------------------------------------------------------------------------- |
|
|
|
test_c_flags := \ |
|
-fstack-protector-all \ |
|
-g \ |
|
-Wall -Wextra \ |
|
-Werror \ |
|
-fno-builtin \ |
|
|
|
test_src_files := \ |
|
rtc_test.cpp |
|
|
|
include $(CLEAR_VARS) |
|
LOCAL_MODULE := time-unit-tests |
|
LOCAL_COMPATIBILITY_SUITE := device-tests |
|
LOCAL_MODULE_TAGS := tests |
|
LOCAL_CFLAGS += $(test_c_flags) |
|
LOCAL_SRC_FILES := $(test_src_files) |
|
include $(BUILD_NATIVE_TEST) |
|
|
|
|