blob: 3ed4111beeea59a163be0df92a0ed7c110f6f055 [file] [log] [blame]
Paul Duffinb8a58962017-03-15 14:14:35 +00001# Copyright (C) 2017 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15#
16
17LOCAL_PATH := $(call my-dir)
18
19# Build Dexmaker's tests
20#
21# Run the tests as follows:
Colin Cross9bd67732017-10-18 12:57:55 -070022# vogar --classpath ${ANDROID_PRODUCT_OUT}/obj/JAVA_LIBRARIES/dexmaker-tests_intermediates/javalib.jar \
23 com.android.dx
Paul Duffinb8a58962017-03-15 14:14:35 +000024
25include $(CLEAR_VARS)
26LOCAL_MODULE := dexmaker-tests
Colin Cross9bd67732017-10-18 12:57:55 -070027LOCAL_SDK_VERSION := 17
28LOCAL_SRC_FILES := $(call all-java-files-under, src/androidTest/java)
Paul Duffinb8a58962017-03-15 14:14:35 +000029LOCAL_STATIC_JAVA_LIBRARIES := dexmaker android-support-test
Andreas Gampe3ddd7832018-01-26 20:38:44 -080030LOCAL_ERROR_PRONE_FLAGS := -Xep:JUnit4TestNotRun:WARN
Paul Duffinb8a58962017-03-15 14:14:35 +000031include $(BUILD_STATIC_JAVA_LIBRARY)
32
33# Build a test APK
34#
35# Run the tests as follows:
36# m -j32 DexmakerTests && \
37 am install -r -g $OUT/data/app/DexmakerTests/DexmakerTests.apk \
38 adb shell am instrument -w com.google.dexmaker.tests
39#
40include $(CLEAR_VARS)
41LOCAL_MODULE_TAGS := tests
42LOCAL_PACKAGE_NAME := DexmakerTests
Anton Hanssonf6147c42018-02-21 14:13:11 +000043LOCAL_SDK_VERSION := current
Paul Duffinb8a58962017-03-15 14:14:35 +000044LOCAL_STATIC_JAVA_LIBRARIES := \
45 dexmaker-tests
46
47include $(BUILD_PACKAGE)