blob: 4a5b5c17c0c9595ceb597fd9d22194e439ab88b6 [file] [log] [blame]
Andreas Gampea8380242017-04-07 09:18:45 -07001#
2# Copyright (C) 2017 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17LOCAL_PATH := $(call my-dir)
18
19include $(CLEAR_VARS)
20
21# Main shim classes. We use one that exposes the tagging common functionality.
22LOCAL_SRC_FILES := \
23 903-hello-tagging/src/art/Main.java \
24
25# Actual test classes.
26LOCAL_SRC_FILES += \
27 901-hello-ti-agent/src/art/Test901.java \
28 903-hello-tagging/src/art/Test903.java \
29 904-object-allocation/src/art/Test904.java \
30 905-object-free/src/art/Test905.java \
31 906-iterate-heap/src/art/Test906.java \
32 907-get-loaded-classes/src/art/Test907.java \
33 908-gc-start-finish/src/art/Test908.java \
34 910-methods/src/art/Test910.java \
35 911-get-stack-trace/src/art/Test911.java \
36 911-get-stack-trace/src/art/AllTraces.java \
37 911-get-stack-trace/src/art/ControlData.java \
38 911-get-stack-trace/src/art/Frames.java \
39 911-get-stack-trace/src/art/OtherThread.java \
40 911-get-stack-trace/src/art/PrintThread.java \
41 911-get-stack-trace/src/art/Recurse.java \
42 911-get-stack-trace/src/art/SameThread.java \
43 911-get-stack-trace/src/art/ThreadListTraces.java \
44 913-heaps/src/art/Test913.java \
45 918-fields/src/art/Test918.java \
46 920-objects/src/art/Test920.java \
47 922-properties/src/art/Test922.java \
48 923-monitors/src/art/Test923.java \
49 924-threads/src/art/Test924.java \
50 925-threadgroups/src/art/Test925.java \
51 927-timers/src/art/Test927.java \
52 928-jni-table/src/art/Test928.java \
53 931-agent-thread/src/art/Test931.java \
54 933-misc-events/src/art/Test933.java \
55
56LOCAL_MODULE_TAGS := optional
57LOCAL_JAVA_LANGUAGE_VERSION := 1.8
58LOCAL_MODULE := run-test-jvmti-java
59include $(BUILD_HOST_JAVA_LIBRARY)