xref: /aosp_15_r20/art/test/testrunner/device_config.py (revision 795d594fd825385562da6b089ea9b2033f3abf5a)
1*795d594fSAndroid Build Coastguard Workerdevice_config = {
2*795d594fSAndroid Build Coastguard Worker# Configuration syntax:
3*795d594fSAndroid Build Coastguard Worker#
4*795d594fSAndroid Build Coastguard Worker#  device: The value of ro.product.name or 'host' or 'jvm'
5*795d594fSAndroid Build Coastguard Worker#  properties: (Use one or more of these).
6*795d594fSAndroid Build Coastguard Worker#     * run-test-args: additional run-test-args
7*795d594fSAndroid Build Coastguard Worker#
8*795d594fSAndroid Build Coastguard Worker# *** IMPORTANT ***:
9*795d594fSAndroid Build Coastguard Worker#    This configuration is used by the android build server. Targets must not be renamed
10*795d594fSAndroid Build Coastguard Worker#    or removed.
11*795d594fSAndroid Build Coastguard Worker#
12*795d594fSAndroid Build Coastguard Worker##########################################
13*795d594fSAndroid Build Coastguard Worker    # Fugu's don't have enough memory to support a 128m heap with normal concurrency.
14*795d594fSAndroid Build Coastguard Worker    # Also update timeout value as some tests can go beyond the default 600s.
15*795d594fSAndroid Build Coastguard Worker    'aosp_fugu' : {
16*795d594fSAndroid Build Coastguard Worker        'run-test-args': [ "--runtime-option", "-Xmx128m", "--timeout", "900" ],
17*795d594fSAndroid Build Coastguard Worker    },
18*795d594fSAndroid Build Coastguard Worker    'fugu' : {
19*795d594fSAndroid Build Coastguard Worker        'run-test-args': [ "--runtime-option", "-Xmx128m", "--timeout", "900" ],
20*795d594fSAndroid Build Coastguard Worker    },
21*795d594fSAndroid Build Coastguard Worker}
22