tor-browser

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

xpcshell.toml (2210B)


      1 [DEFAULT]
      2 run-if = [
      3  "os != 'android'",
      4 ]
      5 head = "head_migration.js"
      6 tags = "condprof os_integration"
      7 firefox-appdir = "browser"
      8 prefs = ["browser.migrate.showBookmarksToolbarAfterMigration=true"]
      9 support-files = [
     10  "Library/**",
     11  "AppData/**",
     12  "bookmarks.exported.html",
     13  "bookmarks.exported.json",
     14  "bookmarks.invalid.html",
     15 ]
     16 
     17 ["test_360seMigrationUtils.js"]
     18 run-if = [
     19  "os == 'win'",
     20 ]
     21 
     22 ["test_360se_bookmarks.js"]
     23 run-if = [
     24  "os == 'win'",
     25 ]
     26 
     27 ["test_BookmarksFileMigrator.js"]
     28 
     29 ["test_ChromeMigrationUtils.js"]
     30 
     31 ["test_ChromeMigrationUtils_path.js"]
     32 
     33 ["test_ChromeMigrationUtils_path_chromium_snap.js"]
     34 run-if = [
     35  "os == 'linux'",
     36 ]
     37 
     38 ["test_Chrome_bookmarks.js"]
     39 
     40 ["test_Chrome_corrupt_history.js"]
     41 run-sequentially = ["true"] # fails more than 50% of the time in parallel
     42 
     43 ["test_Chrome_credit_cards.js"]
     44 run-if = [
     45  "os == 'mac'",
     46  "os == 'win'",
     47 ]
     48 
     49 ["test_Chrome_extensions.js"]
     50 
     51 ["test_Chrome_formdata.js"]
     52 run-sequentially = ["true"] # fails more than 50% of the time in parallel
     53 
     54 ["test_Chrome_history.js"]
     55 run-if = [
     56  "os == 'mac'", # Relies on ULibDir
     57 ]
     58 
     59 ["test_Chrome_passwords.js"]
     60 run-if = [
     61  "os == 'mac'",
     62  "os == 'win'",
     63 ]
     64 
     65 ["test_Chrome_passwords_emptySource.js"]
     66 support-files = ["LibraryWithNoData/**"]
     67 run-if = [
     68  "os == 'mac'",
     69  "os == 'win'",
     70 ]
     71 
     72 ["test_Chrome_permissions.js"]
     73 
     74 ["test_Edge_db_migration.js"]
     75 run-if = [
     76  "os == 'win'",
     77 ]
     78 
     79 ["test_Edge_registry_migration.js"]
     80 run-if = [
     81  "os == 'win'",
     82 ]
     83 
     84 ["test_IE_bookmarks.js"]
     85 run-if = [
     86  "os == 'win' && arch == 'x86_64'", # bug 1392396
     87 ]
     88 
     89 ["test_IE_history.js"]
     90 requesttimeoutfactor = 2  # Slow on condprof
     91 run-if = [
     92  "os == 'win'",
     93 ]
     94 skip-if = [
     95  "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && msix", # Bug 1807928
     96 ]
     97 
     98 ["test_MigrationUtils_timedRetry.js"]
     99 
    100 ["test_PasswordFileMigrator.js"]
    101 
    102 ["test_Safari_bookmarks.js"]
    103 run-if = [
    104  "os == 'mac'",
    105 ]
    106 
    107 ["test_Safari_history.js"]
    108 run-sequentially = ["true"] # almost perma fail in parallel
    109 run-if = [
    110  "os == 'mac'",
    111 ]
    112 
    113 ["test_Safari_history_strange_entries.js"]
    114 run-sequentially = ["true"] # frequent fail in parallel
    115 run-if = [
    116  "os == 'mac'",
    117 ]
    118 
    119 ["test_Safari_permissions.js"]
    120 run-if = [
    121  "os == 'mac'",
    122 ]
    123 
    124 ["test_fx_telemetry.js"]