tor-browser

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

edit-manifest-before.toml (678B)


      1 # This is an example of comment at the top of a manifest
      2 
      3 ["bug_100.js"]
      4 skip-if = [
      5  "os == 'android' && asan", # Bug 100, will be carried over
      6 ]
      7 
      8 ["bug_3.js"]
      9 # This is a comment about Bug 3
     10 skip-if = ["os == 'linux'"]
     11 # DO NOT ADD MORE TESTS HERE
     12 
     13 ['bug_20.js']
     14 
     15 ["test_foo.html"]
     16 skip-if = ["os == 'mac' && !debug"] # bug 31415
     17 
     18 ["test_bar.html"]
     19 skip-if = [
     20  "os == 'mac'",    #  Bug 111
     21  "os == 'linux'",  #  Bug 222
     22  "os == 'win'", #     Bug 333
     23 ]
     24 
     25 ["test_extend_linux.js"]
     26 skip-if = [
     27  "os == 'mac'", # Bug 111
     28  "os == 'linux'", # Bug 222
     29 ]
     30 
     31 ["test_simplify_linux.js"]
     32 skip-if = [
     33  "os == 'mac'", # Bug 111
     34  "os == 'linux' && os_version == '22.04'", # Bug 222
     35 ]