0054cbd4db
To check for robustness against EINTR from syscalls, add an interrupter library that can be preloaded with LD_PRELOAD. Change-Id: I0a6cd8702ec5bc6b2927a5e223ee3cdc033860a2
21 lines
387 B
Makefile
21 lines
387 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
interrupter.c
|
|
LOCAL_MODULE := interrupter
|
|
LOCAL_MODULE_TAGS := eng tests
|
|
LOCAL_LDFLAGS := -ldl
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
interrupter.c
|
|
LOCAL_MODULE := interrupter
|
|
LOCAL_MODULE_TAGS := eng tests
|
|
LOCAL_LDFLAGS := -ldl
|
|
|
|
include $(BUILD_HOST_SHARED_LIBRARY) |