tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

luci-analysis.cfg (1313B)


      1 # Schema for this config file: ProjectConfig in:
      2 # https://luci-config.appspot.com/schemas/projects:luci-analysis.cfg
      3 
      4 
      5 # Reference: chromium/chromium/src/+/main:infra/config/luci-analysis.cfg
      6 bug_management {
      7  default_bug_system: BUGANIZER
      8  buganizer {
      9    default_component {
     10      id: 1363538 # Public Trackers > Chromium Public Trackers > WebRTC
     11    }
     12    file_without_limit_view_trusted: true
     13  }
     14 }
     15 
     16 clustering {
     17  # Google Tests.
     18  test_name_rules {
     19    name: "Google Test (Type or Value Parameterized)"
     20    # Clusters type- and value-parameterized versions of the same GoogleTest.
     21    # Example test ID: ://content/test\:content_unittests!gtest::MySuite#MyTest/MyValueOrTypeInstantiation.1
     22    pattern: "^:(?P<target>[\\w/]+\\\\:\\w+)!gtest::(?P<suite>\\w+)#(?P<test>\\w+)/[\\w.]+$"
     23    like_template: ":${target}!gtest::${suite}#${test}%"
     24  }
     25  test_name_rules {
     26    name: "Google Test (Type-parameterized) Legacy"
     27    pattern: "^ninja:(?P<target>[\\w/]+:\\w+)/(\\w+/)?(?P<suite>\\w+)/\\w+\\.(?P<case>\\w+)$"
     28    like_template: "ninja:${target}/%${suite}/%.${case}"
     29  }
     30  test_name_rules {
     31    name: "Google Test (Value-parameterized) Legacy"
     32    pattern: "^ninja:(?P<target>[\\w/]+:\\w+)/(\\w+/)?(?P<suite>\\w+)\\.(?P<case>\\w+)/[\\w.]+$"
     33    like_template: "ninja:${target}/%${suite}.${case}%"
     34  }
     35 }