Skip to content

Commit

Permalink
Bug 1540135 - follow up to fix browser_startup_mainthreadio.js on asa…
Browse files Browse the repository at this point in the history
…n builds where the crash reporter is disabled, r=mconley CLOSED TREE

--HG--
extra : histedit_source : 66d516f2533e623af178390b49957c6dc09646e5
  • Loading branch information
fqueze committed May 7, 2019
1 parent 0545979 commit a69e6af
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,20 +81,21 @@ const startupPhases = {
},
{ // bug 1541200
path: "UAppData:Crash Reports/InstallTime20*",
condition: AppConstants.MOZ_CRASHREPORTER,
stat: 1, // only caught on Windows.
read: 1,
write: 2,
close: 1,
},
{ // bug 1541200
path: "UAppData:Crash Reports/LastCrash",
condition: WIN,
condition: WIN && AppConstants.MOZ_CRASHREPORTER,
stat: 1, // only caught on Windows.
read: 1,
},
{ // bug 1541200
path: "UAppData:Crash Reports/LastCrash",
condition: !WIN,
condition: !WIN && AppConstants.MOZ_CRASHREPORTER,
ignoreIfUnused: true, // only if we ever crashed on this machine
read: 1,
close: 1,
Expand Down Expand Up @@ -226,6 +227,7 @@ const startupPhases = {
{
path: "*ld.so.conf*",
condition: LINUX,
ignoreIfUnused: true,
read: 22,
close: 11,
},
Expand Down Expand Up @@ -295,6 +297,7 @@ const startupPhases = {
{
path: "*ld.so.conf*",
condition: LINUX,
ignoreIfUnused: true,
read: 22,
close: 11,
},
Expand Down

0 comments on commit a69e6af

Please sign in to comment.