The perforamnce test read from/write to 10MB data to AppFuse file 100 times. Test: adb shell am instrument -w com.android.mtp.perftests/android.support.test.runner.AndroidJUnitRunner Bug: 31982374 Change-Id: I8f78ee43d8078d7f1098249b28491cb43b5f3bef
12 lines
339 B
Makefile
12 lines
339 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
LOCAL_STATIC_JAVA_LIBRARIES := android-support-test
|
|
LOCAL_PACKAGE_NAME := MtpDocumentsProviderPerfTests
|
|
LOCAL_INSTRUMENTATION_FOR := MtpDocumentsProvider
|
|
LOCAL_CERTIFICATE := media
|
|
|
|
include $(BUILD_PACKAGE)
|