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

Commit bf1d0a62 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Unit tests w/dynamic content to "dynamic-presubmit""

parents d58a7bdb ae8b06eb
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
{
  "presubmit": [
    // TODO(b/148094059): unit tests not allowed to download content
    // { "name": "ExtractorUnitTest" },

    // TODO(b/153661591) enable test once the bug is fixed
    // This tests the extractor path
@@ -16,5 +14,14 @@
    //      }
    //    ]
    //  }
  ],

  // 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": [
    { "name": "ExtractorUnitTest" }
  ]


}
+11 −6
Original line number Diff line number Diff line
{
  "presubmit": [
  // tests which require dynamic content
  // invoke with: atest -- --enable-module-dynamic-download=true
  // TODO(b/148094059): unit tests not allowed to download content
    // { "name": "HEVCUtilsUnitTest" },
    //{ "name": "ExtractorFactoryTest" },
  "dynamic-presubmit": [
    // writerTest fails about 5 out of 66
    // in addition to needing the download ability
    // { "name": "writerTest" },

    { "name": "HEVCUtilsUnitTest" },
    { "name": "ExtractorFactoryTest" }

  ],

  "presubmit": [
    {
      "name": "CtsMediaTestCases",
      "options": [
+6 −7
Original line number Diff line number Diff line
// mappings for frameworks/av/media/libstagefright/codecs/amrnb
{
  "presubmit": [
  // tests which require dynamic content
  // invoke with: atest -- --enable-module-dynamic-download=true
  // TODO(b/148094059): unit tests not allowed to download content
    // { "name": "AmrnbDecoderTest"},

    // TODO(b/148094059): unit tests not allowed to download content
    // { "name": "AmrnbEncoderTest"}

  "dynamic-presubmit": [
    { "name": "AmrnbDecoderTest"},
    { "name": "AmrnbEncoderTest"}
  ]
}
+5 −3
Original line number Diff line number Diff line
// mappings for frameworks/av/media/libstagefright/codecs/amrwb
{
  "presubmit": [
  // tests which require dynamic content
  // invoke with: atest -- --enable-module-dynamic-download=true
  // TODO(b/148094059): unit tests not allowed to download content
    // { "name": "AmrwbDecoderTest"}
  "dynamic-presubmit": [
    { "name": "AmrwbDecoderTest"}

  ]
}
+1 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@

cc_test {
    name: "AmrwbDecoderTest",
    test_suites: ["device-tests"],
    gtest: true,

    srcs: [
Loading