tor-browser

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

browser.toml (1306B)


      1 [DEFAULT]
      2 # These tests can be prone to intermittent failures on slower systems.
      3 # Since the specific flavor doesn't matter from a correctness standpoint,
      4 # just skip the tests on sanitizer, debug and OS X verify builds.
      5 skip-if = [
      6  "asan",
      7  "debug",
      8  "tsan",
      9 ]
     10 support-files = ["head.js"]
     11 
     12 ["browser_all_files_referenced.js"]
     13 skip-if = [
     14  "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", # TODO: this probably needs to be fixed, why not skipped from default?
     15 ]
     16 
     17 ["browser_glean_metrics_exist.js"]
     18 
     19 ["browser_misused_characters_in_strings.js"]
     20 support-files = ["bug1262648_string_with_newlines.dtd"]
     21 run-if = [
     22  "!msix", # Permafail on MSIX packages due to it running on files it shouldn't.
     23 ]
     24 
     25 ["browser_parsable_css.js"]
     26 support-files = ["dummy_page.html"]
     27 run-if = [
     28  "!msix", # Permafail on MSIX packages due to it running on files it shouldn't.
     29 ]
     30 
     31 ["browser_parsable_script.js"]
     32 skip-if = [
     33  "os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland' && ccov", # https://bugzilla.mozilla.org/show_bug.cgi?id=1608081
     34  "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && ccov", # https://bugzilla.mozilla.org/show_bug.cgi?id=1608081
     35 ]
     36 
     37 ["browser_sentence_case_strings.js"]
     38 
     39 ["browser_title_case_menus.js"]