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

Commit 0bfa6a73 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Enable unit tests for some utils in postsubmit" into main am: 411ee6cf am: c3441cef

parents 0a1f2226 c3441cef
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
// mappings for frameworks/av/media/module/esds
{
  // tests which require dynamic content
  // invoke with: atest -- --enable-module-dynamic-download=true
  // TODO(b/148094059): unit tests not allowed to download content
  "dynamic-presubmit": [
  "postsubmit": [
    { "name": "ESDSTest" }
  ]
}
+1 −0
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ package {
cc_test {
    name: "ESDSTest",
    gtest: true,
    test_suites: ["device-tests"],

    srcs: [
        "ESDSTest.cpp",
+2 −5
Original line number Diff line number Diff line
// mappings for frameworks/av/media/libstagefright/foundation
{
  // tests which require dynamic content
  // invoke with: atest -- --enable-module-dynamic-download=true
  // TODO(b/148094059): unit tests not allowed to download content
  "dynamic-presubmit": [
  "postsubmit": [
    { "name": "AVCUtilsUnitTest" },
    { "name": "OpusHeaderTest" }
  ],

+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@ package {
cc_test {
    name: "AVCUtilsUnitTest",
    gtest: true,
    test_suites: ["device-tests"],

    srcs: [
        "AVCUtilsUnitTest.cpp",
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
<configuration description="Test module config for AVC Utils unit tests">
    <option name="test-suite-tag" value="AVCUtilsUnitTest" />
    <target_preparer class="com.android.tradefed.targetprep.PushFilePreparer">
        <option name="cleanup" value="false" />
        <option name="cleanup" value="true" />
        <option name="push" value="AVCUtilsUnitTest->/data/local/tmp/AVCUtilsUnitTest" />
    </target_preparer>

Loading