Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f45d9015 authored by David Duarte's avatar David Duarte
Browse files

Revert "Add template to prevent sharding of some bt test modules"

This reverts commit e58cc9d4.

Reason for revert: Trying another workarround, reverting to reduce
                   the number of configuration possibilities
Test: None
Bug: 273588072
Bug: 273846603

Change-Id: I9b2eee0f460b59f6d806b33ceebe2f1fda4d3e43
parent 6acb7d19
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -67,8 +67,3 @@ filegroup {
        "AndroidTestTemplate.xml",
    ],
}

filegroup {
    name: "BluetoothGTestNotShardableConfigTemplate",
    srcs: ["AndroidGtestNotShardableTemplate.xml"],
}
+0 −47
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2023 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<configuration description="Runs {MODULE}.">
  <option name="not-shardable" value="true" />

  <option name="test-suite-tag" value="apct" />
  <option name="test-suite-tag" value="apct-native" />
  <target_preparer class="com.android.tradefed.targetprep.RootTargetPreparer" />
  <target_preparer class="com.android.compatibility.common.tradefed.targetprep.FilePusher">
        <option name="cleanup" value="true" />
        <option name="push" value="{MODULE}->/data/local/tmp/{MODULE}" />
        <option name="append-bitness" value="true" />
    </target_preparer>
  <target_preparer class="com.android.tradefed.targetprep.RunCommandTargetPreparer">
    <option name="run-command" value="settings put global ble_scan_always_enabled 0" />
    <option name="run-command" value="cmd bluetooth_manager disable" />
    <option name="run-command" value="cmd bluetooth_manager wait-for-state:STATE_OFF" />
  </target_preparer>
  <target_preparer class="com.android.tradefed.targetprep.FolderSaver">
    <option name="device-path" value="/data/vendor/ssrdump" />
  </target_preparer>
  <test class="com.android.tradefed.testtype.GTest" >
    <option name="native-test-device-path" value="/data/local/tmp" />
    <option name="module-name" value="{MODULE}" />
    <option name="run-test-as" value="0" />
  </test>

  <!-- Only run tests in MTS if the Bluetooth Mainline module is installed. -->
  <object type="module_controller"
          class="com.android.tradefed.testtype.suite.module.MainlineTestModuleController">
      <option name="mainline-module-package-name" value="com.android.btservices" />
      <option name="mainline-module-package-name" value="com.google.android.btservices" />
  </object>
</configuration>
+0 −5
Original line number Diff line number Diff line
@@ -960,9 +960,4 @@ cc_test {
            undefined: true,
        },
    },
    target: {
        android: {
            test_config_template: ":BluetoothGTestNotShardableConfigTemplate",
        },
    },
}
+0 −18
Original line number Diff line number Diff line
@@ -334,11 +334,6 @@ cc_test {
        "libosi",
    ],
    cflags: ["-DBUILDCFG"],
    target: {
        android: {
            test_config_template: ":BluetoothGTestNotShardableConfigTemplate",
        },
    },
}

// btif rc unit tests for target
@@ -377,11 +372,6 @@ cc_test {
        cfi: true,
        misc_undefined: ["bounds"],
    },
    target: {
        android: {
            test_config_template: ":BluetoothGTestNotShardableConfigTemplate",
        },
    },
}

// btif config cache unit tests for target
@@ -420,7 +410,6 @@ cc_test {
            static_libs: [
                "android.system.suspend.control-V1-ndk",
            ],
            test_config_template: ":BluetoothGTestNotShardableConfigTemplate",
        },
    },
}
@@ -449,11 +438,6 @@ cc_test {
        "libosi",
    ],
    cflags: ["-DBUILDCFG"],
    target: {
        android: {
            test_config_template: ":BluetoothGTestNotShardableConfigTemplate",
        },
    },
}

cc_test {
@@ -569,7 +553,6 @@ cc_test {
                "libbinder_ndk",
                "android.hardware.bluetooth.audio-V3-ndk",
            ],
            test_config_template: ":BluetoothGTestNotShardableConfigTemplate",
        },
    },
    sanitize: {
@@ -692,7 +675,6 @@ cc_test {
                "libbinder_ndk",
                "android.hardware.bluetooth.audio-V3-ndk",
            ],
            test_config_template: ":BluetoothGTestNotShardableConfigTemplate",
        },
    },
    sanitize: {
+0 −1
Original line number Diff line number Diff line
@@ -478,7 +478,6 @@ cc_test {
                "libutils",
                "libcutils",
            ],
            test_config_template: ":BluetoothGTestNotShardableConfigTemplate",
        },
        host_linux: {
            shared_libs: [
Loading