/irc-logs / mozilla / #developers / 2015-03-02 / end
Options:
Previous day, Next day
- # Session Start: Mon Mar 02 00:00:00 2015
- # Session Ident: #developers
- # [00:00] * Quits: rbarnes (rbarnes@moz-oe918i.fios.verizon.net) (A TLS packet with unexpected length was received.)
- # [00:06] * Joins: rbarnes (rbarnes@moz-oe918i.fios.verizon.net)
- # [00:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/c5335f63e7c8 - Mark Hammond - Bug 1137459 - avoid sensitive information in the FxA logs. r=ckarlof
- # [00:20] * Quits: ckitching (ckitching@moz-cbggqe.cable.virginm.net) (A TLS packet with unexpected length was received.)
- # [00:32] * Joins: Bas (chatzilla@moz-bbdigr.ftth.concepts.nl)
- # [00:33] * Quits: rbarnes (rbarnes@moz-oe918i.fios.verizon.net) (A TLS packet with unexpected length was received.)
- # [00:35] * Joins: dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com)
- # [00:35] * killer sets mode: +ao dbaron dbaron
- # [00:37] * Joins: rbarnes (rbarnes@moz-oe918i.fios.verizon.net)
- # [00:38] * nthomas is now known as nthomas|away
- # [00:39] * Quits: Guest_ (textual@moz-2jnc4m.ma.comcast.net) (Quit: Textual IRC Client: www.textualapp.com)
- # [00:46] * Quits: secretrobotron (secretrobot@moz-49imne.dsl.teksavvy.com) (A TLS packet with unexpected length was received.)
- # [00:47] * Quits: jmorton (jmorton@moz-83s.irv.199.198.IP) (Quit: WeeChat 1.2-dev)
- # [00:51] * Quits: Mnyromyr (Mnyromyr@moz-75psd9.ejss.mv3s.0908.2a02.IP) (Quit: ChatZilla 0.9.91.1 [SeaMonkey 2.32/20150112202503])
- # [00:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c12d73654aa7 - Jean-Yves Avenard - Bug 1134387: Prevent crash when decoder couldn't be created. r=edwin
- # [00:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/afa562ac56af - Jean-Yves Avenard - Bug 1128397: Work around EOS detection in MSE. r=mattwoodrow
- # [00:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c6e173b28eca - Jean-Yves Avenard - Bug 1137529: Prefer Apple's VDA hardware acceleration for Hi-Def videos. r=rillian
- # [00:54] * Joins: TYLin (TYLin@moz-aj9ejj.HINET-IP.hinet.net)
- # [00:54] * Quits: TYLin (TYLin@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [01:03] * Quits: @njn (chatzilla@moz-00ugoe.iinet.net.au) (Ping timeout: 121 seconds)
- # [01:03] <@smaug> glandium: njn: what kinds of behavioral changes can one expect from jemalloc3?
- # [01:03] <@smaug> like, is it perhaps faster? ends up using less memory?
- # [01:04] <@smaug> Different kinds of buckets?
- # [01:04] * Joins: njn (chatzilla@moz-8172u2.iinet.net.au)
- # [01:04] * killer sets mode: +o njn
- # [01:04] <@smaug> njn: http://logs.glob.uno/?c=mozilla%23developers&s=1+Mar+2015&e=2+Mar+2015#c1170602
- # [01:07] * Joins: catalinb (catalin@moz-lg1.mgs.25.188.IP)
- # [01:08] * Joins: gandalf (zbraniecki@moz-igq.7si.9.216.IP)
- # [01:09] <glandium> smaug: should be using slightly less memory ; uses different buckets
- # [01:09] <@smaug> are the buckets in v3 documented somewhere
- # [01:10] * @smaug recalls njn explained the old behavior in a blog post
- # [01:10] <@smaug> https://blog.mozilla.org/nnethercote/2011/08/05/clownshoes-available-in-sizes-2101-and-up/
- # [01:11] <@njn> smaug: on my todo list for today is to write a patch that auto-detects jemalloc's bucket sizes
- # [01:12] * Quits: catalinb (catalin@moz-lg1.mgs.25.188.IP) (Ping timeout: 121 seconds)
- # [01:13] <glandium> smaug: search for size_classes in memory/jemalloc/src/doc/jemalloc.xml.in
- # [01:14] <@smaug> thanks
- # [01:16] * Joins: darktrojan (geoff@moz-rdppp8.dsl.telstraclear.net)
- # [01:17] <glandium> smaug: note we are not using 4MB chunks, so our numbers are different
- # [01:17] <glandium> njn: how do you plan on doing that?
- # [01:18] <@njn> glandium: just do allocations from size 1 upwards and measure each one with moz_malloc_usable_size()
- # [01:18] <glandium> njn: why not use good_size?
- # [01:18] <@njn> glandium: oh yeah
- # [01:19] <@njn> glandium: hmm, mozalloc lacks good_size?
- # [01:19] <glandium> njn: and you can do a loop of n = malloc_good_size(n + 1)
- # [01:19] <glandium> njn: you don't have to care about mozalloc
- # [01:20] * ewong|away is now known as ewong
- # [01:20] <@njn> glandium: ok, but this isn't code that's going to run frequently :)
- # [01:21] <glandium> njn: arm is slow
- # [01:22] <@njn> glandium: this code won't land
- # [01:22] <glandium> O_o
- # [01:22] * Quits: Ms2ger (Ms2ger@moz-pleb2j.isp.belgacom.be) (Quit: nn)
- # [01:23] <@njn> I'm just doing this to satisfy my own curiosity; what practical use do you imagine it might have?
- # [01:24] <glandium> i don't know, I thought you wanted to land that. otherwise, you don't need to write any code to know the size classes
- # [01:24] * Quits: bitgeeky (bitgeeky@moz-u8j.fg6.39.5.IP) (Quit: Leaving)
- # [01:24] <glandium> just look at size_classes.h
- # [01:24] <glandium> in an objdir
- # [01:26] <@njn> glandium: that file is not easy to read
- # [01:27] * Joins: jgilbert (jgilbert@moz-je535d.h890.7gsb.0009.2601.IP)
- # [01:27] * Quits: Rik (rik@moz-c77n2v.9fj5.68v8.0e35.2a01.IP) (Ping timeout: 121 seconds)
- # [01:27] * Joins: ddahl (ddahl@moz-40a6g5.il.comcast.net)
- # [01:28] * Joins: nattokirai (nattokirai@moz-86b4bs.bitcat.net)
- # [01:28] * Joins: myk (myk@moz-1nu6fg.dynamic.fusionbroadband.com)
- # [01:29] * Joins: twash (twash@moz-vq9jt2.hr.cox.net)
- # [01:30] <glandium> njn: you can easily process it. I mean, you don't have to write code using the jemalloc runtime when all the info is in that file
- # [01:31] <glandium> class sizes are 1<<lg_grp + ndelta<<lg_delta
- # [01:31] * Quits: rednaks (rednaks@moz-cun.cog.227.41.IP) (Quit: Leaving)
- # [01:32] * Quits: gandalf (zbraniecki@moz-igq.7si.9.216.IP) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [01:32] * Joins: njn_ (chatzilla@moz-mrqno0.iinet.net.au)
- # [01:33] <njn_> glandium: I also want to see what the system allocator does
- # [01:34] <njn_> so my loop (already written and run) will give me that
- # [01:34] * Quits: @njn (chatzilla@moz-8172u2.iinet.net.au) (Ping timeout: 121 seconds)
- # [01:34] * njn_ is now known as njn
- # [01:37] * Quits: @smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi) (Ping timeout: 121 seconds)
- # [01:38] * Joins: Manny (quassel@moz-bgt.6kh.139.14.IP)
- # [01:38] * Quits: ManikM (quassel@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [01:39] * Quits: rbarnes (rbarnes@moz-oe918i.fios.verizon.net) (A TLS packet with unexpected length was received.)
- # [01:41] * Joins: Sander (chatzilla@moz-7lv.bfp.133.186.IP)
- # [01:42] * Quits: jgilbert (jgilbert@moz-je535d.h890.7gsb.0009.2601.IP) (Ping timeout: 121 seconds)
- # [01:43] * Joins: garvank (Garvan@moz-p18v30.dsl.teksavvy.com)
- # [01:43] * Quits: garvank (Garvan@moz-p18v30.dsl.teksavvy.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [01:45] * Joins: JosiahOne (Instantbird@moz-stv68f.l2d1.q8mm.0306.2602.IP)
- # [01:48] <cpearce> Is anyone planning to merge m-i > m-c today? I've got some stuff I'd really like to see in tomorrow's Nightly...
- # [01:52] * Quits: Sander (chatzilla@moz-7lv.bfp.133.186.IP) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [01:54] * Joins: trevorh (trevor@moz-3o9.i1r.174.58.IP)
- # [01:54] * Joins: elin (elin@moz-6fdb35.dynamic-ip.hinet.net)
- # [01:59] * Quits: karlt (karl@moz-fma8re.xtra.co.nz) (Ping timeout: 121 seconds)
- # [02:01] * Joins: jrmuizel (jrmuizel@moz-j77.vqs.114.24.IP)
- # [02:02] <nigelb> cpearce: maybeeee.
- # [02:02] <nigelb> If it's looking good.
- # [02:04] <cpearce> nigelb: Even if you merge from half a day back when it looked good then, that would be fabulous... :)
- # [02:05] <nigelb> heh, ok
- # [02:05] <nigelb> I'm going to first star all the way back so I don't accidentally merge a bustage.
- # [02:05] <nigelb> so it'll take a bit.
- # [02:05] * Quits: jrmuizel (jrmuizel@moz-j77.vqs.114.24.IP) (Connection closed)
- # [02:06] <cpearce> nigelb: thanks very muchly
- # [02:08] * Joins: catalinb (catalin@moz-lg1.mgs.25.188.IP)
- # [02:09] * Joins: squib (squib@moz-napvi8.wi.charter.com)
- # [02:13] * Quits: catalinb (catalin@moz-lg1.mgs.25.188.IP) (Ping timeout: 121 seconds)
- # [02:13] * Quits: \n (\n@moz-n8gq1g.ca.comcast.net) (Ping timeout: 121 seconds)
- # [02:14] * Quits: sfink (chatzilla@moz-vi8qu5.sntcca.sbcglobal.net) (Connection closed)
- # [02:14] * Joins: \n (\n@moz-n8gq1g.ca.comcast.net)
- # [02:14] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/eed281422403 - J. Ryan Stinnett - Backout 012e92feffe6 (bug 1128027). r=bgrins a=lsblakk
- # [02:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/85ca6f646762 - J. Ryan Stinnett - Backout b82653e56ec9 (bug 1128027). r=bgrins a=lsblakk
- # [02:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/21120474140d - J. Ryan Stinnett - Backout 569e2110f0ff (bug 1128027). r=bgrins a=lsblakk
- # [02:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/6f6ec57ce6b9 - J. Ryan Stinnett - Backout 4c02cca13dbe (bug 1128027). r=bgrins a=lsblakk
- # [02:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/e49cd895e078 - J. Ryan Stinnett - Backout 021aac3d7804 (bug 1128027). r=bgrins a=lsblakk
- # [02:15] * Quits: abr (anonymous@moz-u3pnp5.dllstx.sbcglobal.net) (Client exited)
- # [02:16] * Joins: abr (anonymous@moz-u3pnp5.dllstx.sbcglobal.net)
- # [02:17] * Quits: abr (anonymous@moz-u3pnp5.dllstx.sbcglobal.net) (A TLS packet with unexpected length was received.)
- # [02:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0fa6398b46b9 - Chris Pearce - Bug 1138240 - Fail faster if a CDM tries to resolve a resolved promise. r=edwin
- # [02:19] * Joins: abr (anonymous@moz-u3pnp5.dllstx.sbcglobal.net)
- # [02:19] * Quits: JosiahOne (Instantbird@moz-stv68f.l2d1.q8mm.0306.2602.IP) (Quit: [self dealloc])
- # [02:23] * Quits: mchang (mchang@moz-4b7hgp.res.rr.com) (Client exited)
- # [02:24] * Joins: tonymec (tonymec@moz-mk2.1sn.129.109.IP)
- # [02:25] * Joins: ckitching (ckitching@moz-cbggqe.cable.virginm.net)
- # [02:26] * Quits: elin (elin@moz-6fdb35.dynamic-ip.hinet.net) (Client exited)
- # [02:27] * Quits: cirocosta (Ciro@moz-t4q.9oh.148.177.IP) (Ping timeout: 121 seconds)
- # [02:29] * Joins: mastizada (Thunderbird@moz-ihb.dc9.233.178.IP)
- # [02:31] * Quits: ochameau (ochameau@moz-31is2j.fbx.proxad.net) (Ping timeout: 121 seconds)
- # [02:31] * Joins: cirocosta (Ciro@moz-t4q.9oh.148.177.IP)
- # [02:32] * Joins: schien (anonymous@moz-2hf62a.HINET-IP.hinet.net)
- # [02:33] * Joins: ochameau (ochameau@moz-31is2j.fbx.proxad.net)
- # [02:33] * Joins: m_kato (m_kato@moz-86b4bs.bitcat.net)
- # [02:36] * Joins: m_gol (m_gol@moz-f1mofo.dynamic.chello.pl)
- # [02:37] * Joins: karlt (karl@moz-0mfuf7.dqqd.b0fh.0cb0.2001.IP)
- # [02:37] * Quits: till (till@moz-sdr26t.adsl.alicedsl.de) (Ping timeout: 121 seconds)
- # [02:37] * Joins: till (till@moz-ass5lh.adsl.alicedsl.de)
- # [02:38] * Quits: ochameau (ochameau@moz-31is2j.fbx.proxad.net) (Ping timeout: 121 seconds)
- # [02:42] * Joins: JamesCheng (james@moz-2hf62a.HINET-IP.hinet.net)
- # [02:43] * Joins: brsun (chatzilla@moz-2hf62a.HINET-IP.hinet.net)
- # [02:47] * Joins: Morris (Morris@moz-aj9ejj.HINET-IP.hinet.net)
- # [02:49] * Joins: jrmuizel (jrmuizel@moz-r3g.uh8.114.24.IP)
- # [02:50] <nigelb> glandium: the M2 bustages on your push, are they coincidental?
- # [02:51] <nigelb> glandium: nevermind. they seem to be.
- # [02:52] * Joins: allstarschh (allstars@moz-2hf62a.HINET-IP.hinet.net)
- # [02:52] * Joins: micahg (micahg@moz-sq8kti.cable.rcn.com)
- # [02:55] * Quits: till (till@moz-ass5lh.adsl.alicedsl.de) (Quit: night)
- # [02:55] * Quits: jrmuizel (jrmuizel@moz-r3g.uh8.114.24.IP) (Connection closed)
- # [02:55] * Fallen is now known as Fallen|away
- # [02:58] * Joins: edenchuang (uid46829@moz-38m6rq.brockwell.irccloud.com)
- # [02:58] * Joins: shelly (shelly@moz-aj9ejj.HINET-IP.hinet.net)
- # [03:00] * Joins: seanlin (Thunderbird@moz-aj9ejj.HINET-IP.hinet.net)
- # [03:05] * Quits: darktrojan (geoff@moz-rdppp8.dsl.telstraclear.net) (Ping timeout: 121 seconds)
- # [03:05] <jesup> Comcast baiting with banner flown by their HQ here in Philly: http://media.tumblr.com/0b74d28e7b826d7b37dd76ea473f0d1a/tumblr_inline_nkg7fmWHyZ1r2e3za.jpg (from http://tumblr.fightforthefuture.org/post/112237319673/breaking-grumpy-cat-soars-over-comcast)
- # [03:05] * Joins: rnat (Mibbit@moz-3d6.6df.73.116.IP)
- # [03:06] <nigelb> that's brilliant! :D
- # [03:07] * Joins: elin (elin@moz-aj9ejj.HINET-IP.hinet.net)
- # [03:08] * Joins: jdm (jdm@moz-ilbt2e.cable.teksavvy.com)
- # [03:09] * Joins: chewey_ (chewey@moz-kmrf30.dip0.t-ipconnect.de)
- # [03:09] * Joins: catalinb (catalin@moz-lg1.mgs.25.188.IP)
- # [03:11] * Quits: chewey (chewey@moz-10ji0m.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)
- # [03:12] * Joins: TYLin (TYLin@moz-aj9ejj.HINET-IP.hinet.net)
- # [03:13] * Quits: catalinb (catalin@moz-lg1.mgs.25.188.IP) (Ping timeout: 121 seconds)
- # [03:14] * Joins: tn_ (tim@moz-099gp0.wp.shawcable.net)
- # [03:14] * Quits: tn (tim@moz-099gp0.wp.shawcable.net) (Ping timeout: 121 seconds)
- # [03:14] * tn_ is now known as tn
- # [03:16] * Joins: masayuki (Thunderbird@moz-4h7gcj.au-net.ne.jp)
- # [03:18] * jhlin|away is now known as jhlin
- # [03:21] * Joins: boris (boris@moz-aj9ejj.HINET-IP.hinet.net)
- # [03:22] * Joins: hardtolearn (Thunderbird@moz-u99.t4o.140.113.IP)
- # [03:22] * Joins: garvank (Garvan@moz-p18v30.dsl.teksavvy.com)
- # [03:23] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
- # [03:23] * hwine is now known as hwine-ooo
- # [03:24] * Joins: vicamo (vicamo@moz-8o1.p7n.41.175.IP)
- # [03:25] * nthomas|away is now known as nthomas
- # [03:25] * heycam is now known as heycam|away
- # [03:26] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/f1404fa34faf - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [03:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/c480ea128ae2 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [03:27] * Joins: bdahl (bdahl@moz-dm0j4d.dynamic.fusionbroadband.com)
- # [03:29] * Quits: KaiRo (robert@moz-5k01hb.highway.telekom.at) (A TLS packet with unexpected length was received.)
- # [03:29] * Quits: rnat (Mibbit@moz-3d6.6df.73.116.IP) (Quit: http://www.mibbit.com ajax IRC Client)
- # [03:32] * Joins: darktrojan (geoff@moz-rdppp8.dsl.telstraclear.net)
- # [03:34] * Quits: btulchinsky (btulchinsky@moz-f08.5nv.231.64.IP) (Connection closed)
- # [03:35] * Joins: roc (chatzilla@moz-h8ll9b.dqqd.b0fh.0cb0.2001.IP)
- # [03:35] * killer sets mode: +o roc
- # [03:38] * Joins: ManikM (quassel@moz-bgt.6kh.139.14.IP)
- # [03:38] * Quits: Manny (quassel@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [03:46] * Joins: developers850 (bzlandfill@moz-prkb6v.dip0.t-ipconnect.de)
- # [03:47] * Quits: developers850 (bzlandfill@moz-prkb6v.dip0.t-ipconnect.de) (Quit: CGI:IRC)
- # [03:48] * Joins: developers608 (bzlandfill@moz-prkb6v.dip0.t-ipconnect.de)
- # [03:51] * Joins: evanxd (Adium@moz-5oubm5.dynamic.hinet.net)
- # [03:51] * Joins: Jerry_PC (hshih@moz-aj9ejj.HINET-IP.hinet.net)
- # [03:51] * Quits: evanxd (Adium@moz-5oubm5.dynamic.hinet.net) (Quit: Leaving.)
- # [03:52] * Joins: btulchinsky (btulchinsky@moz-f08.5nv.231.64.IP)
- # [03:52] * Joins: Jerry_Mac (hshih@moz-aj9ejj.HINET-IP.hinet.net)
- # [03:53] * Quits: developers608 (bzlandfill@moz-prkb6v.dip0.t-ipconnect.de) (Quit: CGI:IRC)
- # [03:54] * Joins: evanxd (Adium@moz-5oubm5.dynamic.hinet.net)
- # [03:55] * Joins: evanxd1 (Adium@moz-2hf62a.HINET-IP.hinet.net)
- # [03:56] * Quits: trevorh (trevor@moz-3o9.i1r.174.58.IP) (Quit: Leaving.)
- # [03:59] * Quits: evanxd (Adium@moz-5oubm5.dynamic.hinet.net) (Ping timeout: 121 seconds)
- # [03:59] * Quits: masayuki (Thunderbird@moz-4h7gcj.au-net.ne.jp) (Ping timeout: 121 seconds)
- # [03:59] * Joins: joki9 (anonymous@moz-prkb6v.dip0.t-ipconnect.de)
- # [04:00] * Quits: reed (reed@tech.monkey) (RecvQ exceeded)
- # [04:01] * Joins: timdream (timdream@moz-aj9ejj.HINET-IP.hinet.net)
- # [04:01] * Joins: reed (reed@tech.monkey)
- # [04:01] * Joins: jocelyn (uid26949@moz-8e7nk5.charlton.irccloud.com)
- # [04:01] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/8001c9165104 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [04:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/4644f97c870c - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [04:06] * Quits: joki9 (anonymous@moz-prkb6v.dip0.t-ipconnect.de) (Connection closed)
- # [04:06] * Quits: ckitching (ckitching@moz-cbggqe.cable.virginm.net) (A TLS packet with unexpected length was received.)
- # [04:07] * Joins: bajaj (bajaj_afk@moz-4m6.c8d.205.49.IP)
- # [04:09] * Joins: atsai (atsai@moz-aj9ejj.HINET-IP.hinet.net)
- # [04:10] * Joins: catalinb (catalin@moz-lg1.mgs.25.188.IP)
- # [04:13] * Quits: hallvors (uid23371@moz-jrnk4a.ealing.irccloud.com) (Quit: Connection closed for inactivity)
- # [04:14] * Quits: catalinb (catalin@moz-lg1.mgs.25.188.IP) (Ping timeout: 121 seconds)
- # [04:18] * Joins: mahdi (mahdi@moz-pam.dis.244.151.IP)
- # [04:19] * heycam|away is now known as heycam
- # [04:24] * Quits: bdahl (bdahl@moz-dm0j4d.dynamic.fusionbroadband.com) (A TLS packet with unexpected length was received.)
- # [04:26] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4013d256b591 - Gregory Szorc - Bug 1132771 - API to return moz.build files relevant for a set of paths; r=glandium
- # [04:26] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/acdd5491f10e - Gregory Szorc - Bug 1132771 - Implement strongly typed named tuples; r=glandium
- # [04:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ed135df39575 - Gregory Szorc - Bug 1132771 - Pass special types down to sandboxes via metadata; r=glandium
- # [04:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/6c44edc8208a - Gregory Szorc - Bug 1132771 - Support reading relevant moz.build files; r=glandium
- # [04:27] * Joins: kapy (kapy@moz-440.kg8.68.182.IP)
- # [04:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/91d34d3107fa - Gregory Szorc - Bug 1132771 - Add a test for reading all moz.build files in filesystem traversal mode; r=glandium
- # [04:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c3a0cb4b45b1 - Gregory Szorc - Bug 1132771 - Support and test for reading without a config object; r=glandium
- # [04:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/7eed09d39b9f - Gregory Szorc - Bug 1132771 - Add Files to moz.build with ability to define Bugzilla component; r=glandium
- # [04:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4cc39c54099d - Gregory Szorc - Bug 1132771 - Define some bug components; r=glandium
- # [04:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b7ec05265c33 - Gregory Szorc - Bug 1132771 - Implement file-info mach command; r=glandium
- # [04:27] * Quits: myk (myk@moz-1nu6fg.dynamic.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [04:29] * Quits: bajaj (bajaj_afk@moz-4m6.c8d.205.49.IP) (Quit: Leaving.)
- # [04:30] * Quits: timdream (timdream@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [04:31] * Quits: kapy (kapy@moz-440.kg8.68.182.IP) (Connection closed)
- # [04:33] * Quits: mahdi (mahdi@moz-pam.dis.244.151.IP) (Connection closed)
- # [04:34] * Quits: darktrojan (geoff@moz-rdppp8.dsl.telstraclear.net) (Ping timeout: 121 seconds)
- # [04:36] * Joins: bajaj (bajaj_afk@moz-4m6.c8d.205.49.IP)
- # [04:36] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
- # [04:37] * Joins: ochameau (ochameau@moz-31is2j.fbx.proxad.net)
- # [04:38] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/264f97c43552 - Bobby Holley - Bug 1138072 - Don't defer reading to a closed stream. r=roc
- # [04:38] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/dc0b58714ffc - Bobby Holley - Bug 1135785 - Introduce a 1-argument overload of ProxyMediaCall. r=cpearce
- # [04:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e637962ba64b - Bobby Holley - Bug 1135785 - Make MediaTaskQueue::IsCurrentThreadIn actually do the right thing on release builds. r=cpearce
- # [04:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/2a077477b16c - Bobby Holley - Bug 1135785 - Make DecodeError safe to run on any thread. r=cpearce
- # [04:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ede75f0e87f0 - Bobby Holley - Bug 1135785 - Return samples on state machine thread. r=cpearce
- # [04:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a9bf129cdbdb - Bobby Holley - Bug 1135785 - Stop invoking StopPlayback in SetDormant. r=cpearce
- # [04:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/6a49d13612c8 - Bobby Holley - Bug 1135785 - Stop manually resetting mCurrentSeekTarget in MDSM::SeekCompleted and rely on the AutoSetOnScopeExit instead. r=cpearce
- # [04:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0b402720106c - Bobby Holley - Bug 1135785 - Hoist some work onto the state machine thread and tighten down our assertions. r=cpearce
- # [04:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a622dbe33efb - Anthony Jones - Bug 1135544 - Create an abstract base class for a track demuxer; r=kinetik
- # [04:42] * Joins: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com)
- # [04:43] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/002bca9bfb55 - Anthony Jones - Bug 1135558 - Disable WebM support for MSE; r=rillian
- # [04:44] * sheppy-offline is now known as sheppy
- # [04:46] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [04:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/b6bb6dcb6b54 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [04:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/287ffc21831e - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [04:50] * Joins: yzen (yzen@moz-ql1r6k.cpe.pppoe.ca)
- # [04:51] * Joins: masayuki (Thunderbird@moz-plalgk.au-net.ne.jp)
- # [04:51] * Quits: @roc (chatzilla@moz-h8ll9b.dqqd.b0fh.0cb0.2001.IP) (Connection closed)
- # [04:51] * Quits: micahg (micahg@moz-sq8kti.cable.rcn.com) (Quit: Ex-Chat)
- # [04:53] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [04:55] * Joins: nattokirai_ (nattokirai@moz-86b4bs.bitcat.net)
- # [04:56] * Quits: nattokirai (nattokirai@moz-86b4bs.bitcat.net) (Ping timeout: 121 seconds)
- # [04:56] * nattokirai_ is now known as nattokirai
- # [04:57] * Joins: sfink (chatzilla@moz-vi8qu5.sntcca.sbcglobal.net)
- # [04:58] * Joins: mconley (mconley@moz-os98q9.cable.teksavvy.com)
- # [04:59] * Joins: darktrojan (geoff@moz-rdppp8.dsl.telstraclear.net)
- # [04:59] * Joins: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP)
- # [05:01] * Quits: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP) (Connection closed)
- # [05:02] * Joins: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP)
- # [05:05] * Quits: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP) (Connection closed)
- # [05:05] * Joins: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP)
- # [05:06] * Joins: myk (myk@moz-1nu6fg.dynamic.fusionbroadband.com)
- # [05:07] * Quits: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP) (Connection closed)
- # [05:07] * Joins: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP)
- # [05:08] * Quits: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP) (Connection closed)
- # [05:09] * Joins: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP)
- # [05:11] * Joins: catalinb (catalin@moz-lg1.mgs.25.188.IP)
- # [05:11] * Quits: elin (elin@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [05:14] * yzen is now known as yzen_
- # [05:15] * Joins: tomatoeblue (textual@moz-bpk.tq1.11.66.IP)
- # [05:15] * Joins: elin (elin@moz-2hf62a.HINET-IP.hinet.net)
- # [05:15] * Quits: yzen_ (yzen@moz-ql1r6k.cpe.pppoe.ca) (Connection closed)
- # [05:15] * Quits: catalinb (catalin@moz-lg1.mgs.25.188.IP) (Ping timeout: 121 seconds)
- # [05:18] * Quits: tomatoeblue (textual@moz-bpk.tq1.11.66.IP) (Connection closed)
- # [05:18] * nthomas is now known as nthomas|away
- # [05:19] * Quits: cirocosta (Ciro@moz-t4q.9oh.148.177.IP) (A TLS packet with unexpected length was received.)
- # [05:19] * Quits: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP) (Connection closed)
- # [05:21] * Joins: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP)
- # [05:22] * Quits: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP) (Connection closed)
- # [05:22] * Joins: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP)
- # [05:23] * Joins: tedders1 (tedders1@moz-d7b.k9e.239.204.IP)
- # [05:23] * Quits: elin (elin@moz-2hf62a.HINET-IP.hinet.net) (Client exited)
- # [05:23] * Quits: Jerry_Mac (hshih@moz-aj9ejj.HINET-IP.hinet.net) (Quit: This computer has gone to sleep)
- # [05:25] * khuey|away is now known as khuey
- # [05:25] * Quits: mconley (mconley@moz-os98q9.cable.teksavvy.com) (Connection closed)
- # [05:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/80ede4ad19c8 - Ben Tian - Bug 1137579 - [bluetooth2] Replace constant with |sizeof| in |StringToUuid| function, r=shuang
- # [05:29] * Joins: kapy (kapy@moz-440.kg8.68.182.IP)
- # [05:29] * Quits: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com) (Client exited)
- # [05:35] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
- # [05:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/8bac5290affa - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [05:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/72a2cf64e99e - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [05:37] * Quits: bajaj (bajaj_afk@moz-4m6.c8d.205.49.IP) (Quit: Leaving.)
- # [05:38] * Joins: Manny (quassel@moz-bgt.6kh.139.14.IP)
- # [05:38] * Quits: ManikM (quassel@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [05:41] * Joins: bwc (Adium@moz-7qa.7fp.250.162.IP)
- # [05:41] * Quits: vicamo (vicamo@moz-8o1.p7n.41.175.IP) (Client exited)
- # [05:43] * sheppy is now known as sheppy-offline
- # [05:43] * Joins: sewardj (sewardj@moz-m23uhd.dip0.t-ipconnect.de)
- # [05:46] * Quits: sewardj__ (sewardj@moz-rqn2gg.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)
- # [05:50] * Quits: nathanr (nathanr@moz-9dijr5.mc.videotron.ca) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [05:51] * Joins: rbarnes (rbarnes@moz-oe918i.fios.verizon.net)
- # [05:51] * Quits: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP) (Connection closed)
- # [05:52] * Quits: masayuki (Thunderbird@moz-plalgk.au-net.ne.jp) (Ping timeout: 121 seconds)
- # [05:53] * Joins: bnicholson (bnicholson@moz-orcqi2.ca.comcast.net)
- # [05:55] * Joins: mconley (mconley@moz-os98q9.cable.teksavvy.com)
- # [05:56] * Joins: Boriss (Boriss@moz-dkeprl.PUBLIC.monkeybrains.net)
- # [05:58] * Quits: boris (boris@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [05:58] * Joins: Caspy7 (chatzilla@moz-qg6.7b1.185.99.IP)
- # [06:01] * Quits: mconley (mconley@moz-os98q9.cable.teksavvy.com) (Connection closed)
- # [06:02] * darkowlzz|afk is now known as darkowlzz
- # [06:02] * lth|sick is now known as lth
- # [06:03] * Quits: lth (lth@moz-boe.4db.7.185.IP) (Quit: leaving)
- # [06:04] * Joins: boris (boris@moz-2hf62a.HINET-IP.hinet.net)
- # [06:07] * Joins: lth (lth@moz-boe.4db.7.185.IP)
- # [06:07] * Quits: myk (myk@moz-1nu6fg.dynamic.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [06:09] * Joins: matt-r_ (mattr@moz-2ou06k.dh.suddenlink.net)
- # [06:12] * Joins: catalinb (catalin@moz-lg1.mgs.25.188.IP)
- # [06:12] * Quits: matt-r (mattr@moz-j6v9kq.dyn.suddenlink.net) (Ping timeout: 121 seconds)
- # [06:14] * Joins: bdahl (bdahl@moz-dm0j4d.dynamic.fusionbroadband.com)
- # [06:15] * khuey is now known as khuey|away
- # [06:16] * Quits: catalinb (catalin@moz-lg1.mgs.25.188.IP) (Ping timeout: 121 seconds)
- # [06:19] * Quits: m_gol (m_gol@moz-f1mofo.dynamic.chello.pl) (Quit: Linkinus - http://linkinus.com)
- # [06:21] * Joins: elin (elin@moz-aj9ejj.HINET-IP.hinet.net)
- # [06:23] * Joins: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com)
- # [06:25] * Quits: JamesCheng (james@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [06:26] * Joins: shine (uid50849@moz-4m1m5b.ealing.irccloud.com)
- # [06:27] * Quits: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com) (Client exited)
- # [06:28] * Joins: Jerry_Mac (hshih@moz-2hf62a.HINET-IP.hinet.net)
- # [06:36] * Quits: &dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [06:39] * Quits: mike5w3c (mike@moz-1kl3b3.uk0.bigv.io) (Quit: leaving)
- # [06:43] * Joins: mike5w3c (mike@moz-1kl3b3.uk0.bigv.io)
- # [06:54] * Quits: kentuckyfriedtakahe (ajones@moz-16t7r4.dqqd.b0fh.0cb0.2001.IP) (A TLS packet with unexpected length was received.)
- # [06:54] * Quits: karlt (karl@moz-0mfuf7.dqqd.b0fh.0cb0.2001.IP) (Ping timeout: 121 seconds)
- # [06:58] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/ace0ae302b06 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [06:58] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/c3cf47629bb4 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [06:59] * Joins: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com)
- # [07:00] * Quits: tedders1 (tedders1@moz-d7b.k9e.239.204.IP) (A TLS packet with unexpected length was received.)
- # [07:00] * Quits: bwc (Adium@moz-7qa.7fp.250.162.IP) (Quit: Leaving.)
- # [07:05] * Quits: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [07:09] * Joins: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com)
- # [07:12] * Joins: catalinb (catalin@moz-lg1.mgs.25.188.IP)
- # [07:16] * Quits: catalinb (catalin@moz-lg1.mgs.25.188.IP) (Ping timeout: 121 seconds)
- # [07:17] * Quits: bdahl (bdahl@moz-dm0j4d.dynamic.fusionbroadband.com) (A TLS packet with unexpected length was received.)
- # [07:17] * Joins: jamin (Thunderbird@moz-2hf62a.HINET-IP.hinet.net)
- # [07:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3dac1282a10f - Gregory Szorc - Bug 1132771 - Fix grammar nits in moz.build documentation
- # [07:20] * Joins: ddamjano (Instantbird@moz-fn8m40.cfl3.oeer.8388.2a02.IP)
- # [07:23] * Quits: garvank (Garvan@moz-p18v30.dsl.teksavvy.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [07:25] * Quits: TYLin_pc (TYLin_pc@moz-2hf62a.HINET-IP.hinet.net) (Connection closed)
- # [07:26] * Quits: rbarnes (rbarnes@moz-oe918i.fios.verizon.net) (A TLS packet with unexpected length was received.)
- # [07:27] * Joins: TYLin_pc (TYLin_pc@moz-2hf62a.HINET-IP.hinet.net)
- # [07:28] * Quits: twash (twash@moz-vq9jt2.hr.cox.net) (Connection closed)
- # [07:29] * Joins: vicamo (vicamo@moz-8o1.p7n.41.175.IP)
- # [07:29] * Joins: gsvelto (gsvelto@moz-4p2810.clienti.tiscali.it)
- # [07:29] * Joins: twash (twash@moz-vq9jt2.hr.cox.net)
- # [07:31] * mgerva|afk is now known as mgerva
- # [07:38] * Quits: vicamo (vicamo@moz-8o1.p7n.41.175.IP) (Ping timeout: 121 seconds)
- # [07:38] * Joins: ManikM (quassel@moz-bgt.6kh.139.14.IP)
- # [07:38] * Quits: Manny (quassel@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [07:38] * Quits: thinker (user@moz-9rt0g5.kbronet.com.tw) (Ping timeout: 121 seconds)
- # [07:38] * Joins: adalucinet (Instantbird@moz-662.esi.231.62.IP)
- # [07:40] * Joins: Alessar (Alessar@moz-mfn.qfs.104.79.IP)
- # [07:40] * Joins: avaida (andrei.vaid@moz-662.esi.231.62.IP)
- # [07:42] * Joins: jhorak (jhorak@moz-6a960j.net.upcbroadband.cz)
- # [07:43] * Quits: jcj (jcj@moz-4rqd80.phnx.qwest.net) (Quit: goodnight, night vale. goodnight.)
- # [07:44] * Callek_disconnected is now known as Callek
- # [07:45] * Tomcat|afk is now known as Tomcat
- # [07:48] * Joins: mconley (mconley@moz-os98q9.cable.teksavvy.com)
- # [07:49] * Joins: timdream (timdream@moz-aj9ejj.HINET-IP.hinet.net)
- # [07:49] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/ce29ce7e1f99 - Szu-Yu Chen [:aknow] - Bug 1135268 - Part 1: Fix incall MMI issue. r=hsinyi
- # [07:49] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/214e70c97fcc - Szu-Yu Chen [:aknow] - Bug 1135268 - Part 2: Test case. r=hsinyi
- # [07:51] * Quits: ddamjano (Instantbird@moz-fn8m40.cfl3.oeer.8388.2a02.IP) (Ping timeout: 121 seconds)
- # [07:51] * Joins: hait (uid25346@moz-primmu.charlton.irccloud.com)
- # [07:52] * Quits: twash (twash@moz-vq9jt2.hr.cox.net) (Ping timeout: 121 seconds)
- # [07:55] * Joins: kgrandon (Adium@moz-6m3528.ca.comcast.net)
- # [07:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/297f6188f37c - Gregory Szorc - NO BUG - Fix reStructuredText warnings
- # [08:02] * flod|away is now known as flod
- # [08:03] * Quits: mastizada (Thunderbird@moz-ihb.dc9.233.178.IP) (Ping timeout: 121 seconds)
- # [08:04] * mattwoodrow is now known as mattwoodrow|away
- # [08:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/1e6cec45df64 - Szu-Yu Chen [:aknow] - Bug 1137048 - Map settings ril.debugging.enabled to preference (follow-up). r=fabrice
- # [08:09] * Joins: myk (myk@moz-1nu6fg.dynamic.fusionbroadband.com)
- # [08:09] * whimboo|afk is now known as whimboo
- # [08:10] * Quits: njn (chatzilla@moz-mrqno0.iinet.net.au) (Quit: ChatZilla 0.9.91.1 [Firefox 39.0a1/20150301141105])
- # [08:11] * Joins: JamesCheng (james@moz-2hf62a.HINET-IP.hinet.net)
- # [08:11] <Yoric> What's the best way to detect that we're running on Windows XP?
- # [08:11] <Yoric> (in a mochitest)
- # [08:13] * Joins: catalinb (catalin@moz-lg1.mgs.25.188.IP)
- # [08:14] * Joins: jw_wang (jw_wang@moz-aj9ejj.HINET-IP.hinet.net)
- # [08:16] * darkowlzz is now known as darkowlzz|afk
- # [08:17] * bobowen|afk is now known as bobowen
- # [08:17] * Quits: catalinb (catalin@moz-lg1.mgs.25.188.IP) (Ping timeout: 121 seconds)
- # [08:19] <Unfocused> Yoric: privileged context? Cc["@mozilla.org/system-info;1"].getService(Ci.nsIPropertyBag2).getProperty("version") == "5.1"
- # [08:21] * heycam is now known as heycam|away
- # [08:22] * Joins: smontagu (chatzilla@moz-3sn1d2.red.bezeqint.net)
- # [08:23] <bobowen> Yoric: a few tests use: const isWinXP = navigator.userAgent.indexOf("Windows NT 5.1") != -1;
- # [08:23] * Joins: vicamo (vicamo@moz-8o1.p7n.41.175.IP)
- # [08:23] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/8acfbec740ac - Szu-Yu Chen [:aknow] - Bug 1138263 - Make TelephonyService.js JSHint friendly. r=hsinyi
- # [08:25] * Quits: Boriss (Boriss@moz-dkeprl.PUBLIC.monkeybrains.net) (Client exited)
- # [08:25] * Quits: naveed (nihsanullah@moz-cohb2i.fios.verizon.net) (Ping timeout: 121 seconds)
- # [08:26] * Joins: rbarnes (rbarnes@moz-oe918i.fios.verizon.net)
- # [08:26] * Quits: naveed__ (naveed@moz-cohb2i.fios.verizon.net) (Ping timeout: 121 seconds)
- # [08:26] * Joins: catalinb (catalin@moz-lg1.mgs.25.188.IP)
- # [08:30] * Quits: rbarnes (rbarnes@moz-oe918i.fios.verizon.net) (Ping timeout: 121 seconds)
- # [08:33] * Joins: Dexter (Dexter@moz-tkj7su.retail.telecomitalia.it)
- # [08:35] * Joins: naveed (nihsanullah@moz-cohb2i.fios.verizon.net)
- # [08:35] * Quits: botond (botond@moz-vd4d3l.ckpj.s0pt.0450.2001.IP) (A TLS packet with unexpected length was received.)
- # [08:36] * Joins: botond (botond@moz-qi3vv4.ckpj.s0pt.0450.2001.IP)
- # [08:36] * darkowlzz|afk is now known as darkowlzz
- # [08:37] <Yoric> Unfocused: bobowen: Thanks.
- # [08:38] * Joins: roc (chatzilla@moz-54n006.orcon.net.nz)
- # [08:38] * killer sets mode: +o roc
- # [08:38] * Joins: naveed__ (naveed@moz-cohb2i.fios.verizon.net)
- # [08:39] * Quits: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net) (Connection closed)
- # [08:40] * Joins: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net)
- # [08:40] * BenWa is now known as BenWa|email
- # [08:41] * Quits: naveed (nihsanullah@moz-cohb2i.fios.verizon.net) (Ping timeout: 121 seconds)
- # [08:41] * Joins: naveed (nihsanullah@moz-cohb2i.fios.verizon.net)
- # [08:43] * Quits: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net) (Connection closed)
- # [08:44] * Joins: ddamjano (Instantbird@moz-fn8m40.cfl3.oeer.8388.2a02.IP)
- # [08:44] * Joins: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net)
- # [08:45] * lth is now known as lth|zzz
- # [08:45] * Joins: ttaubert (uid2620@moz-6d2u0s.uxbridge.irccloud.com)
- # [08:46] * Joins: hub (hub@moz-b7evta.abo.wanadoo.fr)
- # [08:46] * Quits: JamesCheng (james@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [08:49] * Tomcat is now known as Tomcat|afk
- # [08:49] * Quits: kgrandon (Adium@moz-6m3528.ca.comcast.net) (Quit: Leaving.)
- # [08:51] * Joins: masayuki (Thunderbird@moz-ekdnab.tachikawa.mopera.net)
- # [08:51] * julienw_afk is now known as julienw
- # [08:51] * Joins: vingtetun (vnicolas@moz-neq.cqg.194.78.IP)
- # [08:51] * whimboo is now known as whimboo|afk
- # [08:52] * darkowlzz is now known as darkowlzz|afk
- # [08:52] * Quits: avaida (andrei.vaid@moz-662.esi.231.62.IP) (Quit: Leaving.)
- # [08:53] <jaws> how come the mochitest logs for the failures have the INFO TEST-PASS but the successes don't? https://treeherder.mozilla.org/#/jobs?repo=try&revision=a3717b3bfa50&filter-searchStr=Windows 7 32-bit try debug test mochitest-browser-chrome-1
- # [08:53] <jaws> Unfocused, Yoric: have you seen this before?
- # [08:53] <jaws> https://treeherder.mozilla.org/#/jobs?repo=try&revision=a3717b3bfa50 for an unbroken link
- # [08:53] * Joins: avaida (andrei.vaid@moz-662.esi.231.62.IP)
- # [08:54] * Quits: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com) (Client exited)
- # [08:55] * Quits: nattokirai (nattokirai@moz-86b4bs.bitcat.net) (Ping timeout: 121 seconds)
- # [08:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/07bf3ce1c889 - Julian Seward - Bug 1132953 - Zero AsmJSModule::CodeRange and AsmJSModule::ExportedFunction::pod on construction, to avoid Valgrind warnings. r=luke.
- # [08:56] * Joins: Boriss (Boriss@moz-dkeprl.PUBLIC.monkeybrains.net)
- # [08:57] * Joins: masayuki1 (Thunderbird@moz-tbicbo.au-net.ne.jp)
- # [08:57] <Unfocused> jaws: green log i just looked at there had TEST_PASS lines for each test
- # [08:58] <Unfocused> what log are you seeing it in?
- # [08:58] <jaws> Unfocused: any hits for 'gSubDialog' ?
- # [08:58] * Joins: Archaeopteryx (Archaeopter@moz-1hr1h8.cust.telecolumbus.net)
- # [08:58] <Unfocused> nope
- # [08:58] <jaws> i couldn't see any TEST-PASS within the test for browser_change_app_handlers.js
- # [08:58] * Joins: nattokirai (nattokirai@moz-86b4bs.bitcat.net)
- # [08:59] <jaws> browser_change_app_handler.js*
- # [08:59] * Joins: jviereck (Adium@moz-ml99gd.ethz.ch)
- # [08:59] * Quits: masayuki (Thunderbird@moz-ekdnab.tachikawa.mopera.net) (Ping timeout: 121 seconds)
- # [08:59] * masayuki1 is now known as masayuki
- # [08:59] <Unfocused> i can't even find that test referenced in the first win7 debug bc1
- # [08:59] * Quits: catalinb (catalin@moz-lg1.mgs.25.188.IP) (Ping timeout: 121 seconds)
- # [09:00] * Quits: Boriss (Boriss@moz-dkeprl.PUBLIC.monkeybrains.net) (Ping timeout: 121 seconds)
- # [09:00] <jaws> could it be that when the test fails it is re-run but not in parallel and so the output is logged the second time around?
- # [09:00] <Unfocused> oh, heh, typo
- # [09:00] <jaws> i'm looking at http://ftp.mozilla.org/pub/mozilla.org/firefox/try-builds/jwein@mozilla.com-a3717b3bfa50/try-win32-debug/try_win7-ix-debug_test-mochitest-browser-chrome-1-bm119-tests1-windows-build171.txt.gz
- # [09:01] <jaws> whoops, that linke ^ is for the failure
- # [09:01] <jaws> http://mozilla-releng-blobs.s3.amazonaws.com/blobs/try/sha512/055226eb74e697e41c2f6224c6e46bf4d1168063320c008c1e928f2383d312ef59d207d0615ee2613976c11e19f4705cd2b1ea0aa23dccef35384e244d99209d doesn't have any of my logging in it
- # [09:01] <Unfocused> bc tests aren't run in parallel
- # [09:01] <Unfocused> 21:59:27 INFO - 1412 INFO TEST-OK | browser/components/preferences/in-content/tests/browser_change_app_handler.js | took 2168ms
- # [09:01] * Joins: stormi (samuel@moz-t5b.q89.218.46.IP)
- # [09:01] * pbrosset|afk is now known as pbrosset
- # [09:01] <Unfocused> ^ that what you're looking for?
- # [09:01] * Joins: twash (twash@moz-vq9jt2.hr.cox.net)
- # [09:03] <jaws> i'm looking for the individual test-pass'es within the test, as well as the Cu.reportError dumps that i put in to debug this
- # [09:03] <Unfocused> oh! (sorry, feeling slow tonight)
- # [09:03] <nigelb> ugh, the tree looks so awful.
- # [09:03] <jaws> the first log i linked to above has all of them, but it is the failure (which is good!)
- # [09:04] <jaws> the second log doesn't have them and it is the success. it would be nice to compare them to see what is different between the intermittent failure and the success
- # [09:04] <Unfocused> iirc, this used to be expected for passing tests... but i thought it was changed to always log when running it on the build slaves
- # [09:05] <Yoric> jaws: I think that this is what happens (rerunning not in parallel).
- # [09:06] <Yoric> On an unrelated note: does anybody know the sampling rate of the Gecko profiler?
- # [09:06] <Yoric> BenWa|email: ^
- # [09:06] * Joins: tzimmermann (tzimmermann@moz-7qv78b.pools.vodafone-ip.de)
- # [09:10] * Joins: Boriss (Boriss@moz-dkeprl.PUBLIC.monkeybrains.net)
- # [09:11] <Unfocused> jaws: oh, https://groups.google.com/forum/#!topic/mozilla.dev.platform/3QrMGjkH_o0
- # [09:11] * Quits: nattokirai (nattokirai@moz-86b4bs.bitcat.net) (Ping timeout: 121 seconds)
- # [09:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/ee66565374af - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [09:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/7773e5a2b070 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [09:12] <jaws> Unfocused: wow, what timing!
- # [09:12] <jaws> oh nevermind, that was a year ago :P
- # [09:12] <Unfocused> hah
- # [09:12] <Unfocused> i initially thought it was this year too.... dates are hard :(
- # [09:14] * Quits: hub (hub@moz-b7evta.abo.wanadoo.fr) (Ping timeout: 121 seconds)
- # [09:14] * Quits: twash (twash@moz-vq9jt2.hr.cox.net) (Ping timeout: 121 seconds)
- # [09:16] * Joins: gabor (gabor@moz-tfiocm.net-tv.hu)
- # [09:20] * Joins: tauzen (tauzen@moz-ekid4b.dynamic.chello.pl)
- # [09:21] <darktrojan> woot
- # [09:21] * mattwoodrow|away is now known as mattwoodrow
- # [09:21] * darktrojan just logged a message to console with filename and line number
- # [09:22] * Joins: stransky (stransky@moz-16g.ma8.175.213.IP)
- # [09:22] <darktrojan> logStringMessage can bite me
- # [09:23] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
- # [09:23] * Quits: avaida (andrei.vaid@moz-662.esi.231.62.IP) (Quit: Leaving.)
- # [09:25] * Joins: avaida (andrei.vaid@moz-662.esi.231.62.IP)
- # [09:27] * Joins: rbarnes (rbarnes@moz-oe918i.fios.verizon.net)
- # [09:29] * Quits: mconley (mconley@moz-os98q9.cable.teksavvy.com) (Connection closed)
- # [09:29] * Quits: @dveditz (dveditz@moz-t5rdci.ca.comcast.net) (Client exited)
- # [09:30] * Joins: h4writer (h4writer@moz-lcj9pu.access.telenet.be)
- # [09:32] * Quits: rbarnes (rbarnes@moz-oe918i.fios.verizon.net) (Ping timeout: 121 seconds)
- # [09:33] * Quits: ddamjano (Instantbird@moz-fn8m40.cfl3.oeer.8388.2a02.IP) (Ping timeout: 121 seconds)
- # [09:35] * Quits: tauzen (tauzen@moz-ekid4b.dynamic.chello.pl) (Connection closed)
- # [09:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/6a6f6153c4e4 - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
- # [09:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/2119ba349b7c - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [09:38] * Joins: Manny (quassel@moz-bgt.6kh.139.14.IP)
- # [09:38] * Quits: ManikM (quassel@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [09:38] * Joins: VarCat (VarCat@moz-ohb.65e.79.82.IP)
- # [09:40] * Joins: jaoo (user@moz-pqtvtd.dynamicIP.rima-tde.net)
- # [09:41] * darkowlzz|afk is now known as darkowlzz
- # [09:41] * Quits: vingtetun (vnicolas@moz-neq.cqg.194.78.IP) (Ping timeout: 121 seconds)
- # [09:42] * Quits: myk (myk@moz-1nu6fg.dynamic.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [09:43] * Joins: freddyb (freddyb@moz-dkjr1g.scl3.mozilla.com)
- # [09:43] <freddyb> ohai
- # [09:43] <freddyb> I'm looking for someone with a fair bit of knowledge with nsDocshell.cpp, thunderbird and security bug access to review a patch :D
- # [09:45] * Joins: ddamjano (Instantbird@moz-fn8m40.cfl3.oeer.8388.2a02.IP)
- # [09:46] * Joins: Ms2ger (Ms2ger@moz-pleb2j.isp.belgacom.be)
- # [09:47] * Quits: timdream (timdream@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [09:48] * Joins: timdream (timdream@moz-aj9ejj.HINET-IP.hinet.net)
- # [09:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?changeset=97ce84348766 - 12 changesets
- # [09:49] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c4ec1a14df2d - Benjamin Bouvier - Bug 1135038: Inline SIMD.check as guard unbox; r=nbp
- # [09:50] * Joins: JamesCheng (james@moz-aj9ejj.HINET-IP.hinet.net)
- # [09:51] * Joins: ferjm (textual@moz-6tov0c.user.ono.com)
- # [09:51] * Quits: gerv (Instantbird@moz-ppf2jl.81.in-addr.arpa) (Ping timeout: 121 seconds)
- # [09:53] * Joins: gerv (Instantbird@moz-ppf2jl.81.in-addr.arpa)
- # [09:53] * Quits: timdream (timdream@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [09:54] <ewong> freddyb: I think the easier thing to do is find who is the right reviewer, and tag him/her for the review
- # [09:54] <ewong> freddyb: specifically, whoever reviews nsDocshell.cpp..
- # [09:54] * Quits: avaida (andrei.vaid@moz-662.esi.231.62.IP) (Quit: Leaving.)
- # [09:54] * Joins: edmorley (uid27002@moz-524haa.brockwell.irccloud.com)
- # [09:54] * Joins: pnkfelix (pnkfelix@moz-eljppb.fbx.proxad.net)
- # [09:55] * Quits: pnkfelix (pnkfelix@moz-eljppb.fbx.proxad.net) (Quit: rcirc on GNU Emacs 24.3.92.1)
- # [09:55] <freddyb> ewong: not sure hat you mean :-)
- # [09:55] * Joins: mak (uid24946@moz-lrho6g.ealing.irccloud.com)
- # [09:55] * mattwoodrow is now known as mattwoodrow|away
- # [09:55] * Joins: avaida (andrei.vaid@moz-662.esi.231.62.IP)
- # [09:57] <ewong> freddyb: for instance.. nsDocShell.cpp is under the Dom module. look for a dom docshell peer from the Modules Core list: https://wiki.mozilla.org/Modules/All#Core
- # [09:57] <ewong> freddyb: from what I see, specifically https://wiki.mozilla.org/Modules/All#docshell
- # [09:57] <Archaeopteryx> freddyb: didn't mconley blog about nsDocshell? he is a former Thunderbird developer
- # [09:57] * Joins: masayuki1 (Thunderbird@moz-trjats.au-net.ne.jp)
- # [09:58] * Joins: tomatoeblue (textual@moz-bpk.tq1.11.66.IP)
- # [09:58] <Archaeopteryx> indeed, he did: http://mikeconley.ca/blog/2014/07/07/docshell-in-a-nutshell-part-1-original-intents/
- # [09:58] <freddyb> I was hesitant to add people, without knowing whether they are already CCd in the bug
- # [09:58] <freddyb> since it's a secure but
- # [09:58] <freddyb> hence, I was looking for someone with secure bug access *thinks*
- # [09:59] <ewong> freddyb: if it's nsDocShell.cpp it's safe to say it's any of the people listed in https://wiki.mozilla.org/Modules/All#docshell
- # [09:59] * Quits: masayuki (Thunderbird@moz-tbicbo.au-net.ne.jp) (Ping timeout: 121 seconds)
- # [09:59] * masayuki1 is now known as masayuki
- # [09:59] <ewong> freddyb: once you get a r? set to the user, he/she is automatically included in the CC
- # [09:59] <ewong> s/user/reviewer/
- # [10:00] <freddyb> maybe you're right
- # [10:00] <freddyb> mike conley looks like a good fit
- # [10:00] * Quits: jdm (jdm@moz-ilbt2e.cable.teksavvy.com) (Quit: )
- # [10:00] <ewong> even if it is a TB secure bug, if it touches nsDocShell.cpp you need a docshell peer review
- # [10:01] <Unfocused> hm, i thought you had to explicitly CC someone on security bugs first, before you could flag them for review
- # [10:01] <freddyb> right. that leaves only smaug :-)
- # [10:01] <ewong> Unfocused: really?
- # [10:01] <Unfocused> pretty sure i hit that recently
- # [10:01] <freddyb> yeah
- # [10:02] <freddyb> maybe _unless_ they already have secure bug access
- # [10:02] <ewong> glob so I need to cc a reviewer before tagging the reviewer r?
- # [10:02] <Unfocused> oh, yea, a likely exception
- # [10:02] * Fallen|away is now known as Fallen
- # [10:02] <ewong> I stand corrected then
- # [10:02] <freddyb> :)
- # [10:03] <freddyb> thanks, for all the comments!
- # [10:03] <freddyb> I'll try hunting a few more people for possible review to speed this up
- # [10:03] * Joins: hallvors (uid23371@moz-jrnk4a.ealing.irccloud.com)
- # [10:05] <darktrojan> firebot, uuid
- # [10:05] <firebot> 248b2c94-2736-4d29-bfdf-bc64a2e60d35 (/msg firebot cid for CID form)
- # [10:06] * Joins: flaviu (Instantbird@moz-662.esi.231.62.IP)
- # [10:08] <Ms2ger> ewong, I believe there's a pref
- # [10:09] * mattwoodrow|away is now known as mattwoodrow
- # [10:10] * Joins: Rik (rik@moz-6v5.3nd.202.89.IP)
- # [10:11] * Quits: atsai (atsai@moz-aj9ejj.HINET-IP.hinet.net) (Quit: Leaving)
- # [10:13] * Quits: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu) (A TLS packet with unexpected length was received.)
- # [10:14] * Joins: pnkfelix (pnkfelix@moz-eljppb.fbx.proxad.net)
- # [10:16] * Quits: pnkfelix (pnkfelix@moz-eljppb.fbx.proxad.net) (Quit: rcirc on GNU Emacs 24.3.92.1)
- # [10:16] * Quits: mwargers (mwargers@moz-tst4f6.adsl.online.nl) (Connection closed)
- # [10:16] <ewong> Ms2ger: on the reviewer's account?
- # [10:17] * Joins: pnkfelix (pnkfelix@moz-eljppb.fbx.proxad.net)
- # [10:17] <Ms2ger> Yes
- # [10:18] * Quits: jviereck (Adium@moz-ml99gd.ethz.ch) (Quit: Leaving.)
- # [10:18] * Joins: jviereck (Adium@moz-5b4qom.97ug.g469.067c.2001.IP)
- # [10:20] <nigelb> gps: ping
- # [10:20] <bbouvier> is there a sheriff around?
- # [10:20] <bbouvier> i need to understand oranges happening on my push (which seem unrelated to my push, though)
- # [10:20] <nigelb> bbouvier: hi
- # [10:20] <nigelb> the ggc bustages?
- # [10:20] <bbouvier> nigelb, good morning
- # [10:20] <ewong> Ms2ger: ah right "Automatically add me to the CC list of bugs I am requested to review"
- # [10:21] <bbouvier> nigelb, yes: TEST-UNEXPECTED-FAIL | /builds/slave/m-in_lx_sm-we-0000000000000000/src/config/tests/test_mozbuild_reading.py | line 44, test_filesystem_traversal_reading: config.status not available. Run configure.
- # [10:21] <bbouvier> nigelb, i haven't touched the mozbuild files at all
- # [10:21] <nigelb> bbouvier: that one looks like it might be gps' fault
- # [10:21] <nigelb> he touched the build files in a nobuild commit.
- # [10:21] <bbouvier> nigelb, oh right, sorry i didn't look at the previous pushes. Thanks for the heads up
- # [10:21] <nigelb> bbouvier: or at least before you :)
- # [10:22] <nigelb> gps: unping, nevermind :)
- # [10:22] <nigelb> sewardj: ping, bustage
- # [10:22] * Joins: hub (hub@moz-njdhaa.lmuk.1rfi.0450.2001.IP)
- # [10:22] * julienw is now known as julienw_afk
- # [10:24] <bbouvier> it seems weird that it's caused by sewardj, his patch doesn't touch anything related to the build system
- # [10:24] * Joins: ZER0 (ZER0@moz-t1mtug.upc-f.chello.nl)
- # [10:24] * Quits: ZER0 (ZER0@moz-t1mtug.upc-f.chello.nl) (Connection closed)
- # [10:24] * Quits: avaida (andrei.vaid@moz-662.esi.231.62.IP) (Quit: Leaving.)
- # [10:25] * Joins: jonco (Adium@moz-60aiup.nemh.1887.0450.2001.IP)
- # [10:26] * Joins: avaida (andrei.vaid@moz-662.esi.231.62.IP)
- # [10:26] <nigelb> bbouvier: brilliant, there's a whole range of commits with no spidermonkey tests.
- # [10:26] <nigelb> I'll have to retrigger the log
- # [10:26] <nigelb> *lot
- # [10:26] * Quits: nonsensickle (nonsensickl@moz-6ug2bk.xtra.co.nz) (Quit: This computer has gone to sleep)
- # [10:26] * Joins: mahdi (mahdi@moz-pam.dis.244.151.IP)
- # [10:26] <bbouvier> wow, that's strange :/
- # [10:27] <sewardj> nigelb: wierd, I did a test build before pushing, + it was OK on try
- # [10:27] <sewardj> nigelb: got any more details?
- # [10:27] <nigelb> sewardj: I think I'm failling back to my original guess that gps broke it.
- # [10:27] <nigelb> sewardj: I don't think it's you since you didn't touch mozbuild. Spidermonkey tests are failing.
- # [10:27] <sewardj> nigelb: k, thx
- # [10:28] * Joins: rbarnes (rbarnes@moz-oe918i.fios.verizon.net)
- # [10:28] * Quits: Boriss (Boriss@moz-dkeprl.PUBLIC.monkeybrains.net) (Client exited)
- # [10:29] <bbouvier> but gps only modified the documentation... maybe we need to bump a version number in the mozbuild files, or something like this?
- # [10:29] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/70fd64685a29 - Thomas Zimmermann - Bug 1136729: Make destructor of |SocketBase| protected, r=qdot
- # [10:31] <nigelb> bbouvier: scroll down
- # [10:31] <nigelb> :)
- # [10:31] <nigelb> b7ec05265c33 is what I'm pointing fingers at.
- # [10:31] * mattwoodrow is now known as mattwoodrow|away
- # [10:32] * Quits: rbarnes (rbarnes@moz-oe918i.fios.verizon.net) (Ping timeout: 121 seconds)
- # [10:33] * Joins: givanica (Thunderbird@moz-lvu.0k4.85.141.IP)
- # [10:33] * Quits: squib (squib@moz-napvi8.wi.charter.com) (Quit: Leaving)
- # [10:33] * Joins: timdream (timdream@moz-aj9ejj.HINET-IP.hinet.net)
- # [10:34] * Quits: tonymec (tonymec@moz-mk2.1sn.129.109.IP) (Ping timeout: 121 seconds)
- # [10:34] * Quits: hait (uid25346@moz-primmu.charlton.irccloud.com) (Quit: Connection closed for inactivity)
- # [10:35] * Quits: masayuki (Thunderbird@moz-trjats.au-net.ne.jp) (Ping timeout: 121 seconds)
- # [10:36] * Quits: vicamo (vicamo@moz-8o1.p7n.41.175.IP) (Ping timeout: 121 seconds)
- # [10:36] * Joins: tonymec (tonymec@moz-mk2.1sn.129.109.IP)
- # [10:37] * Quits: espadrine_ (tyl@moz-l019mn.fbx.proxad.net) (Ping timeout: 121 seconds)
- # [10:39] * lth|zzz is now known as lth
- # [10:39] * Quits: JamesCheng (james@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [10:39] * nigelb is now known as nigelb|sheriffduty
- # [10:39] <nigelb|sheriffduty> might as well.
- # [10:42] * Quits: pnkfelix (pnkfelix@moz-eljppb.fbx.proxad.net) (Quit: rcirc on GNU Emacs 24.3.92.1)
- # [10:43] * Joins: pnkfelix (pnkfelix@moz-eljppb.fbx.proxad.net)
- # [10:45] * Quits: pnkfelix (pnkfelix@moz-eljppb.fbx.proxad.net) (Quit: rcirc on GNU Emacs 24.3.92.1)
- # [10:46] * Joins: pnkfelix (pnkfelix@moz-eljppb.fbx.proxad.net)
- # [10:46] * Quits: jviereck (Adium@moz-5b4qom.97ug.g469.067c.2001.IP) (Quit: Leaving.)
- # [10:46] * Quits: pnkfelix (pnkfelix@moz-eljppb.fbx.proxad.net) (Quit: rcirc on GNU Emacs 24.3.92.1)
- # [10:47] * Quits: timdream (timdream@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [10:47] * Joins: pnkfelix (pnkfelix@moz-eljppb.fbx.proxad.net)
- # [10:49] <bbouvier> ha, that's right!
- # [10:50] * Joins: timdream (timdream@moz-aj9ejj.HINET-IP.hinet.net)
- # [10:51] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
- # [10:52] * Quits: gerv (Instantbird@moz-ppf2jl.81.in-addr.arpa) (Ping timeout: 121 seconds)
- # [10:53] * AutomatedTester|AFK is now known as AutomatedTester
- # [10:55] * Joins: Standard8 (Standard8@moz-1hu.vrc.166.195.IP)
- # [10:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/aabcb501ac7b - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [10:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/adc36249082f - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [10:57] * Quits: avaida (andrei.vaid@moz-662.esi.231.62.IP) (Quit: Leaving.)
- # [10:58] * Joins: Cwiiis (uid15019@moz-kk0b07.ealing.irccloud.com)
- # [10:58] * killer sets mode: +o Cwiiis
- # [10:58] * Joins: avaida (andrei.vaid@moz-662.esi.231.62.IP)
- # [10:59] * Quits: happy-dude_ (uid62780@moz-jt3517.charlton.irccloud.com) (Quit: Connection closed for inactivity)
- # [11:00] * Joins: imphil (philipp@moz-7o1s5p.s8jk.nk4a.4ca0.2001.IP)
- # [11:01] * Quits: nrc (nrc@moz-4bhi2i.xtra.co.nz) (Ping timeout: 121 seconds)
- # [11:01] * Joins: jgilbert (jgilbert@moz-cdqr5q.ca.comcast.net)
- # [11:01] * Quits: Caspy7 (chatzilla@moz-qg6.7b1.185.99.IP) (Ping timeout: 121 seconds)
- # [11:05] * AutomatedTester is now known as AutomatedTester|away
- # [11:06] <nigelb|sheriffduty> bbouvier: I'm more less sure that's right.
- # [11:06] * Quits: jgilbert (jgilbert@moz-cdqr5q.ca.comcast.net) (Ping timeout: 121 seconds)
- # [11:06] <nigelb|sheriffduty> I'm waiting for a green result from the push right below before I back it out.
- # [11:06] * Joins: jviereck (Adium@moz-5b4qom.97ug.g469.067c.2001.IP)
- # [11:09] * Joins: squeakytoy (squeakytoy@moz-i4mle1.netset.se)
- # [11:09] <bbouvier> nigelb|sheriffduty, yeah bug 1132771 looks like a good target. Maybe glandium would know?
- # [11:12] <nigelb|sheriffduty> I should know in about 20 minutes when the test results in a green.
- # [11:13] * Joins: mwargers (mwargers@moz-tst4f6.adsl.online.nl)
- # [11:14] * Joins: chrisccoulson (chr1s@moz-2r61ne.uno.uk.net)
- # [11:14] * Joins: gerv (Instantbird@moz-u2ksm4.cable.virginm.net)
- # [11:14] * Quits: imphil (philipp@moz-7o1s5p.s8jk.nk4a.4ca0.2001.IP) (Ping timeout: 121 seconds)
- # [11:15] * ewong is now known as ewong|away
- # [11:15] * AutomatedTester|away is now known as AutomatedTester
- # [11:15] * Quits: timdream (timdream@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [11:15] * Quits: jw_wang (jw_wang@moz-aj9ejj.HINET-IP.hinet.net) (Quit: 暫離)
- # [11:16] * Joins: timdream (timdream@moz-aj9ejj.HINET-IP.hinet.net)
- # [11:17] * Quits: mwargers (mwargers@moz-tst4f6.adsl.online.nl) (Ping timeout: 121 seconds)
- # [11:18] * Quits: Morris (Morris@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [11:19] * Joins: ahunt (ahunt@moz-hq8kb0.cam.ac.uk)
- # [11:19] * Quits: TYLin (TYLin@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [11:21] * Quits: m_kato (m_kato@moz-86b4bs.bitcat.net) (Quit: Leaving...)
- # [11:21] * Quits: seanlin (Thunderbird@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [11:21] * Joins: vicamo (vicamo@moz-8o1.p7n.41.175.IP)
- # [11:24] * Quits: timdream (timdream@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [11:25] * Quits: jviereck (Adium@moz-5b4qom.97ug.g469.067c.2001.IP) (Quit: Leaving.)
- # [11:26] * Joins: mwargers (mwargers@moz-tst4f6.adsl.online.nl)
- # [11:28] * Joins: imphil (philipp@moz-jsu5pe.nh6l.v7hj.4ca0.2001.IP)
- # [11:29] * Quits: avaida (andrei.vaid@moz-662.esi.231.62.IP) (Quit: Leaving.)
- # [11:30] * Joins: Caspy7 (chatzilla@moz-qg6.7b1.185.99.IP)
- # [11:30] * Joins: avaida (andrei.vaid@moz-662.esi.231.62.IP)
- # [11:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/a3b00c67100b - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [11:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/ed7b068bb56c - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [11:32] * Quits: btulchinsky (btulchinsky@moz-f08.5nv.231.64.IP) (Connection closed)
- # [11:32] * Joins: timdream (timdream@moz-2hf62a.HINET-IP.hinet.net)
- # [11:33] * Quits: jonco (Adium@moz-60aiup.nemh.1887.0450.2001.IP) (Ping timeout: 121 seconds)
- # [11:33] * Joins: btulchinsky (btulchinsky@moz-f08.5nv.231.64.IP)
- # [11:33] * Quits: btulchinsky (btulchinsky@moz-f08.5nv.231.64.IP) (Connection closed)
- # [11:33] * Quits: Rik (rik@moz-6v5.3nd.202.89.IP) (Connection closed)
- # [11:33] * Joins: Rik_ (rik@moz-6v5.3nd.202.89.IP)
- # [11:34] * Joins: espadrine_ (tyl@moz-qfr4fg.abo.wanadoo.fr)
- # [11:34] * Joins: jviereck (Adium@moz-5b4qom.97ug.g469.067c.2001.IP)
- # [11:35] * Quits: brsun (chatzilla@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [11:35] * Quits: gsvelto (gsvelto@moz-4p2810.clienti.tiscali.it) (Ping timeout: 121 seconds)
- # [11:36] * Quits: boris (boris@moz-2hf62a.HINET-IP.hinet.net) (Client exited)
- # [11:37] * Quits: elin (elin@moz-aj9ejj.HINET-IP.hinet.net) (Client exited)
- # [11:38] * Joins: ManikM (quassel@moz-bgt.6kh.139.14.IP)
- # [11:38] * Quits: Manny (quassel@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [11:42] * Quits: evanxd1 (Adium@moz-2hf62a.HINET-IP.hinet.net) (Quit: Leaving.)
- # [11:42] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/1aa34c6cc6d4 - Yoshi Huang - Bug 1137101 - Refactor Response/Notification sent from nfcd. r=dimi
- # [11:42] * Quits: ddamjano (Instantbird@moz-fn8m40.cfl3.oeer.8388.2a02.IP) (Ping timeout: 121 seconds)
- # [11:43] * Quits: jviereck (Adium@moz-5b4qom.97ug.g469.067c.2001.IP) (Quit: Leaving.)
- # [11:47] * Quits: givanica (Thunderbird@moz-lvu.0k4.85.141.IP) (Client exited)
- # [11:56] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Connection closed)
- # [11:59] * Quits: avaida (andrei.vaid@moz-662.esi.231.62.IP) (Quit: Leaving.)
- # [12:00] * Joins: avaida (andrei.vaid@moz-662.esi.231.62.IP)
- # [12:02] * Joins: vingtetun (vnicolas@moz-71m.3nd.202.89.IP)
- # [12:05] * Joins: KaiRo (robert@moz-run84b.highway.telekom.at)
- # [12:06] * Joins: nical (nical@moz-4od2qj.2500.1rfi.0450.2001.IP)
- # [12:08] * Quits: vingtetun (vnicolas@moz-71m.3nd.202.89.IP) (Ping timeout: 121 seconds)
- # [12:10] * Quits: jhorak (jhorak@moz-6a960j.net.upcbroadband.cz) (Ping timeout: 121 seconds)
- # [12:11] * Quits: esawin (esawin@moz-gob.6k5.214.85.IP) (Quit: leaving)
- # [12:11] * Joins: esawin (esawin@moz-gob.6k5.214.85.IP)
- # [12:11] * Quits: vicamo (vicamo@moz-8o1.p7n.41.175.IP) (Client exited)
- # [12:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/5caac8cff808 - Tim Taubert - Bug 1100223 - switchToTabHavingURI() should load a new URI before selecting the tab to ensure sessionstore won't override the target URI when the tab was pending r=Gijs
- # [12:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/a04ffab62bd3 - Tim Taubert - Bug 1100223 - Add test to ensure loadURI() on pending tabs works as expected r=Gijs
- # [12:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/ecd376f25829 - Tim Taubert - Bug 1100223 - Make calling loadURI() on pending tabs work as expected by marking the tab as no longer pending and simply waiting for the restoration to finish r=billm
- # [12:17] <bbouvier> nigelb|sheriffduty, fyi, the arm test in the push below gps' just finished and it's green
- # [12:17] * Joins: rbarnes (rbarnes@moz-oe918i.fios.verizon.net)
- # [12:17] * Joins: cirocosta (Ciro@moz-t4q.9oh.148.177.IP)
- # [12:17] <nigelb|sheriffduty> bbouvier: yep, I'm trying to back out already
- # [12:17] <nigelb|sheriffduty> just fixing up a merge conflict.
- # [12:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/660a185c3ded - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [12:21] * Quits: timdream (timdream@moz-2hf62a.HINET-IP.hinet.net) (Client exited)
- # [12:21] * Quits: rbarnes (rbarnes@moz-oe918i.fios.verizon.net) (Ping timeout: 121 seconds)
- # [12:22] * Joins: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP)
- # [12:23] * Joins: RealRaven (Thunderbird@moz-75j.ch4.125.109.IP)
- # [12:27] * Joins: givanica (Thunderbird@moz-lvu.0k4.85.141.IP)
- # [12:27] * Quits: givanica (Thunderbird@moz-lvu.0k4.85.141.IP) (Client exited)
- # [12:28] * whimboo|afk is now known as whimboo
- # [12:28] * Joins: jviereck (Adium@moz-773cod.ethz.ch)
- # [12:30] * Quits: avaida (andrei.vaid@moz-662.esi.231.62.IP) (Quit: Leaving.)
- # [12:30] <nigelb|sheriffduty> bah, who can give me some hg help?
- # [12:32] * Quits: allstarschh (allstars@moz-2hf62a.HINET-IP.hinet.net) (A TLS packet with unexpected length was received.)
- # [12:33] * Quits: jviereck (Adium@moz-773cod.ethz.ch) (Quit: Leaving.)
- # [12:33] * Joins: clokep (Instantbird@moz-ivrdpu.cable.rcn.com)
- # [12:34] <bbouvier> nigelb|sheriffduty, please shout :)
- # [12:34] <nigelb|sheriffduty> bbouvier: I had conflicts and I just replaced the rst files with the ones from the tip
- # [12:34] <nigelb|sheriffduty> not sure what I do next.
- # [12:34] <nigelb|sheriffduty> Do I commit?
- # [12:35] <bbouvier> merge conflicts?
- # [12:35] <nigelb|sheriffduty> no I was using qbackout to backout gps' patch
- # [12:35] <nigelb|sheriffduty> his doc changes depended somewhat on the previous push
- # [12:35] <nigelb|sheriffduty> so they were conflicting.
- # [12:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/5f6ddd0ef2eb - Ben Tian - Bug 1137601 - Fire onadapterremoved before onattributechanged in BluetoothManager, f=jocelyn, r=shuang
- # [12:38] * Joins: jacek (jacek@moz-hbt3j4.psi.wroc.pl)
- # [12:41] <bbouvier> what are the commands you've run so far?
- # [12:41] <nigelb|sheriffduty> hg qbackout -e -s -r b7ec05265c33:4013d256b591
- # [12:41] <nigelb|sheriffduty> that showed conflicts in two files
- # [12:41] <nigelb|sheriffduty> so I deleted the .rej file and both actual files and replaced them with hg tip for both files.
- # [12:41] * Quits: ferjm (textual@moz-6tov0c.user.ono.com) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [12:41] <nigelb|sheriffduty> and then hg resolve -m build/docs/files-metadata.rst and hg resolve -m build/docs/mozbuild-files.rst
- # [12:42] <nigelb|sheriffduty> I'm guessing now the mq patch is ready for commiting.
- # [12:42] <nigelb|sheriffduty> but if I screw up, it's going to take a lot of time to clean up and I'd rather not screw up :)
- # [12:42] * baku|away is now known as baku
- # [12:43] <Ms2ger> Backout the doc changes too?
- # [12:43] <Ms2ger> The point of having those in-tree is to make sure they match the code
- # [12:43] * Joins: ferjm (textual@moz-6tov0c.user.ono.com)
- # [12:43] * Joins: Pike (chatzilla@moz-9opfi8.dip0.t-ipconnect.de)
- # [12:43] <nigelb|sheriffduty> Ms2ger: Oh.
- # [12:43] <nigelb|sheriffduty> okay.
- # [12:44] * Joins: gsvelto (gsvelto@moz-4p2810.clienti.tiscali.it)
- # [12:44] * Quits: RealRaven (Thunderbird@moz-75j.ch4.125.109.IP) (Ping timeout: 121 seconds)
- # [12:44] <nigelb|sheriffduty> Ms2ger: that might conflict now :P
- # [12:45] <nigelb|sheriffduty> let's see :)
- # [12:45] * Joins: secretrobotron (secretrobot@moz-h8teo0.dsl.teksavvy.com)
- # [12:45] * lth is now known as lth|out
- # [12:45] <mahdi> Hi, I'm using Web Audio API in a weekend project, and I see a difference in analyser between Firefox and Chrome. I've connected the gainNode to analyser. Chrome shows a difference in the TimeDomainData when I change volume but Firefox doesn't, is this a bug? (it's ok with Oscillator/UserMedia)
- # [12:46] * Joins: jfkthame (jfkthame@moz-2a7.i06.29.2.IP)
- # [12:46] <freddyb> a weekend project on a monday?
- # [12:47] <freddyb> (sorry, not a web audio expert). but maybe this can be resolved if you write a minimal test case that differs on the 2 browsers and file a bug on each (with cross references)
- # [12:47] <mahdi> I'm gonna finish it on weekend :))
- # [12:47] * Joins: RealRaven (Thunderbird@moz-75j.ch4.125.109.IP)
- # [12:47] <nigelb|sheriffduty> Ms2ger: If I screwed up, I may need help :)
- # [12:47] <mahdi> also the holidays are different in Iran :P
- # [12:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1cd9344eb281 - Nigel Babu - Backout Bug 1132771 for spidermonkey build bustage on CLOSED TREE
- # [12:47] <Ms2ger> Revert everything you did, and backout gps's two commit
- # [12:48] <Ms2ger> Or not :)
- # [12:48] * Joins: Kwan (chatzilla@moz-afh9g5.range31-53.btcentralplus.com)
- # [12:49] * jandem-away is now known as jandem
- # [12:49] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [12:50] * Joins: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi)
- # [12:50] * killer sets mode: +o smaug
- # [12:50] <freddyb> smaug: ping
- # [12:51] * Quits: pnkfelix (pnkfelix@moz-eljppb.fbx.proxad.net) (Ping timeout: 121 seconds)
- # [12:51] * Quits: tomatoeblue (textual@moz-bpk.tq1.11.66.IP) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [12:52] <bbouvier> padenot, ^ web audio api difference between chrome and firefox
- # [12:53] <nigelb|sheriffduty> okay, I'll wait until a few builds return green so I know I didn't mess up and re-open.
- # [12:53] <bbouvier> mahdi, do you have some minimal code to share?
- # [12:53] <nigelb|sheriffduty> sorry about the delay folks, managing day job + sheriffing is a tad complicated :)
- # [12:53] * Quits: shelly (shelly@moz-aj9ejj.HINET-IP.hinet.net) (Quit: Leaving)
- # [12:54] <mahdi> bbouvier: I'll push to github in a few minutes
- # [12:57] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [12:58] * Joins: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP)
- # [12:58] * Quits: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP) (Connection closed)
- # [12:59] * Quits: NeilZZZ (neil@moz-7uauc5.cable.virginm.net) (Ping timeout: 121 seconds)
- # [12:59] <mahdi> bbouvier: http://mdibaiee.github.io/Beat.js/app/
- # [12:59] <mahdi> Click "Oscillator", then click the circle near the added oscillator 1 at bottom, then try reducing the volume in Chrome and Firefox
- # [13:00] <mahdi> in Chrome the wave shrinks, in Firefox it doesn't
- # [13:00] * mgerva is now known as mgerva|afk
- # [13:00] <mahdi> Testing on Firefox 38 and Chrome 39
- # [13:00] * Joins: NeilZZZ (neil@moz-7uauc5.cable.virginm.net)
- # [13:02] * darkowlzz is now known as darkowlzz|afk
- # [13:05] * Quits: gerv (Instantbird@moz-u2ksm4.cable.virginm.net) (Ping timeout: 121 seconds)
- # [13:05] * Joins: timdream (timdream@moz-1ipl7b.dynamic.hinet.net)
- # [13:05] * Quits: ochameau (ochameau@moz-31is2j.fbx.proxad.net) (Ping timeout: 121 seconds)
- # [13:06] * Joins: ochameau (ochameau@moz-31is2j.fbx.proxad.net)
- # [13:09] * Quits: jaoo (user@moz-pqtvtd.dynamicIP.rima-tde.net) (Ping timeout: 121 seconds)
- # [13:09] * Joins: RealRaven1 (Thunderbird@moz-75j.ch4.125.109.IP)
- # [13:09] * Quits: ManikM (quassel@moz-bgt.6kh.139.14.IP) (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.)
- # [13:09] * darkowlzz|afk is now known as darkowlzz
- # [13:10] * Joins: ManikM (quassel@moz-bgt.6kh.139.14.IP)
- # [13:10] * Quits: clokep (Instantbird@moz-ivrdpu.cable.rcn.com) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
- # [13:11] * Quits: RealRaven (Thunderbird@moz-75j.ch4.125.109.IP) (Ping timeout: 121 seconds)
- # [13:11] * RealRaven1 is now known as RealRaven
- # [13:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/18d27e770d53 - B2G Bumper Bot - Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
- # [13:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/3ef207c19e99 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [13:12] <@smaug> freddyb: pong
- # [13:14] * Quits: jkitch (Thunderbird@moz-5chkbk.internode.on.net) (Ping timeout: 121 seconds)
- # [13:15] * Joins: mastizada (Thunderbird@moz-daq.v53.6.95.IP)
- # [13:15] * Joins: Anupkumar (uid16774@moz-cf8smb.uxbridge.irccloud.com)
- # [13:17] * Joins: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP)
- # [13:21] * Joins: kapy_ (kapy@moz-e24.ba9.68.182.IP)
- # [13:21] * Quits: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP) (Ping timeout: 121 seconds)
- # [13:22] <mahdi> bbouvier: could you reproduce it?
- # [13:22] * Quits: kapy (kapy@moz-440.kg8.68.182.IP) (Ping timeout: 121 seconds)
- # [13:23] * Quits: ochameau (ochameau@moz-31is2j.fbx.proxad.net) (Ping timeout: 121 seconds)
- # [13:23] * Quits: darktrojan (geoff@moz-rdppp8.dsl.telstraclear.net) (Client exited)
- # [13:23] * Joins: gerv (Instantbird@moz-u2ksm4.cable.virginm.net)
- # [13:25] * Quits: gerv (Instantbird@moz-u2ksm4.cable.virginm.net) (A TLS packet with unexpected length was received.)
- # [13:25] * Joins: mikeratcliffe (Adium@moz-hrq.56q.12.149.IP)
- # [13:26] * Joins: ochameau (ochameau@moz-31is2j.fbx.proxad.net)
- # [13:26] * Joins: gerv (Instantbird@moz-u2ksm4.cable.virginm.net)
- # [13:27] <@smaug> mahdi: it might make sense to write a _minimal_ testcase showing the difference
- # [13:27] <@smaug> something which doesn't require any user input or anything
- # [13:27] <padenot> mahdi: this is fix in last nightly
- # [13:27] * Quits: Rik_ (rik@moz-6v5.3nd.202.89.IP) (A TLS packet with unexpected length was received.)
- # [13:28] <mahdi> smaug: I'm a little busy right now, I might make a test case as soon as I get some free time
- # [13:28] <@smaug> ah, no need
- # [13:28] <@smaug> if padenot says it is fixed
- # [13:28] * Joins: avaida (andrei.vaid@moz-662.esi.231.62.IP)
- # [13:28] <padenot> mahdi: this was https://bugzilla.mozilla.org/show_bug.cgi?id=1118622, the fix landed on the 25th
- # [13:29] <mahdi> oh, that's good news, I'm going to update my nightly soon
- # [13:29] <mahdi> padenot: alright, thanks!
- # [13:29] * Joins: jviereck (Adium@moz-1mep7p.ethz.ch)
- # [13:29] * Quits: @smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi) (Quit: ChatZilla 0.9.91.1 [Firefox 38.0a1/20150219070749])
- # [13:29] * Joins: btulchinsky (btulchinsky@moz-31vm4e.qaconsultants.ca)
- # [13:29] * Joins: pnkfelix (pnkfelix@moz-6v5.3nd.202.89.IP)
- # [13:29] <padenot> mahdi: let us know if you still find an issue, and thanks very much for reporting issues directly to us !
- # [13:29] * Joins: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP)
- # [13:30] <nigelb|sheriffduty> bbouvier: Bustage on bustage.
- # [13:30] <nigelb|sheriffduty> :)
- # [13:30] * nigelb|sheriffduty preps another backout
- # [13:30] <mahdi> padenot: sure! I enjoy reporting/fixing bugs |m|
- # [13:30] * Joins: janv (varga@moz-vt137j.dynamic.orange.sk)
- # [13:31] * Joins: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi)
- # [13:31] * killer sets mode: +o smaug
- # [13:32] <bbouvier> nigelb|sheriffduty, ohnoes wait a bit please
- # [13:32] * Quits: gsvelto (gsvelto@moz-4p2810.clienti.tiscali.it) (Ping timeout: 121 seconds)
- # [13:32] <nigelb|sheriffduty> bbouvier: not yours
- # [13:32] <nigelb|sheriffduty> I'm backing out ajones
- # [13:32] <bbouvier> nigelb|sheriffduty, hah, sorry for the noise
- # [13:32] * bbouvier is getting paranoid about bustages
- # [13:33] * Joins: rbarnes (rbarnes@moz-oe918i.fios.verizon.net)
- # [13:33] <bbouvier> (backing out the set of 12 patches would be a pain for everybody)
- # [13:34] * catlee-away is now known as catlee
- # [13:34] <nigelb|sheriffduty> Heh, this one is just one patch. Phew.
- # [13:34] * Joins: givanica (Thunderbird@moz-lvu.0k4.85.141.IP)
- # [13:36] * Joins: ddamjano (Instantbird@moz-cob.lbn.16.81.IP)
- # [13:37] * Quits: NeilZZZ (neil@moz-7uauc5.cable.virginm.net) (Ping timeout: 121 seconds)
- # [13:37] * Quits: rbarnes (rbarnes@moz-oe918i.fios.verizon.net) (Ping timeout: 121 seconds)
- # [13:37] * Quits: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP) (Connection closed)
- # [13:37] * Joins: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP)
- # [13:38] * Joins: Manny (quassel@moz-bgt.6kh.139.14.IP)
- # [13:38] * Quits: ManikM (quassel@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [13:39] * Joins: Rik (rik@moz-6v5.3nd.202.89.IP)
- # [13:39] * Joins: NeilZZZ (neil@moz-7uauc5.cable.virginm.net)
- # [13:40] * Quits: imphil (philipp@moz-jsu5pe.nh6l.v7hj.4ca0.2001.IP) (Ping timeout: 121 seconds)
- # [13:40] * flod is now known as flod|afk
- # [13:41] * Quits: edenchuang (uid46829@moz-38m6rq.brockwell.irccloud.com) (Quit: Connection closed for inactivity)
- # [13:41] * Joins: jonco (Adium@moz-j8i.9n6.255.85.IP)
- # [13:42] * Joins: jimm (jmathies@moz-it64bn.dhcp.embarqhsd.net)
- # [13:42] * Joins: tomatoeblue (textual@moz-bpk.tq1.11.66.IP)
- # [13:43] * Parts: avaida (andrei.vaid@moz-662.esi.231.62.IP)
- # [13:44] * julienw_afk is now known as julienw
- # [13:45] * Joins: rednaks (rednaks@moz-cun.cog.227.41.IP)
- # [13:45] <KaiRo> hmm, someone on the nightly testers list saying that nightly did get a lot faster - that's nice to hear!
- # [13:49] * Quits: Jerry_Mac (hshih@moz-2hf62a.HINET-IP.hinet.net) (Quit: Leaving)
- # [13:49] * Quits: tomatoeblue (textual@moz-bpk.tq1.11.66.IP) (Quit: My Mac has gone to sleep. ZZZzzz…)
- # [13:50] * nigelb|sheriffduty pokes pulsebot
- # [13:50] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b768d5460be0 - Nigel Babu - Backed out changeset a622dbe33efb (bug 1135544) for ASAN mochitest-3 bustage on CLOSED TREE
- # [13:52] * Joins: tedders1 (tedders1@moz-i5m.05u.207.66.IP)
- # [13:54] * Fallen is now known as Fallen|away
- # [13:55] * Quits: Jerry_PC (hshih@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [13:56] * Quits: tedders1 (tedders1@moz-i5m.05u.207.66.IP) (Ping timeout: 121 seconds)
- # [13:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/5d6b00de30c6 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [13:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/6028877cb17c - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [13:57] * Joins: rednaks_ (rednaks@moz-48r.e12.227.41.IP)
- # [13:58] * Quits: ddamjano (Instantbird@moz-cob.lbn.16.81.IP) (Ping timeout: 121 seconds)
- # [13:58] * Joins: tedders1 (tedders1@moz-i5m.05u.207.66.IP)
- # [13:59] * lth|out is now known as lth
- # [13:59] * Quits: rednaks (rednaks@moz-cun.cog.227.41.IP) (Ping timeout: 121 seconds)
- # [14:01] * Joins: yliao (yliao@moz-fr0527.dynamic.hinet.net)
- # [14:02] * Quits: rednaks_ (rednaks@moz-48r.e12.227.41.IP) (Ping timeout: 121 seconds)
- # [14:02] * Joins: twash (twash@moz-vq9jt2.hr.cox.net)
- # [14:04] <freddyb> smaug: I was wondering if you'd be a good reviewer for https://bugzilla.mozilla.org/show_bug.cgi?id=968334 - the bug is awfully stale
- # [14:06] <@smaug> freddyb: assuming the patch touches DocShell, then yes
- # [14:06] <freddyb> smaug: yep
- # [14:06] <@smaug> happy to help with that bug
- # [14:06] * Joins: jaoo (user@moz-pqtvtd.dynamicIP.rima-tde.net)
- # [14:06] <@smaug> (happy to help with any TB issues whenever I can and have time)
- # [14:07] * Joins: nj (nj@moz-8jt.2vq.187.1.IP)
- # [14:07] <freddyb> smaug: the assigned person forgot to set a review flag, so I'll jsut set it for him
- # [14:07] <freddyb> smaug: rather than waiting for the needinfo
- # [14:12] * mgerva|afk is now known as mgerva
- # [14:12] * flod|afk is now known as flod
- # [14:15] * Quits: jviereck (Adium@moz-1mep7p.ethz.ch) (Quit: Leaving.)
- # [14:15] * Joins: aben (aben@moz-opc.ucc.204.142.IP)
- # [14:16] * Quits: jonco (Adium@moz-j8i.9n6.255.85.IP) (Ping timeout: 121 seconds)
- # [14:16] * Quits: adalucinet (Instantbird@moz-662.esi.231.62.IP) (Client exited)
- # [14:16] * Joins: anirudhgp (Mibbit@moz-279.u7u.204.119.IP)
- # [14:16] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [14:19] * Joins: imphil (philipp@moz-7o1s5p.s8jk.nk4a.4ca0.2001.IP)
- # [14:20] * Joins: jonco (Adium@moz-j8i.9n6.255.85.IP)
- # [14:21] * Quits: anirudhgp (Mibbit@moz-279.u7u.204.119.IP) (Quit: http://www.mibbit.com ajax IRC Client)
- # [14:23] * Joins: jonco1 (Adium@moz-ch5.9if.144.109.IP)
- # [14:23] * Quits: timdream (timdream@moz-1ipl7b.dynamic.hinet.net) (Client exited)
- # [14:24] * Quits: jonco (Adium@moz-j8i.9n6.255.85.IP) (Ping timeout: 121 seconds)
- # [14:25] * Joins: timdream (timdream@moz-1ipl7b.dynamic.hinet.net)
- # [14:25] * Joins: mshal (mshal@moz-pv29mh.fios.verizon.net)
- # [14:25] * Joins: Neil (neil@moz-7uauc5.cable.virginm.net)
- # [14:26] * Joins: rbarnes (rbarnes@moz-oe918i.fios.verizon.net)
- # [14:28] * Quits: NeilZZZ (neil@moz-7uauc5.cable.virginm.net) (Ping timeout: 121 seconds)
- # [14:28] * Joins: jdm (jdm@moz-ilbt2e.cable.teksavvy.com)
- # [14:28] * Neil is now known as NeilZZZ
- # [14:31] <Kwan> treeherder's use of <strong/> (or at least its default bold styling) for possible bug matches seems suboptimal. I find it harder to visually parse with the changing text-size.
- # [14:32] * Joins: sabbir_alam_ufo (sabbir_alam@moz-9la.s0r.225.103.IP)
- # [14:32] <Kwan> varying the color opacity seems to work better for me
- # [14:33] * Quits: imphil (philipp@moz-7o1s5p.s8jk.nk4a.4ca0.2001.IP) (Ping timeout: 121 seconds)
- # [14:37] * Joins: tauzen (tauzen@moz-ekid4b.dynamic.chello.pl)
- # [14:38] * Quits: poiru (poiru@moz-bmdn13.kapsi.fi) (Ping timeout: 121 seconds)
- # [14:38] * Fallen|away is now known as Fallen
- # [14:38] * Quits: jrmuizel (jrmuizel@moz-nqe.37f.193.104.IP) (Connection closed)
- # [14:39] * Joins: poiru (poiru@moz-bmdn13.kapsi.fi)
- # [14:40] * Joins: till (till@moz-ass5lh.adsl.alicedsl.de)
- # [14:41] * Joins: imphil (philipp@moz-7o1s5p.s8jk.nk4a.4ca0.2001.IP)
- # [14:43] * Joins: gustavold (gustavold@moz-3uj.d51.94.177.IP)
- # [14:43] <jgraham> Kwan: #treeherder or file a bug
- # [14:44] * Joins: avaida (andreivaida@moz-662.esi.231.62.IP)
- # [14:48] * Quits: timdream (timdream@moz-1ipl7b.dynamic.hinet.net) (Client exited)
- # [14:48] * Quits: cirocosta (Ciro@moz-t4q.9oh.148.177.IP) (Ping timeout: 121 seconds)
- # [14:48] * darkowlzz is now known as darkowlzz|afk
- # [14:49] * Joins: timdream (timdream@moz-1ipl7b.dynamic.hinet.net)
- # [14:51] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
- # [14:52] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [14:52] * Quits: Rik (rik@moz-6v5.3nd.202.89.IP) (Quit: )
- # [14:53] * Quits: NeilAway (neil@moz-qc1jfo.virginmediabusiness.co.uk) (Ping timeout: 121 seconds)
- # [14:53] * Quits: ahunt (ahunt@moz-hq8kb0.cam.ac.uk) (Ping timeout: 121 seconds)
- # [14:54] * Joins: jviereck (Adium@moz-mbj2cc.58bf.g469.067c.2001.IP)
- # [14:55] * Joins: jviereck1 (Adium@moz-oaldju.ethz.ch)
- # [14:55] * Quits: timdream (timdream@moz-1ipl7b.dynamic.hinet.net) (Ping timeout: 121 seconds)
- # [14:55] * Quits: jviereck1 (Adium@moz-oaldju.ethz.ch) (Quit: Leaving.)
- # [14:55] * Joins: Neil (neil@moz-7uauc5.cable.virginm.net)
- # [14:55] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Quit: )
- # [14:56] * Joins: Rik (rik@moz-6v5.3nd.202.89.IP)
- # [14:57] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
- # [14:57] * Joins: Sushant94_ (Sushant@moz-494.9la.215.180.IP)
- # [14:57] * Quits: Sushant94_ (Sushant@moz-494.9la.215.180.IP) (Quit: Leaving)
- # [14:58] * Quits: NeilZZZ (neil@moz-7uauc5.cable.virginm.net) (Ping timeout: 121 seconds)
- # [14:58] * Neil is now known as NeilZZZ
- # [14:58] * Joins: Sushant94 (Sushant@moz-494.9la.215.180.IP)
- # [14:58] * Quits: jviereck (Adium@moz-mbj2cc.58bf.g469.067c.2001.IP) (Ping timeout: 121 seconds)
- # [14:58] * Quits: tauzen (tauzen@moz-ekid4b.dynamic.chello.pl) (Quit: )
- # [14:58] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/36af6a295d1e - B2G Bumper Bot - Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
- # [14:58] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/720ae75dc132 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [15:00] * Joins: timdream (timdream@moz-1ipl7b.dynamic.hinet.net)
- # [15:00] * Quits: givanica (Thunderbird@moz-lvu.0k4.85.141.IP) (Ping timeout: 121 seconds)
- # [15:00] * Quits: Sushant94 (Sushant@moz-494.9la.215.180.IP) (Quit: Leaving)
- # [15:00] * Joins: ahal (ahal@moz-blga2k.cpe.pppoe.ca)
- # [15:01] * Joins: sushant94 (sushant@moz-buc.t0a.199.128.IP)
- # [15:01] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
- # [15:03] * Quits: nj (nj@moz-8jt.2vq.187.1.IP) (Connection closed)
- # [15:03] * Joins: Neil (neil@moz-7uauc5.cable.virginm.net)
- # [15:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/acc733decf7a - Mats Palmgren - Bug 1137723 - Don't call ::IsBoxWrapped(this) with the current mParent intact b/c IsBoxWrapped uses GetParent() and it may have been destroyed while this frame is still sitting an overflow list waiting to be lazy re-parented. r=roc
- # [15:04] * Joins: anirudhgp (Mibbit@moz-f40.f10.139.14.IP)
- # [15:05] * Quits: NeilZZZ (neil@moz-7uauc5.cable.virginm.net) (Ping timeout: 121 seconds)
- # [15:05] * Neil is now known as NeilZZZ
- # [15:07] * Joins: tromey (tromey@moz-84nbld.hlrn.qwest.net)
- # [15:08] * Joins: gsvelto (gsvelto@moz-4p2810.clienti.tiscali.it)
- # [15:08] * Joins: ehsan (ehsan@moz-cef8oi.cpe.pppoe.ca)
- # [15:08] * killer sets mode: +o ehsan
- # [15:08] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5f0c649d2d47 - Jon Coppeard - Bug 1128670 - Ignore intermittent timeout in compacting GC tests r=terrence
- # [15:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/dc1374ca3034 - Jon Coppeard - Bug 1133377 - Make DataView constructor correctly handle undefined byteLength argument r=sfink
- # [15:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4fe43cd0ac7d - Jon Coppeard - Bug 899979 - Remove unneeded test code r=waldo
- # [15:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0d6720105fbb - Jon Coppeard - Bug 963921 - Clients of the JS API should use JS_DefineElement where appropriate r=smaug
- # [15:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e36fa665ed23 - Tooru Fujisawa - Bug 1136490 - Fix unreliable test code to not fail with OOM r=terrence
- # [15:09] * Joins: spohl (Adium@moz-a63pdr.reverse.softlayer.com)
- # [15:09] * Joins: gsvelto_ (gsvelto@moz-4p2810.clienti.tiscali.it)
- # [15:09] * Joins: garvank (Garvan@moz-p18v30.dsl.teksavvy.com)
- # [15:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/9d5ae6ec32cb - Martyn Haigh - Bug 1129443 - Add item in Settings to manage tab queue (r=liuche)
- # [15:10] * Joins: luke (luke@moz-fk7pee.tx.charter.com)
- # [15:11] * darkowlzz|afk is now known as darkowlzz
- # [15:11] * Joins: bz (bzbarsky@moz-m10oko.fios.verizon.net)
- # [15:14] * Quits: gerv (Instantbird@moz-u2ksm4.cable.virginm.net) (Ping timeout: 121 seconds)
- # [15:15] * Quits: RealRaven (Thunderbird@moz-75j.ch4.125.109.IP) (Client exited)
- # [15:15] * coop is now known as coop|buildduty
- # [15:16] * Joins: bbondy_ (bbondy@moz-hchicl.home4.cgocable.net)
- # [15:16] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
- # [15:17] * Quits: gsvelto_ (gsvelto@moz-4p2810.clienti.tiscali.it) (A TLS packet with unexpected length was received.)
- # [15:17] * Joins: elin (elin@moz-6fdb35.dynamic-ip.hinet.net)
- # [15:18] * Quits: imphil (philipp@moz-7o1s5p.s8jk.nk4a.4ca0.2001.IP) (Ping timeout: 121 seconds)
- # [15:19] * Quits: gsvelto (gsvelto@moz-4p2810.clienti.tiscali.it) (A TLS packet with unexpected length was received.)
- # [15:20] * Fallen is now known as Fallen|away
- # [15:20] * Joins: givanica (Thunderbird@moz-716.4cl.85.141.IP)
- # [15:23] * Quits: anirudhgp (Mibbit@moz-f40.f10.139.14.IP) (Quit: http://www.mibbit.com ajax IRC Client)
- # [15:23] * Quits: givanica (Thunderbird@moz-716.4cl.85.141.IP) (Connection closed)
- # [15:24] * Joins: givanica (Thunderbird@moz-716.4cl.85.141.IP)
- # [15:24] * Joins: gsvelto (gsvelto@moz-4p2810.clienti.tiscali.it)
- # [15:26] * Joins: mconley (mconley@moz-os98q9.cable.teksavvy.com)
- # [15:28] <nigelb|sheriffduty> Ms2ger: :(
- # [15:28] <nigelb|sheriffduty> still failing :(
- # [15:28] <Ms2ger> hg rev -a
- # [15:28] <nigelb|sheriffduty> wah?
- # [15:29] <nigelb|sheriffduty> Ms2ger: I mean, inbound tip is b0rked.
- # [15:29] * Fallen|away is now known as Fallen
- # [15:29] <Ms2ger> Find the last green changeset, take everything out after that
- # [15:29] * Joins: yzen (yzen@moz-i5m.05u.207.66.IP)
- # [15:30] * Joins: anirudhgp (Mibbit@moz-d1s.oia.232.58.IP)
- # [15:30] <nigelb|sheriffduty> I still think I did osmething wrong with my backout.
- # [15:30] <nigelb|sheriffduty> I'm going to email ryan and watch
- # [15:30] * Joins: nj (nj@moz-3jl.km5.79.106.IP)
- # [15:31] <jonco1> nigelb|sheriffduty: looks like the backout changeset didn't remove test_mozbuild_reading.py which was added in that bug
- # [15:32] <nigelb|sheriffduty> jonco1: damn
- # [15:32] <nigelb|sheriffduty> tahnks.
- # [15:32] * catlee is now known as catlee-away
- # [15:33] * Quits: nj (nj@moz-3jl.km5.79.106.IP) (Connection closed)
- # [15:33] * Quits: hallvors (uid23371@moz-jrnk4a.ealing.irccloud.com) (Quit: Connection closed for inactivity)
- # [15:33] <nigelb|sheriffduty> jonco1: what's the best way to get rid of it in terms of hg history?
- # [15:34] * Quits: givanica (Thunderbird@moz-716.4cl.85.141.IP) (Ping timeout: 121 seconds)
- # [15:35] <jonco1> nigelb|sheriffduty: I guess the backout didn't include all the changesets so if you can work out which ones were missed just back them out too
- # [15:35] <nigelb|sheriffduty> hm, ok
- # [15:35] <Pike> nigelb|sheriffduty: we don't
- # [15:35] <jonco1> nigelb|sheriffduty: that test was added in 91d34d3107fa
- # [15:35] <nigelb|sheriffduty> Pike: er, context?
- # [15:35] * Quits: sabbir_alam_ufo (sabbir_alam@moz-9la.s0r.225.103.IP) (Quit: Leaving)
- # [15:37] <jonco1> nigelb|sheriffduty: hmm trying to create a backout for that doesn't work though, not sure what's happened
- # [15:37] * Quits: mconley (mconley@moz-os98q9.cable.teksavvy.com) (Connection closed)
- # [15:37] * Fallen is now known as Fallen|away
- # [15:38] <nigelb|sheriffduty> jonco1: I messed up.
- # [15:38] <nigelb|sheriffduty> my last backup attempt failed midway
- # [15:38] * Joins: ManikM (quassel@moz-bgt.6kh.139.14.IP)
- # [15:38] * Quits: Manny (quassel@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [15:38] <nigelb|sheriffduty> and I commited it. Sigh.
- # [15:41] * nigelb|sheriffduty is now known as nigelb
- # [15:41] * Quits: secretrobotron (secretrobot@moz-h8teo0.dsl.teksavvy.com) (A TLS packet with unexpected length was received.)
- # [15:42] * Joins: RyanVM (Thunderbird@moz-97pjjt.fios.verizon.net)
- # [15:43] <Pike> nigelb: we don't git rid of things in hg history, at least not after you pushed
- # [15:43] <nigelb> Pike: Oh, I wasn't going to do that.
- # [15:43] <Pike> nigelb: if you're just local, `hg strip` or `hg histedit`
- # [15:43] * Quits: @smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi) (Ping timeout: 121 seconds)
- # [15:43] <nigelb> I wanted to know what's a clean way to clean it up. If that makes sense.
- # [15:45] <Pike> histedit, and if it's just local uncommited changes, hg up -c
- # [15:45] <Pike> hg up -C, probably
- # [15:45] * Joins: trevorh (trevor@moz-3o9.i1r.174.58.IP)
- # [15:45] * Joins: AaronMT (AaronMT@moz-5e6tl2.cable.rogers.com)
- # [15:46] * lth is now known as lth|afk
- # [15:46] <nigelb> Pike: This is all pushed and on m-i :(
- # [15:46] * Parts: anirudhgp (Mibbit@moz-d1s.oia.232.58.IP)
- # [15:47] * Joins: automata (automata@moz-jo2.0eg.34.177.IP)
- # [15:47] * Joins: vingtetun_ (vnicolas@moz-vsd42h.lmuk.1rfi.0450.2001.IP)
- # [15:48] <Pike> then just iterate :-/
- # [15:48] <jonco1> nigelb: backout the backout and re-backout the original bug?
- # [15:48] <jonco1> might just work...
- # [15:48] <nigelb> jonco1: yeah, Ryan is helping :)
- # [15:48] <nigelb> My hg foo isn't quite as strong as my git foo.
- # [15:48] <nigelb> (yet)
- # [15:48] <jonco1> nigelb: ok cool :)
- # [15:49] * Joins: gerv (Instantbird@moz-ppf2jl.81.in-addr.arpa)
- # [15:50] * Joins: Enn (enn@moz-68e3mj.ckpj.s0pt.0450.2001.IP)
- # [15:52] * philor|away is now known as philor
- # [15:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ce21e7a57cf8 - Ryan VanderMeulen - Backed out 11 changesets (bug 1132771) for SM test bustage on a CLOSED TREE.
- # [15:53] * Joins: ckitching (ckitching@moz-cbggqe.cable.virginm.net)
- # [15:53] * Quits: rbarnes (rbarnes@moz-oe918i.fios.verizon.net) (A TLS packet with unexpected length was received.)
- # [15:54] * mcote|afk is now known as mcote
- # [15:55] * Quits: NeilZZZ (neil@moz-7uauc5.cable.virginm.net) (Ping timeout: 121 seconds)
- # [15:56] * Quits: timdream (timdream@moz-1ipl7b.dynamic.hinet.net) (Client exited)
- # [15:56] * Joins: timdream (timdream@moz-1ipl7b.dynamic.hinet.net)
- # [15:57] * Joins: gandalf (zbraniecki@moz-v49pcc.chyn.qwest.net)
- # [15:57] * Joins: Neil (neil@moz-7uauc5.cable.virginm.net)
- # [15:57] * Quits: timdream (timdream@moz-1ipl7b.dynamic.hinet.net) (Client exited)
- # [15:57] * Neil is now known as NeilZZZ
- # [15:59] * Joins: secretrobotron (secretrobot@moz-h8teo0.dsl.teksavvy.com)
- # [15:59] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [16:00] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [16:01] * lth|afk is now known as lth
- # [16:02] * Joins: avp (uid41039@moz-lkje7k.brockwell.irccloud.com)
- # [16:02] * Joins: jib (Jan-Ivar@moz-85u316.dyn.optonline.net)
- # [16:03] * Quits: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP) (Ping timeout: 121 seconds)
- # [16:03] * Quits: secretrobotron (secretrobot@moz-h8teo0.dsl.teksavvy.com) (Ping timeout: 121 seconds)
- # [16:03] * Joins: bwc (Adium@moz-7qa.7fp.250.162.IP)
- # [16:04] * Joins: Kwan_ (chatzilla@moz-afh9g5.range31-53.btcentralplus.com)
- # [16:04] * Quits: bwc (Adium@moz-7qa.7fp.250.162.IP) (Quit: Leaving.)
- # [16:04] * Quits: automata (automata@moz-jo2.0eg.34.177.IP) (Quit: This computer has gone to sleep)
- # [16:05] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [16:05] * Quits: stransky (stransky@moz-16g.ma8.175.213.IP) (Quit: Connection reset by beer)
- # [16:05] * RyanVM is now known as RyanVM|sheriffduty
- # [16:05] * Joins: Kwan__ (chatzilla@moz-afh9g5.range31-53.btcentralplus.com)
- # [16:05] * Joins: milan (milan@moz-mcst1h.ckpj.s0pt.0450.2001.IP)
- # [16:06] * Joins: jsx (uid48919@moz-ldeku3.uxbridge.irccloud.com)
- # [16:06] * Joins: benfrancis (uid16068@moz-v6fohe.uxbridge.irccloud.com)
- # [16:06] * Joins: Noah_ (noah@moz-6uku33.ch)
- # [16:06] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [16:07] * Quits: Kwan (chatzilla@moz-afh9g5.range31-53.btcentralplus.com) (Ping timeout: 121 seconds)
- # [16:07] * Quits: richardus (richardus@moz-s8o.1uq.19.71.IP) (Ping timeout: 121 seconds)
- # [16:07] * Kwan__ is now known as Kwan
- # [16:07] <Noah_> hey guys anyone have time to help with a Ubuntu strace from a hung firefox? trying to see if it's even got the right symbols
- # [16:08] <Noah_> log here: https://pastebin.mozilla.org/8823836
- # [16:08] * Quits: mzz (marienz@moz-7cgmb7.marienz.net) (Ping timeout: 121 seconds)
- # [16:08] * Quits: jib (Jan-Ivar@moz-85u316.dyn.optonline.net) (Connection closed)
- # [16:08] * Joins: jib (Jan-Ivar@moz-85u316.dyn.optonline.net)
- # [16:08] <Noah_> crap, think I answered my own question: No symbol table info available. #3 0xb2e4f6c2 in ?? () from /usr/lib/firefox/libxul.so
- # [16:08] * Joins: dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com)
- # [16:08] * killer sets mode: +ao dbaron dbaron
- # [16:08] * Quits: Kwan_ (chatzilla@moz-afh9g5.range31-53.btcentralplus.com) (Ping timeout: 121 seconds)
- # [16:09] <Noah_> can anyone advise how to get symbols for linux? I heard downloading a package would be necessary, not sure which though
- # [16:09] * Quits: ddahl (ddahl@moz-40a6g5.il.comcast.net) (Ping timeout: 121 seconds)
- # [16:09] * Joins: Mnyromyr (Mnyromyr@moz-ertsab.ejss.mv3s.0908.2a02.IP)
- # [16:10] <@ted> Noah_: https://developer.mozilla.org/en-US/docs/Using_the_Mozilla_symbol_server#Downloading_symbols_on_Linux_Mac_OS_X
- # [16:10] <@ted> there's a script you can get that will fetch them from the symbol server
- # [16:10] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [16:11] * Joins: ddamjano (Instantbird@moz-tfh.hhs.128.88.IP)
- # [16:11] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [16:12] * Joins: jviereck (Adium@moz-mbj2cc.58bf.g469.067c.2001.IP)
- # [16:12] * Quits: jviereck (Adium@moz-mbj2cc.58bf.g469.067c.2001.IP) (Quit: Leaving.)
- # [16:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/0ffcb6904a21 - Mike de Boer - Bug 1094915: cleanup - remove preference clearing of Loop throttle prefs that are not used anymore. r=abr
- # [16:13] * Joins: luisalonsocn (luisalonsoc@moz-n0u.ur6.42.190.IP)
- # [16:13] * kats|away is now known as kats
- # [16:14] <Noah_> ted: \o/ awesome thanks! I was about to pop in #breakpad and ask hehe
- # [16:14] * Joins: shubham (uid43962@moz-507136.ealing.irccloud.com)
- # [16:14] * Joins: Boriss (Boriss@moz-dkeprl.PUBLIC.monkeybrains.net)
- # [16:15] <@ted> Noah_: np
- # [16:16] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [16:17] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [16:17] * Joins: emtwo (Adium@moz-unokp5.dsl.teksavvy.com)
- # [16:19] <kats> RyanVM|sheriffduty: so if i look at the b2g34 tree on TH and click on a B2G ICS Emulator Debug M-12 test (which is green), it shows a TEST-UNEXPECTED-FAIL in the failure summary. do you know why that test is still green?
- # [16:20] * lmandel_afk is now known as lmandel
- # [16:20] <RyanVM|sheriffduty> kats: pretty sure there's a bug for that somewhere, don't have time to go looking for it right now
- # [16:20] <kats> RyanVM|sheriffduty: ok
- # [16:20] * Joins: mzz (marienz@moz-7cgmb7.marienz.net)
- # [16:21] * Joins: richardus (richardus@moz-s8o.1uq.19.71.IP)
- # [16:21] <kats> RyanVM|sheriffduty: any idea what component it might be in?
- # [16:22] * nsm|away|away is now known as nsm
- # [16:22] * Quits: jonco1 (Adium@moz-ch5.9if.144.109.IP) (Quit: Leaving.)
- # [16:23] * Joins: ddahl (ddahl@moz-l30.ko4.9.64.IP)
- # [16:25] * BenWa|email is now known as BenWa
- # [16:25] * Joins: mconley (mconley@moz-i5m.05u.207.66.IP)
- # [16:25] * Joins: jviereck (Adium@moz-qm33tu.ethz.ch)
- # [16:26] * Joins: jgilbert (jgilbert@moz-cdqr5q.ca.comcast.net)
- # [16:28] * Joins: rbarnes (rbarnes@moz-bg9.tia.177.128.IP)
- # [16:28] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [16:28] * Quits: twash (twash@moz-vq9jt2.hr.cox.net) (Ping timeout: 121 seconds)
- # [16:29] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [16:29] * Joins: jonco (Adium@moz-j8i.9n6.255.85.IP)
- # [16:30] * Joins: hallvors (uid23371@moz-jrnk4a.ealing.irccloud.com)
- # [16:31] * Quits: NeilZZZ (neil@moz-7uauc5.cable.virginm.net) (Ping timeout: 121 seconds)
- # [16:31] * Joins: automata (automata@moz-jo2.0eg.34.177.IP)
- # [16:32] * Quits: jib (Jan-Ivar@moz-85u316.dyn.optonline.net) (Client exited)
- # [16:32] * Joins: milan_ (milan@moz-i5m.05u.207.66.IP)
- # [16:33] * Joins: oliverthor (oliverthor@moz-5i3.51j.125.50.IP)
- # [16:33] * Joins: Neil (neil@moz-7uauc5.cable.virginm.net)
- # [16:33] * Neil is now known as NeilZZZ
- # [16:34] * Quits: jgilbert (jgilbert@moz-cdqr5q.ca.comcast.net) (Ping timeout: 121 seconds)
- # [16:34] * Quits: milan (milan@moz-mcst1h.ckpj.s0pt.0450.2001.IP) (Ping timeout: 121 seconds)
- # [16:35] * Quits: gabor (gabor@moz-tfiocm.net-tv.hu) (Connection closed)
- # [16:35] * Joins: catalinb (catalin@moz-4lv.ago.9.85.IP)
- # [16:36] <bkelly> RyanVM|sheriffduty: does windows mozbuild include minidump_stackwalk?
- # [16:37] * Joins: NeilAway (neil@moz-qc1jfo.virginmediabusiness.co.uk)
- # [16:37] <bkelly> I guess not
- # [16:37] <RyanVM|sheriffduty> bkelly: no, not even sure where that comes from
- # [16:38] <bkelly> RyanVM|sheriffduty: http://hg.mozilla.org/build/tools/file/tip/breakpad/
- # [16:38] * Quits: elin (elin@moz-6fdb35.dynamic-ip.hinet.net) (Client exited)
- # [16:38] <bkelly> from mdn page: https://developer.mozilla.org/en-US/docs/Mochitest?redirectlocale=en-US&redirectslug=Writing_MochiTest-based_unit_tests
- # [16:38] * Quits: naveed__ (naveed@moz-cohb2i.fios.verizon.net) (A TLS packet with unexpected length was received.)
- # [16:41] * catlee-away is now known as catlee
- # [16:41] * Joins: nathanr (nathanr@moz-9dijr5.mc.videotron.ca)
- # [16:41] * Joins: davidb (davidb@moz-7f6lel.dsl.bell.ca)
- # [16:43] * Quits: NeilZZZ (neil@moz-7uauc5.cable.virginm.net) (Ping timeout: 121 seconds)
- # [16:44] * zz_miketaylr is now known as miketaylr
- # [16:44] * Joins: Neil (neil@moz-7uauc5.cable.virginm.net)
- # [16:44] * Neil is now known as NeilZZZ
- # [16:44] * Quits: janv (varga@moz-vt137j.dynamic.orange.sk) (Ping timeout: 121 seconds)
- # [16:45] * gregglind_away is now known as gregglind
- # [16:46] * Quits: jviereck (Adium@moz-qm33tu.ethz.ch) (Quit: Leaving.)
- # [16:47] * Quits: trevorh (trevor@moz-3o9.i1r.174.58.IP) (Quit: Leaving.)
- # [16:48] <pbrosset> If I wanted to understand how % color-stop positions in a linear-gradient are translated to coordinates, where would I look?
- # [16:50] * Joins: jrmuizel (jrmuizel@moz-h359kj.cable.rogers.com)
- # [16:50] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [16:51] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [16:52] * Quits: avaida (andreivaida@moz-662.esi.231.62.IP) (Quit: Leaving.)
- # [16:53] <padenot> pbrosset: spec or code?
- # [16:54] * Joins: mayhemer (Miranda@moz-0o5na8.joqu.pdma.1028.2a00.IP)
- # [16:55] <pbrosset> padenot: spec would do, I just want to understand how is the gradient line position calculated, and therefore how are the color-stops positioned
- # [16:55] <pbrosset> looking to build a tool in devtools to show the line and stops, and make changes the gradient this way
- # [16:55] * Quits: ddamjano (Instantbird@moz-tfh.hhs.128.88.IP) (Ping timeout: 121 seconds)
- # [16:55] <padenot> pbrosset: http://dev.w3.org/csswg/css-images/#linear-gradients
- # [16:55] <padenot> there are pretty pictures
- # [16:56] <pbrosset> oh, I like pretty pictures
- # [16:56] * Joins: dmose (uid42639@moz-ififqa.brockwell.irccloud.com)
- # [16:57] * Joins: justindarc (justindarc@moz-lev.v84.203.209.IP)
- # [16:57] <pbrosset> thanks
- # [16:58] * Quits: gandalf (zbraniecki@moz-v49pcc.chyn.qwest.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [16:58] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/643e37bd8fdf - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [16:59] * Joins: dropkick (dropkick@moz-vqmb12.res.rr.com)
- # [17:00] * Joins: mchang (mchang@moz-4b7hgp.res.rr.com)
- # [17:01] * Quits: gsvelto (gsvelto@moz-4p2810.clienti.tiscali.it) (A TLS packet with unexpected length was received.)
- # [17:01] * Joins: overbythere (textual@moz-8923jv.cable.virginm.net)
- # [17:02] * Joins: jcj (jcj@moz-4rqd80.phnx.qwest.net)
- # [17:03] * Joins: milan (milan@moz-i5m.05u.207.66.IP)
- # [17:03] * Quits: catalinb (catalin@moz-4lv.ago.9.85.IP) (Ping timeout: 121 seconds)
- # [17:03] * Joins: janv (varga@moz-vt137j.dynamic.orange.sk)
- # [17:04] * Joins: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi)
- # [17:04] * killer sets mode: +o smaug
- # [17:04] * Quits: qDot (qdot@moz-rl6ai4.typefuck.com) (Quit: ZNC - http://znc.in)
- # [17:04] * Joins: jgriffin (uid51409@moz-v5946n.ealing.irccloud.com)
- # [17:05] * Fallen|away is now known as Fallen
- # [17:05] * Joins: imjalpreet (Thunderbird@moz-9i1.k6o.139.14.IP)
- # [17:05] * Joins: bsmedberg (bsmedberg@moz-smm6jf.pa.atlanticbb.net)
- # [17:05] * killer sets mode: +o bsmedberg
- # [17:06] * Quits: milan_ (milan@moz-i5m.05u.207.66.IP) (Ping timeout: 121 seconds)
- # [17:07] * Joins: myk (myk@moz-u3dg2t.sfo1.mozilla.com)
- # [17:07] * Joins: jviereck (Adium@moz-qm33tu.ethz.ch)
- # [17:08] * Joins: cirocosta (Ciro@moz-t4q.9oh.148.177.IP)
- # [17:08] * Joins: jib (Jan-Ivar@moz-85u316.dyn.optonline.net)
- # [17:09] * Quits: myk (myk@moz-u3dg2t.sfo1.mozilla.com) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
- # [17:09] * Joins: myk (myk@moz-u3dg2t.sfo1.mozilla.com)
- # [17:09] * Joins: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com)
- # [17:09] * Quits: automata (automata@moz-jo2.0eg.34.177.IP) (Quit: This computer has gone to sleep)
- # [17:10] * Quits: botond_ (quassel@moz-i5m.05u.207.66.IP) (Ping timeout: 121 seconds)
- # [17:11] * Joins: botond_ (quassel@moz-hkcns1.ckpj.s0pt.0450.2001.IP)
- # [17:13] * Joins: bitgeeky (bitgeeky@moz-9i1.k6o.139.14.IP)
- # [17:13] <mhoye> Question - that bug where opening a URL from a cold start doesn't actually open the URL unless you click it again; I know it's on file, but did we ship that behavior in 36
- # [17:13] <mhoye> ?
- # [17:13] * Quits: bitgeeky (bitgeeky@moz-9i1.k6o.139.14.IP) (Connection closed)
- # [17:14] * Joins: automata (automata@moz-jo2.0eg.34.177.IP)
- # [17:18] * Quits: jfkthame (jfkthame@moz-2a7.i06.29.2.IP) (Connection closed)
- # [17:19] * Joins: jfkthame (jfkthame@moz-2a7.i06.29.2.IP)
- # [17:21] * Quits: \n (\n@moz-n8gq1g.ca.comcast.net) (Ping timeout: 121 seconds)
- # [17:21] <@smaug> never heard of such bug
- # [17:22] * Quits: milan (milan@moz-i5m.05u.207.66.IP) (Connection closed)
- # [17:24] * Joins: \n (\n@moz-n8gq1g.ca.comcast.net)
- # [17:25] * Quits: fabrice (fabrice@moz-r84lgh.ca.comcast.net) (Quit: Leaving.)
- # [17:25] * Joins: mcomella (mcomella@moz-ps8n7n.2rkg.9kg1.0101.2620.IP)
- # [17:25] * Parts: jonco (Adium@moz-j8i.9n6.255.85.IP)
- # [17:26] * Joins: milan (milan@moz-i5m.05u.207.66.IP)
- # [17:26] <edmorley> kats: likely one of the deps of bug 1048775
- # [17:26] <kats> edmorley: thanks!
- # [17:26] <edmorley> kats: bug 1062918 sounds familiar
- # [17:27] <kats> indeed
- # [17:27] * Joins: bgrins (bgrins@moz-081ibl.qnor.1u98.0009.2601.IP)
- # [17:28] * Quits: milan (milan@moz-i5m.05u.207.66.IP) (Connection closed)
- # [17:28] * Joins: milan_ (milan@moz-i5m.05u.207.66.IP)
- # [17:28] <@smaug> RyanVM|sheriffduty: tree is about to be reopened soon?
- # [17:29] * Joins: dveditz (dveditz@moz-t5rdci.ca.comcast.net)
- # [17:29] * killer sets mode: +o dveditz
- # [17:30] * Quits: dropkick (dropkick@moz-vqmb12.res.rr.com) (Quit: leaving)
- # [17:30] * jlund|afk is now known as jlund
- # [17:30] * KWierso|afk is now known as KWierso
- # [17:30] * philor is now known as philor|away
- # [17:30] * Quits: jesup (chatzilla@moz-15n93u.fios.verizon.net) (Ping timeout: 121 seconds)
- # [17:30] * Quits: squeakytoy (squeakytoy@moz-i4mle1.netset.se) (Quit: Leaving)
- # [17:31] * hwine-ooo is now known as hwine
- # [17:32] * hwine is now known as hwine|mtg
- # [17:33] * Joins: ahunt (ahunt@moz-hq8kb0.cam.ac.uk)
- # [17:33] * Joins: sydpolk (sydpolk@moz-9b7m5a.austtx.sbcglobal.net)
- # [17:33] * Joins: jesup (chatzilla@moz-15n93u.fios.verizon.net)
- # [17:34] * Joins: gsvelto (gsvelto@moz-4p2810.clienti.tiscali.it)
- # [17:34] <RyanVM|sheriffduty> smaug: dunno
- # [17:34] <RyanVM|sheriffduty> mconley: ping
- # [17:35] <mconley> RyanVM|sheriffduty: pong
- # [17:35] * coop|buildduty is now known as coop|mtg
- # [17:35] * Joins: dropkick (dropkick@moz-vqmb12.res.rr.com)
- # [17:35] <RyanVM|sheriffduty> mconley: doing inbound cleanup right now and seeing multiple IPC/Nuwa asserts/crashes along these lines - https://treeherder.mozilla.org/logviewer.html#?job_id=7077151&repo=mozilla-inbound
- # [17:36] <RyanVM|sheriffduty> mconley: appear to have started after bug 1066812 landed
- # [17:36] <mconley> looking
- # [17:37] * Quits: mahdi (mahdi@moz-pam.dis.244.151.IP) (Ping timeout: 121 seconds)
- # [17:37] <mhoye> smaug: if you close Nightly and then open it by clicking a URL in another application, that URL doesn't open.
- # [17:37] <mhoye> smaug: hasn't for me in months.
- # [17:38] * Quits: ManikM (quassel@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [17:38] * Joins: Manny (quassel@moz-bgt.6kh.139.14.IP)
- # [17:38] * Joins: aklotz (Thunderbird@moz-1jtcvi.cg.shawcable.net)
- # [17:38] <hub> mhoye: which platform?
- # [17:38] * Quits: jib (Jan-Ivar@moz-85u316.dyn.optonline.net) (Client exited)
- # [17:38] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [17:38] * Joins: kepta (kepta@moz-bgt.6kh.139.14.IP)
- # [17:38] <@smaug> mhoye: bug filed? regression window searched?
- # [17:39] <mhoye> hub: I'm on OSX, I've been reported the problem on LInux.
- # [17:39] <mhoye> smaug: last I mentioned it, I was told it known and filed.
- # [17:39] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [17:39] * catlee is now known as catlee-mtg
- # [17:41] <hub> mhoye: On Linux there is this https://bugzilla.mozilla.org/show_bug.cgi?id=1106167
- # [17:41] * Joins: kgrandon (Adium@moz-6m3528.ca.comcast.net)
- # [17:41] <hub> mhoye: not sure if that's your specific case.
- # [17:41] <RyanVM|sheriffduty> mconley: https://treeherder.mozilla.org/logviewer.html#?job_id=7096274&repo=mozilla-inbound on Windows looks related too
- # [17:41] <hub> mhoye: I haven't seen it on Mac albeit I haven't used Nighly on Mac for a couple of weeks
- # [17:41] <RyanVM|sheriffduty> mconley: I'm going to backout
- # [17:41] <mconley> RyanVM|sheriffduty: I'm skeptical that my patch is the cause for these...
- # [17:41] * davidb is now known as davidb|afk
- # [17:42] <mconley> RyanVM|sheriffduty: how frequent are they?
- # [17:42] * mcote is now known as mcote|lunch
- # [17:42] <RyanVM|sheriffduty> mconley: every few pushes from the looks of it
- # [17:42] <mconley> like, if we back out, how long do you think it will take us to determine if my patch was the cause?
- # [17:42] <mconley> ok
- # [17:43] <mconley> RyanVM|sheriffduty: let's do the back-out and see if it clears up.
- # [17:43] * mconley shakes fist
- # [17:43] <mconley> bug 1106167 is my nemesis. :/
- # [17:43] <mconley> it looked soooooo simple
- # [17:43] * Quits: jdm (jdm@moz-ilbt2e.cable.teksavvy.com) (Quit: )
- # [17:43] * Parts: freddyb (freddyb@moz-dkjr1g.scl3.mozilla.com)
- # [17:43] <mhoye> good first rabbit hole
- # [17:43] * Joins: wlach (wlach@moz-2gbp48.ckpj.s0pt.0450.2001.IP)
- # [17:43] * Joins: hunboy_ (hunboy@moz-2c6.hsl.120.79.IP)
- # [17:44] <mconley> er
- # [17:44] <mconley> I mean, bug 1066812
- # [17:44] * @gavin was about to ask
- # [17:44] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [17:44] <RyanVM|sheriffduty> mconley: https://treeherder.mozilla.org/logviewer.html#?job_id=7084857&repo=mozilla-inbound
- # [17:45] <RyanVM|sheriffduty> IPC error code, erm
- # [17:45] <RyanVM|sheriffduty> hrm
- # [17:45] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [17:45] * darkowlzz is now known as darkowlzz|afk
- # [17:45] * darkowlzz|afk is now known as darkowlzz
- # [17:46] * Quits: hunboy (hunboy@moz-t7r81e.pool.invitel.hu) (Ping timeout: 121 seconds)
- # [17:46] <RyanVM|sheriffduty> oh wait, the windows ones are probably bug 1136375
- # [17:46] * hunboy_ is now known as hunboy
- # [17:46] <RyanVM|sheriffduty> *sigh* too much broken IPC crap these days
- # [17:47] <jimm> RyanVM|sheriffduty: that one looks like bug 1132874
- # [17:47] <RyanVM|sheriffduty> jimm: copy/paste fail
- # [17:47] * Quits: gsvelto (gsvelto@moz-4p2810.clienti.tiscali.it) (A TLS packet with unexpected length was received.)
- # [17:47] * Quits: Rik (rik@moz-6v5.3nd.202.89.IP) (A TLS packet with unexpected length was received.)
- # [17:47] * RyanVM|sheriffduty reiterates his "too much IPC crap lately" comment
- # [17:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/eddccda55b1a - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [17:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/98417f431cf3 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [17:48] * Fallen is now known as Fallen|away
- # [17:48] * Joins: givanica (Thunderbird@moz-oj0.83i.26.188.IP)
- # [17:49] * Quits: janv (varga@moz-vt137j.dynamic.orange.sk) (Quit: This computer has gone to sleep)
- # [17:49] <mconley> RyanVM|sheriffduty: so what's the call? Which of the oranges are you thinking can be pinned onto bug 1066812?
- # [17:50] <RyanVM|sheriffduty> mconley: https://treeherder.mozilla.org/logviewer.html#?job_id=7077151&repo=mozilla-inbound https://treeherder.mozilla.org/logviewer.html#?job_id=7081644&repo=mozilla-inbound https://treeherder.mozilla.org/logviewer.html#?job_id=7090145&repo=mozilla-inbound https://treeherder.mozilla.org/logviewer.html#?job_id=7095719&repo=mozilla-inbound
- # [17:51] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [17:52] <mconley> RyanVM|sheriffduty: I'm skeptical, but let's try the backout and see if it goes away.
- # [17:53] <RyanVM|sheriffduty> mconley: other suggestions welcome
- # [17:53] * Quits: jrmuizel (jrmuizel@moz-h359kj.cable.rogers.com) (Connection closed)
- # [17:53] * RyanVM|sheriffduty doesn't see any other vaguely-related patches from around then
- # [17:53] <mconley> looking...
- # [17:53] <mhoye> apres ryanvm, le deluge.
- # [17:54] <mconley> ennui
- # [17:54] <RyanVM|sheriffduty> mconley: useless assertion stacks don't help
- # [17:54] * Joins: ckerschb (ckerschb@moz-klhelu.ujol.1ibb.0101.2620.IP)
- # [17:54] * whimboo is now known as whimboo|afk
- # [17:55] * Joins: Mossop (dtownsend@moz-lf113l.fios.verizon.net)
- # [17:55] * darkowlzz is now known as darkowlzz|afk
- # [17:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/6f10fddcfaf4 - Kartikaya Gupta - Bug 1092128 - Ensure the tests for touch action disabled actually disable touch action. r=botond
- # [17:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/0f08b0a85a78 - Kartikaya Gupta - Bug 1092128 - Ensure that when touch-action is enabled the gtests always provide default touch behaviours where expected. r=botond
- # [17:56] <RyanVM|sheriffduty> mconley: I kinda wonder about https://hg.mozilla.org/integration/mozilla-inbound/rev/3148c577bfd9 otherwise
- # [17:56] * Quits: tzimmermann (tzimmermann@moz-7qv78b.pools.vodafone-ip.de) (Quit: Ex-Chat)
- # [17:57] <RyanVM|sheriffduty> these chunks "only" take ~90min to run, so retriggers will tell us in no time :rolleyes:
- # [17:57] * Joins: eihrul (eihrul@moz-h0nmp2.lv.cox.net)
- # [17:57] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [17:59] * Joins: Zer8 (bzlandfill@moz-a9r6uc.nine.ch)
- # [17:59] <mconley> RyanVM|sheriffduty: ok, looking at these more closely, I'm starting to sway. It's probably my patch.
- # [17:59] * Joins: ProgramFOX (ProgramFOX@moz-rgkooi.isp.belgacom.be)
- # [17:59] <mconley> (╯° °)╯︵ ┻━┻
- # [17:59] <RyanVM|sheriffduty> that makes me feel better (seriously)
- # [18:00] <RyanVM|sheriffduty> because I seriously have NFI otherwise
- # [18:00] <mconley> RyanVM|sheriffduty: would you like me to do the honours?
- # [18:00] <mconley> or would you like to back it out?
- # [18:00] <RyanVM|sheriffduty> mconley: I'm going to backout now, and I'll also retrigger jobs before and after the original push landed
- # [18:00] * mconley feels ennui
- # [18:00] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
- # [18:00] * Quits: bbondy_ (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
- # [18:00] <mconley> RyanVM|sheriffduty: sounds good. Thanks. :)
- # [18:01] <Zer8> hey guys, not sure if this is the right place, but I'm looking for a release timeline for a mozilla patch (https://hg.mozilla.org/integration/mozilla-inbound/rev/724f0a71d621)
- # [18:01] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d8c4ac35b349 - Ryan VanderMeulen - Backed out changeset 3e9cc0ba5dfb (bug 1066812) for suspicion of causing B2G Nuwa mochitest crashes on a CLOSED TREE.
- # [18:02] <RyanVM|sheriffduty> Zer8: the bug has a target milestone of mozilla37, so ~6wks from now
- # [18:02] <RyanVM|sheriffduty> you can download a current beta build to try it out otherwise
- # [18:02] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [18:03] <Zer8> RyanVM|sheriffduty: awesome, that'll make my life a whole lot better if it goes out before this summer :)
- # [18:03] <Zer8> ty
- # [18:03] <RyanVM|sheriffduty> Zer8: np :)
- # [18:03] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [18:03] <RyanVM|sheriffduty> Zer8: if you're going to be using it heavily, definitely try out a beta build now :)
- # [18:03] <Zer8> may I ask how you check the milestone? really unfamiliar with mozilla flow
- # [18:03] <RyanVM|sheriffduty> better to get early feedback before release
- # [18:03] <RyanVM|sheriffduty> it's on the bug
- # [18:03] * Fallen|away is now known as Fallen
- # [18:03] <RyanVM|sheriffduty> Target Milestone field
- # [18:04] * jimm is now known as jimm-mtg
- # [18:04] <RyanVM|sheriffduty> i.e. https://bugzilla.mozilla.org/show_bug.cgi?id=792831
- # [18:04] <Zer8> well it's just support for compression over websocket, not much to test
- # [18:04] * Joins: m_gol (m_gol@moz-f1mofo.dynamic.chello.pl)
- # [18:04] * Quits: VarCat (VarCat@moz-ohb.65e.79.82.IP) (Connection closed)
- # [18:05] <Zer8> ohh yeah missed the milestone thing, thanks!
- # [18:05] <Zer8> and i'll install it and give it a shot then
- # [18:05] <RyanVM|sheriffduty> Zer8: sounds good, thanks :)
- # [18:06] <RyanVM|sheriffduty> mconley: backout pushed and retriggers running
- # [18:06] * Quits: rbarnes (rbarnes@moz-bg9.tia.177.128.IP) (A TLS packet with unexpected length was received.)
- # [18:06] * Joins: sabbir_alam_ufo (sabbir_alam@moz-9la.s0r.225.103.IP)
- # [18:07] * Quits: sabbir_alam_ufo (sabbir_alam@moz-9la.s0r.225.103.IP) (Connection closed)
- # [18:08] * Joins: fabrice (fabrice@moz-plhhcv.ujol.1ibb.0101.2620.IP)
- # [18:08] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [18:08] * Quits: aben (aben@moz-opc.ucc.204.142.IP) (Connection closed)
- # [18:08] * darkowlzz|afk is now known as darkowlzz
- # [18:08] * Quits: Zer8 (bzlandfill@moz-a9r6uc.nine.ch) (Quit: CGI:IRC (EOF))
- # [18:08] * Quits: kepta (kepta@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [18:09] * Joins: aben (aben@moz-opc.ucc.204.142.IP)
- # [18:09] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [18:09] * Quits: avp (uid41039@moz-lkje7k.brockwell.irccloud.com) (Quit: Connection closed for inactivity)
- # [18:09] * Parts: dropkick (dropkick@moz-vqmb12.res.rr.com)
- # [18:09] * Joins: loveless (loveless@moz-ot5.t7p.56.172.IP)
- # [18:10] * bc is now known as bc|lunch
- # [18:12] * Joins: Jesse (jruderman@moz-pqc1f5.ca.comcast.net)
- # [18:12] * Joins: kepta (kepta@moz-bgt.6kh.139.14.IP)
- # [18:13] * davidb|afk is now known as davidb
- # [18:13] * lth is now known as lth|away
- # [18:13] * Joins: Jerry_Mac (hshih@moz-drv154.kbronet.com.tw)
- # [18:14] * Joins: rbarnes (rbarnes@moz-bg9.tia.177.128.IP)
- # [18:15] * Quits: jviereck (Adium@moz-qm33tu.ethz.ch) (Quit: Leaving.)
- # [18:15] * Quits: luisalonsocn (luisalonsoc@moz-n0u.ur6.42.190.IP) (Ping timeout: 121 seconds)
- # [18:16] * Quits: kapy_ (kapy@moz-e24.ba9.68.182.IP) (Quit: )
- # [18:16] * Joins: hurley (hurley@moz-ikopc1.ip6.sonic.net)
- # [18:16] * BenWa is now known as BenWa|email
- # [18:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/8820ae54c165 - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
- # [18:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/ccfb18272e84 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [18:19] * Joins: Jackneill (Jackneill@moz-ieac4j.pool.digikabel.hu)
- # [18:19] * Quits: @dveditz (dveditz@moz-t5rdci.ca.comcast.net) (Client exited)
- # [18:20] <RyanVM|sheriffduty> kats: please look at bug 1137952 ASAP
- # [18:20] <RyanVM|sheriffduty> it's extremely frequent
- # [18:22] * davidb is now known as davidb|afk
- # [18:23] * Joins: catalinb (catalin@moz-lg1.mgs.25.188.IP)
- # [18:23] * ahal is now known as ahal|lunch
- # [18:25] * kats looks
- # [18:25] <RyanVM|sheriffduty> kats: conveniently failing on the platform we don't test on b-i
- # [18:25] <RyanVM|sheriffduty> a patch very inconveniently pushed to b-i
- # [18:26] * Quits: yliao (yliao@moz-fr0527.dynamic.hinet.net) (Connection closed)
- # [18:26] <kats> the code should only be getting exercised on b2g/android
- # [18:26] * AutomatedTester is now known as AutomatedTester|AFK
- # [18:27] * Quits: &dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [18:27] <RyanVM|sheriffduty> kats: https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&filter-searchStr=Rev5 MacOSX Mountain Lion 10.8 mozilla-central opt test mochitest-2
- # [18:28] <RyanVM|sheriffduty> quite conclusively points at the b2g-inbound merge
- # [18:28] * Joins: mt_ (mt@moz-ub3ome.ujol.1ibb.0101.2620.IP)
- # [18:28] <RyanVM|sheriffduty> if you see something else there that's more damning than yours, I'm all ears
- # [18:28] * Quits: mt_ (mt@moz-ub3ome.ujol.1ibb.0101.2620.IP) (Quit: Leaving.)
- # [18:29] * Joins: jviereck (Adium@moz-427efu.97ug.g469.067c.2001.IP)
- # [18:29] * Joins: mt_ (mt@moz-pi4qmc.ujol.1ibb.0101.2620.IP)
- # [18:29] * coop|mtg is now known as coop|lunch
- # [18:29] * Quits: bnicholson (bnicholson@moz-orcqi2.ca.comcast.net) (Quit: This computer has gone to sleep)
- # [18:30] * flod is now known as flod|afk
- # [18:30] * Quits: hub (hub@moz-njdhaa.lmuk.1rfi.0450.2001.IP) (Ping timeout: 121 seconds)
- # [18:30] * lmandel is now known as lmandel_afk
- # [18:30] * Joins: jimb (user@moz-09a.i8g.126.207.IP)
- # [18:31] <kats> RyanVM|sheriffduty: have you done a try push with my patches backed out?
- # [18:31] * Quits: stormi (samuel@moz-t5b.q89.218.46.IP) (Quit: Konversation terminated!)
- # [18:32] <RyanVM|sheriffduty> kats: no, I'm still dealing with the other pile of mess from the weekend
- # [18:32] <RyanVM|sheriffduty> did you look at the link?
- # [18:32] <kats> RyanVM|sheriffduty: yes i looked at the link
- # [18:32] <RyanVM|sheriffduty> from 0% to ~80% on a b-i merge
- # [18:32] * lmandel_afk is now known as lmandel
- # [18:32] * hwine|mtg is now known as hwine
- # [18:32] <RyanVM|sheriffduty> yours is the only relevant patch in that merge
- # [18:32] * Quits: ckitching (ckitching@moz-cbggqe.cable.virginm.net) (A TLS packet with unexpected length was received.)
- # [18:33] * Quits: kepta (kepta@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [18:33] <kats> i guess i can't really dispute that
- # [18:34] * jmaher is now known as jmaher|afk
- # [18:34] * pbrosset is now known as pbrosset|afk
- # [18:35] <RyanVM|sheriffduty> kats: also convenient, even if you had run this on Try, 10.8 doesn't run by default there either
- # [18:35] <RyanVM|sheriffduty> however, had this been pushed to inbound...
- # [18:35] <kats> RyanVM|sheriffduty: hindsight is 20/20. there was no reason to think this patch would affect OS X at all
- # [18:36] <RyanVM|sheriffduty> gfx patches should always land on inbound
- # [18:36] <RyanVM|sheriffduty> if for no other reason than merge conflicts
- # [18:36] * davidb|afk is now known as davidb
- # [18:36] * Joins: ehugg (ehugg@moz-ckn.043.243.216.IP)
- # [18:37] <mconley> RyanVM|sheriffduty: cool, thanks
- # [18:37] * Joins: jib (Jan-Ivar@moz-85u316.dyn.optonline.net)
- # [18:38] * Quits: pnkfelix (pnkfelix@moz-6v5.3nd.202.89.IP) (Quit: rcirc on GNU Emacs 24.3.92.1)
- # [18:38] * Quits: fabrice (fabrice@moz-plhhcv.ujol.1ibb.0101.2620.IP) (Ping timeout: 121 seconds)
- # [18:38] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ec45286064aa - Ryan VanderMeulen - Backed out changesets ddf965a90c07 and 305e676779f8 (bug 1137203) for being the likely cause of bug 1137952.
- # [18:38] * terrence-afk is now known as terrence
- # [18:39] * Joins: mwobensmith (mwobensmith@moz-9kk51h.2rkg.9kg1.0101.2620.IP)
- # [18:39] * Quits: nical (nical@moz-4od2qj.2500.1rfi.0450.2001.IP) (Client exited)
- # [18:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/e4899c4f1fb2 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [18:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/2f9d93be3cc0 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [18:40] * Joins: secretro_ (secretrobot@moz-i5m.05u.207.66.IP)
- # [18:40] * sheppy-offline is now known as sheppy
- # [18:40] * Joins: ashughes (uid34327@moz-ckmc47.charlton.irccloud.com)
- # [18:40] * catlee-mtg is now known as catlee
- # [18:41] * Joins: Neil (neil@moz-ohri1d.in-addr.btopenworld.com)
- # [18:41] * Quits: jib (Jan-Ivar@moz-85u316.dyn.optonline.net) (Client exited)
- # [18:41] * Joins: jib (Jan-Ivar@moz-85u316.dyn.optonline.net)
- # [18:41] * mkohler is now known as mkohler|afk
- # [18:42] * Joins: bnicholson (bnicholson@moz-cfhap5.mtv2.mozilla.com)
- # [18:42] * catlee is now known as catlee-mtg
- # [18:42] * Quits: NeilAway (neil@moz-qc1jfo.virginmediabusiness.co.uk) (Ping timeout: 121 seconds)
- # [18:42] * Neil is now known as NeilAway
- # [18:43] * Joins: matthewhill (matthewhill@moz-fqo.n37.205.137.IP)
- # [18:43] * whimboo|afk is now known as whimboo
- # [18:44] * Quits: garvank (Garvan@moz-p18v30.dsl.teksavvy.com) (Connection closed)
- # [18:44] * Joins: garvank (Garvan@moz-p18v30.dsl.teksavvy.com)
- # [18:45] * Joins: sw (chatzilla@moz-tmhigl.range86-129.btcentralplus.com)
- # [18:45] * Quits: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
- # [18:45] * Joins: ProgramFOX_ (ProgramFOX@moz-rgkooi.isp.belgacom.be)
- # [18:45] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [18:46] * Quits: flaviu (Instantbird@moz-662.esi.231.62.IP) (Connection closed)
- # [18:46] <sw> crash winEmbed, truck. mLatestTransactionId = mTransactionIdAllocator->GetTransactionId(); in ClientLayerManager::ForwardTransaction, [mozilla]\gfx\layers\client\ClientLayerManager.cpp
- # [18:46] * Fallen is now known as Fallen|away
- # [18:46] <sw> null mTransactionIdAllocator
- # [18:46] * Joins: mccr8 (mccr8@moz-qjbkeh.mtv2.mozilla.com)
- # [18:46] * philor|away is now known as philor
- # [18:46] * Quits: ProgramFOX (ProgramFOX@moz-rgkooi.isp.belgacom.be) (Ping timeout: 121 seconds)
- # [18:46] * ProgramFOX_ is now known as ProgramFOX
- # [18:46] <sw> product/component in bugzilla ?
- # [18:46] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [18:47] * Quits: vingtetun_ (vnicolas@moz-vsd42h.lmuk.1rfi.0450.2001.IP) (Ping timeout: 121 seconds)
- # [18:47] <KaiRo> sw: if it's in gfx/layers, I'd guess at Core > GFX: Layers
- # [18:48] <KaiRo> or just GFX
- # [18:48] <RyanVM|sheriffduty> ttaubert: so I can't help but think that the insano-high number of DOMWINDOWs is contributing to the recent spate of tabview timeouts we're seeing
- # [18:48] <sw> thanks. from a quick step through, its the XRE init stuff missing a step done in ff, so not necessarily a gfx issue.
- # [18:49] <KaiRo> sw: er, sorry, s/GFX/Graphics/
- # [18:49] * Quits: ehugg (ehugg@moz-ckn.043.243.216.IP) (Client exited)
- # [18:49] * Joins: qDot (qdot@moz-rl6ai4.typefuck.com)
- # [18:49] <RyanVM|sheriffduty> ttaubert: particularly scary when you factor in that mochitest-bc has run-by-dir enabled now, so all of that accumulation is occurring in just the one test directory
- # [18:49] <RyanVM|sheriffduty> ttaubert: i mean, 500+?!?! https://treeherder.mozilla.org/logviewer.html#?job_id=7075364&repo=mozilla-inbound
- # [18:49] <KaiRo> sw: oh, so it's winEmbed vs. Firefox?
- # [18:49] * Joins: bwc (Adium@moz-5npu33.ujol.1ibb.0101.2620.IP)
- # [18:50] <sw> KaiRo: wouldn't say vs, more an oversight but yeah.
- # [18:50] * Quits: mayhemer (Miranda@moz-0o5na8.joqu.pdma.1028.2a00.IP) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
- # [18:51] <sw> I so fail at bugzilla. got core, then component no graphics, but I've seen it before.
- # [18:51] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [18:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/58044df73cb0 - Gregory Szorc - Bug 1132771 - API to return moz.build files relevant for a set of paths; r=glandium
- # [18:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/7f95e5b32756 - Gregory Szorc - Bug 1132771 - Implement strongly typed named tuples; r=glandium
- # [18:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/d5c17696d9d5 - Gregory Szorc - Bug 1132771 - Pass special types down to sandboxes via metadata; r=glandium
- # [18:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/3a6dbe970727 - Gregory Szorc - Bug 1132771 - Support reading relevant moz.build files; r=glandium
- # [18:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/a6b72bee55a8 - Gregory Szorc - Bug 1132771 - Add a test for reading all moz.build files in filesystem traversal mode; r=glandium
- # [18:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/5a1306a14a8c - Gregory Szorc - Bug 1132771 - Support and test for reading without a config object; r=glandium
- # [18:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/c5a0d6e73532 - Gregory Szorc - Bug 1132771 - Add Files to moz.build with ability to define Bugzilla component; r=glandium
- # [18:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/02feef95cffb - Gregory Szorc - Bug 1132771 - Define some bug components; r=glandium
- # [18:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/f19c915183c2 - Gregory Szorc - Bug 1132771 - Implement file-info mach command; r=glandium
- # [18:52] <Ms2ger> Uh-oh, gps's back
- # [18:52] <sw> oh, I see. you have to submit, then select subcomponent. here for anyone interested : https://bugzilla.mozilla.org/show_bug.cgi?id=1138536
- # [18:52] * flod|afk is now known as flod
- # [18:52] <KaiRo> sw: probably useful to match bugs in hg.mozilla.org/mozilla-central/filelog/default/embedding/tests/winEmbed/winEmbed.cpp - maybe Toolkit > XULRunner or so?
- # [18:53] * Quits: Jerry_Mac (hshih@moz-drv154.kbronet.com.tw) (Quit: Leaving)
- # [18:53] <gps> Ms2ger: damn right
- # [18:53] <Mossop> RyanVM|sheriffduty: Thank you for landing bug 1129567
- # [18:53] * Joins: fabrice (fabrice@moz-sr75tb.mh2d.1ibb.0101.2620.IP)
- # [18:53] <KaiRo> not that winEmbed gets a lot of love overall
- # [18:53] * Joins: Neil (neil@moz-qc1jfo.virginmediabusiness.co.uk)
- # [18:53] <RyanVM|sheriffduty> gps: "can't break inbound, so I'll just break fx-team instead"
- # [18:54] <sw> winEmbed is awesome. I love it even if everyone else is less enthusiastic :)
- # [18:54] <sw> gtkEmbed was awesome too, but lets not go there today.
- # [18:54] * Quits: NeilAway (neil@moz-ohri1d.in-addr.btopenworld.com) (Ping timeout: 121 seconds)
- # [18:54] * Neil is now known as NeilAway
- # [18:54] * Joins: mt (mt@moz-bligus.ujol.1ibb.0101.2620.IP)
- # [18:54] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/b0610daf9f4b - Matt Woodrow - Bug 1136984 - Always call DrainComplete in response to Drain, even if it wasn't called on the active decoder. r=cpearce a=lmandel
- # [18:54] <gps> RyanVM|sheriffduty: have faith in me
- # [18:54] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/faca7520c946 - Matt Woodrow - Bug 1136984 - Use correct units for comparing timestamps in TrackBuffer::RangeRemoval. r=jya a=lmandel
- # [18:55] <gps> RyanVM|sheriffduty: one-liner to disable the failing test
- # [18:55] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [18:55] <RyanVM|sheriffduty> gps: given that I've been cleaning up messes from over the weekend for ~3hr now, my faith is pretty low
- # [18:55] <sw> winEmbed required because moz has no equivalent of chromium CEF3 at present. it does the job. usually.
- # [18:56] * Quits: m_gol (m_gol@moz-f1mofo.dynamic.chello.pl) (Connection closed)
- # [18:56] * Joins: m_gol (m_gol@moz-f1mofo.dynamic.chello.pl)
- # [18:56] <RyanVM|sheriffduty> mccr8: the ni? in bug 1137765 is semi-urgent
- # [18:56] <gps> RyanVM|sheriffduty: well, i'll be around for 6+ hours, so there will be plenty of time for me to clean up my own mess if this somehow breaks
- # [18:56] <RyanVM|sheriffduty> mccr8: because that specific bug is a proxy for more widespread issues
- # [18:56] * Joins: rstrong (rstrong@moz-oi0h6m.dynamic.fusionbroadband.com)
- # [18:56] <mccr8> RyanVM|sheriffduty: ok
- # [18:56] * hwine is now known as hwine-coffee
- # [18:57] <RyanVM|sheriffduty> mccr8: relevant to that request is ^ to ttaubert above
- # [18:58] * Joins: twash (twash@moz-ongp4h.hr.cox.net)
- # [18:58] <philor> RyanVM|sheriffduty: but we don't do spidermonkey builds on fx-team, so he won't break them there!
- # [18:58] <RyanVM|sheriffduty> \m/
- # [18:58] <RyanVM|sheriffduty> What Could Possibly Go Wrong
- # [18:59] * Quits: botond (botond@moz-qi3vv4.ckpj.s0pt.0450.2001.IP) (Quit: Konversation terminated!)
- # [18:59] * Joins: botond (botond@moz-qi3vv4.ckpj.s0pt.0450.2001.IP)
- # [18:59] <gps> i thought all jobs were uniform across all integration trees
- # [19:00] <sw> does winEmbed actually compile in standard builds anymore ? got my own project file so can work around that, but should get minimal testing imo, even if it is only compile, load a page, done.
- # [19:00] * Quits: matthewhill (matthewhill@moz-fqo.n37.205.137.IP) (Quit: Be back later ...)
- # [19:00] <RyanVM|sheriffduty> mccr8: for more context, see |https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&filter-searchStr=Ubuntu debug mochitest chrome| and add more revisions
- # [19:01] <Mossop> RyanVM|sheriffduty: mochitest-jetpack tests are currently hidden on try, does that mean they will also be hidden on all other branches when they show up?
- # [19:01] <RyanVM|sheriffduty> Mossop: "yes"
- # [19:01] * Quits: rbarnes (rbarnes@moz-bg9.tia.177.128.IP) (A TLS packet with unexpected length was received.)
- # [19:01] <RyanVM|sheriffduty> i.e. they should be, but they won't, but they will be
- # [19:01] * Joins: mixedpuppy (mixedpuppy@moz-l7i1ug.dsl-w.verizon.net)
- # [19:01] * mgerva is now known as mgerva|afk
- # [19:02] <Mossop> RyanVM|sheriffduty: Does that answer mean I don't have to do anything further? That's all I care about ;)
- # [19:02] <RyanVM|sheriffduty> yes
- # [19:02] <RyanVM|sheriffduty> it means TH job hiding is crappy, but we'll take care of it
- # [19:03] * Quits: jviereck (Adium@moz-427efu.97ug.g469.067c.2001.IP) (Quit: Leaving.)
- # [19:03] <Mossop> RyanVM|sheriffduty: Ok. Opt tests might be green already in which case I'll be wanting to talk about unhiding those. Debug are certainly red at the moment though
- # [19:03] * Joins: rbarnes (rbarnes@moz-bg9.tia.177.128.IP)
- # [19:04] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/5a7e83327249 - Matt Woodrow - Bug 1136984 - Always call DrainComplete in response to Drain, even if it wasn't called on the active decoder. r=cpearce a=lmandel
- # [19:04] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/09b2c7fed10f - Matt Woodrow - Bug 1136984 - Use correct units for comparing timestamps in TrackBuffer::RangeRemoval. r=jya a=lmandel
- # [19:05] * Joins: ehugg (ehugg@moz-ue227a.mycingular.net)
- # [19:05] * Quits: garvank (Garvan@moz-p18v30.dsl.teksavvy.com) (Connection closed)
- # [19:05] * Quits: coop|lunch (coop@moz-rmfa2q.cpe.pppoe.ca) (Client exited)
- # [19:05] * Joins: garvank (Garvan@moz-p18v30.dsl.teksavvy.com)
- # [19:06] * Joins: yzen_ (yzen@moz-i5m.05u.207.66.IP)
- # [19:06] <RyanVM|sheriffduty> Mossop: ok, thanks for the heads-up
- # [19:06] * Quits: mccr8 (mccr8@moz-qjbkeh.mtv2.mozilla.com) (Quit: )
- # [19:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/58414e20fa28 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [19:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/62703a069c74 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [19:07] * Joins: mccr8 (mccr8@moz-qjbkeh.mtv2.mozilla.com)
- # [19:07] * catlee-mtg is now known as catlee
- # [19:07] * hwine-coffee is now known as hwine
- # [19:08] <philor> gps: not even close, really, since b-i doesn't do 10.8 or WinXP, and there's probably funkiness about b2g device builds (beyond their basic funkiness)
- # [19:08] * Quits: yzen (yzen@moz-i5m.05u.207.66.IP) (Ping timeout: 121 seconds)
- # [19:08] * Quits: davidb (davidb@moz-7f6lel.dsl.bell.ca) (Quit: Blah blah blah)
- # [19:08] * Joins: juanb (jbecerra@moz-cfhap5.mtv2.mozilla.com)
- # [19:09] * Quits: m_gol (m_gol@moz-f1mofo.dynamic.chello.pl) (Quit: Linkinus - http://linkinus.com)
- # [19:10] * whimboo is now known as whimboo|afk
- # [19:10] * Joins: davidb (davidb@moz-7f6lel.dsl.bell.ca)
- # [19:10] * bc|lunch is now known as bc
- # [19:11] * Quits: yzen_ (yzen@moz-i5m.05u.207.66.IP) (Ping timeout: 121 seconds)
- # [19:11] * Joins: chmanchester (Chris@moz-f8bo07.2rkg.9kg1.0101.2620.IP)
- # [19:12] * Joins: matthewhill (matthewhill@moz-crm.n37.205.137.IP)
- # [19:13] * Quits: secretro_ (secretrobot@moz-i5m.05u.207.66.IP) (Connection closed)
- # [19:13] * Joins: secretrobotron (secretrobot@moz-gr9t2a.ckpj.s0pt.0450.2001.IP)
- # [19:13] <rillian> lmandel: any idea how close we are to beta2 cutoff?
- # [19:13] * bobowen is now known as bobowen|afk
- # [19:14] * Quits: jacek (jacek@moz-hbt3j4.psi.wroc.pl) (Quit: Konversation terminated!)
- # [19:14] <Pike> gps: can you point me to the code that you use to point at upstream revisions in local unified clones? I might want to adapt that to help with bug 1138553, to pick good revisions if I don't have a push to a repo yet
- # [19:15] <lmandel> rillian: RyanVM|sheriffduty will let me know when he's done with uplifts, then we're gtb.
- # [19:15] <lmandel> rillian: Do you have something else for b2?
- # [19:15] <gps> Pike: https://mozilla-version-control-tools.readthedocs.org/en/latest/hgmozilla/firefoxtree.html
- # [19:15] * Joins: autra (autra@moz-3o6134.mcg1.od8l.0e35.2a01.IP)
- # [19:16] <RyanVM|sheriffduty> rillian: if you've got MSE approvals waiting to land, go ahead and push them
- # [19:17] * Quits: matthewhill (matthewhill@moz-crm.n37.205.137.IP) (Quit: Lingo: www.lingoirc.com)
- # [19:19] * Quits: sw (chatzilla@moz-tmhigl.range86-129.btcentralplus.com) (Quit: ChatZilla 0.9.91.1 [Firefox 37.0/20150223185154])
- # [19:19] * bz is now known as bz_away
- # [19:21] * jimm-mtg is now known as jimm-lunch
- # [19:23] * Joins: kepta (kepta@moz-4fn.ann.181.223.IP)
- # [19:23] * Quits: cirocosta (Ciro@moz-t4q.9oh.148.177.IP) (Ping timeout: 121 seconds)
- # [19:23] <sfink> RyanVM|sheriffduty: I just added in bug 1133909, I don't know if you've seen it
- # [19:23] * Joins: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com)
- # [19:24] * Joins: jduell (jduell@moz-ft325v.tukw.qwest.net)
- # [19:26] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
- # [19:26] * Quits: autra (autra@moz-3o6134.mcg1.od8l.0e35.2a01.IP) (Ping timeout: 121 seconds)
- # [19:26] * Quits: jaoo (user@moz-pqtvtd.dynamicIP.rima-tde.net) (Ping timeout: 121 seconds)
- # [19:26] * Quits: kgrandon (Adium@moz-6m3528.ca.comcast.net) (Quit: Leaving.)
- # [19:27] * Joins: handyman (handyman@moz-h6pqf9.ca.comcast.net)
- # [19:27] * Joins: luisalonsocn (luisalonsoc@moz-n0u.ur6.42.190.IP)
- # [19:27] * Joins: dbaron (dbaron@moz-tcuere.2rkg.9kg1.0101.2620.IP)
- # [19:27] * killer sets mode: +ao dbaron dbaron
- # [19:28] * Quits: peterv (peterv@moz-6f8qv3.be.sixxs.net) (Ping timeout: 121 seconds)
- # [19:28] * Joins: francois (francois@moz-cnggv3.fmarier.org)
- # [19:28] * Quits: garvank (Garvan@moz-p18v30.dsl.teksavvy.com) (Connection closed)
- # [19:28] <RyanVM|sheriffduty> mconley: on the "bright" side, retriggers are looking reasonably good for us having picked the right culprit |https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&filter-searchStr=b2g_emulator_vm mozilla-inbound opt test mochitest-5&fromchange=c8645315e566&tochange=928ec762c672|
- # [19:28] * Joins: garvank (Garvan@moz-p18v30.dsl.teksavvy.com)
- # [19:29] <mconley> RyanVM|sheriffduty: yay!
- # [19:29] <RyanVM|sheriffduty> sfink: ok, i'm getting close to done cleaning up inbound, so uplifts are next
- # [19:30] * Joins: peterv (peterv@moz-6f8qv3.be.sixxs.net)
- # [19:30] * Joins: catalinb2 (catalin@moz-sbsup8.residential.rdsnet.ro)
- # [19:31] * Quits: jduell (jduell@moz-ft325v.tukw.qwest.net) (A TLS packet with unexpected length was received.)
- # [19:31] * darkowlzz is now known as darkowlzz|afk
- # [19:32] * Joins: Neil (neil@moz-7uauc5.cable.virginm.net)
- # [19:32] * Quits: Boriss (Boriss@moz-dkeprl.PUBLIC.monkeybrains.net) (Client exited)
- # [19:33] * Quits: catalinb (catalin@moz-lg1.mgs.25.188.IP) (Ping timeout: 121 seconds)
- # [19:34] * ahal|lunch is now known as ahal
- # [19:34] * Joins: florent (Thunderbird@moz-2nrsd5.abo.wanadoo.fr)
- # [19:34] * Quits: rbarnes (rbarnes@moz-bg9.tia.177.128.IP) (A TLS packet with unexpected length was received.)
- # [19:35] * Quits: NeilZZZ (neil@moz-7uauc5.cable.virginm.net) (Ping timeout: 121 seconds)
- # [19:35] * Neil is now known as NeilZZZ
- # [19:35] * Quits: Pike (chatzilla@moz-9opfi8.dip0.t-ipconnect.de) (Quit: ChatZilla 0.9.91.1 [Firefox 35.0.1/20150122214805])
- # [19:36] <rillian> RyanVM|sheriffduty: I've pushed everything I had queued. thanks.
- # [19:36] <rillian> lmandel: ok, thanks cpearce was asking about the EME uplift.
- # [19:37] * Joins: nj (nj@moz-aqd.cam.97.27.IP)
- # [19:37] <RyanVM|sheriffduty> rillian: thank you :)
- # [19:38] * Quits: mastizada (Thunderbird@moz-daq.v53.6.95.IP) (Ping timeout: 121 seconds)
- # [19:38] * Joins: hub (hub@moz-b7evta.abo.wanadoo.fr)
- # [19:38] * Quits: Manny (quassel@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [19:38] * Joins: ManikM (quassel@moz-bgt.6kh.139.14.IP)
- # [19:38] * mcote|lunch is now known as mcote
- # [19:38] * mwargers is now known as mwargers_afk
- # [19:39] * Joins: m_gol (m_gol@moz-f1mofo.dynamic.chello.pl)
- # [19:39] * Joins: Sander (chatzilla@moz-7lv.bfp.133.186.IP)
- # [19:39] * Quits: m_gol (m_gol@moz-f1mofo.dynamic.chello.pl) (Quit: Linkinus - http://linkinus.com)
- # [19:40] * Quits: kepta (kepta@moz-4fn.ann.181.223.IP) (Ping timeout: 121 seconds)
- # [19:40] * Quits: chmanchester (Chris@moz-f8bo07.2rkg.9kg1.0101.2620.IP) (Ping timeout: 121 seconds)
- # [19:40] * darkowlzz|afk is now known as darkowlzz
- # [19:41] * Joins: kgrandon (Adium@moz-b5a8ec.2rkg.9kg1.0101.2620.IP)
- # [19:42] <RyanVM|sheriffduty> mconley: I've got retriggers running post-backout for gaia ui test issues that I suspect may be yours as well - I'll add a note to the bug if that turns out to be true
- # [19:42] * Joins: chmanchester (Chris@moz-f8bo07.2rkg.9kg1.0101.2620.IP)
- # [19:42] <mconley> RyanVM|sheriffduty: cool, thanks
- # [19:42] * Quits: chmanchester (Chris@moz-f8bo07.2rkg.9kg1.0101.2620.IP) (A TLS packet with unexpected length was received.)
- # [19:42] <RyanVM|sheriffduty> mconley: you're not going to like them if they are, though :(
- # [19:42] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [19:42] <mconley> at this point, it seems to be par for the course for this bug
- # [19:42] <mconley> pile 'em on
- # [19:42] <mconley> MORE WEIGHT
- # [19:42] <RyanVM|sheriffduty> heh
- # [19:43] <RyanVM|sheriffduty> mconley: let's just put it this way, I just filed a test harness bug over them too
- # [19:43] * Joins: coop (coop@moz-4pk9in.dsl.teksavvy.com)
- # [19:43] <RyanVM|sheriffduty> i.e. the harness wasn't picking up the crashes, so all we end up getting is ScriptTimeoutExceptions
- # [19:43] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [19:43] <mconley> cripes
- # [19:43] * Joins: chmanchester (Chris@moz-galq50.2rkg.9kg1.0101.2620.IP)
- # [19:44] * Joins: kepta (kepta@moz-4kg.atc.229.223.IP)
- # [19:44] * Quits: jcj (jcj@moz-4rqd80.phnx.qwest.net) (Ping timeout: 121 seconds)
- # [19:44] * nsm is now known as nsm|away
- # [19:45] * Joins: IanN (chatzilla@moz-lnh6qk.cable.virginm.net)
- # [19:45] * Joins: Rik (rik@moz-b4gu6l.9fj5.68v8.0e35.2a01.IP)
- # [19:46] * Joins: dveditz (dveditz@moz-cfhap5.mtv2.mozilla.com)
- # [19:46] * killer sets mode: +o dveditz
- # [19:47] * Joins: jduell (jduell@moz-ft325v.tukw.qwest.net)
- # [19:47] <Ms2ger> gavin, spambots in #build
- # [19:47] <Ms2ger> fox2mike, ^
- # [19:47] <mconley> it's very colourful
- # [19:48] * Joins: rbarnes (rbarnes@moz-bg9.tia.177.128.IP)
- # [19:48] * Quits: rbarnes (rbarnes@moz-bg9.tia.177.128.IP) (A TLS packet with unexpected length was received.)
- # [19:48] * Joins: rbarnes (rbarnes@moz-bg9.tia.177.128.IP)
- # [19:50] * Quits: tonymec (tonymec@moz-mk2.1sn.129.109.IP) (Ping timeout: 121 seconds)
- # [19:50] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [19:51] * Quits: ProgramFOX (ProgramFOX@moz-rgkooi.isp.belgacom.be) (Quit: ChatZilla 0.9.91.1 [Firefox 35.0.1/20150122214805])
- # [19:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/352ebcbf802e - Ahmed Khalil - Bug 1119365 - Implement |mach ide| for mobile/android and IntelliJ/Android Studio. r=nalexander
- # [19:53] * Joins: Gijs (chatzilla@moz-be1.e16.80.5.IP)
- # [19:55] <rstrong> RyanVM|sheriffduty: do you want to land bug 1044443 on release or should I? I'm fine either way
- # [19:55] <RyanVM|sheriffduty> rstrong: if you're ready to push, go for it
- # [19:55] * Joins: jcj (jcj@moz-rca6ll.phnx.qwest.net)
- # [19:56] * Quits: Dexter (Dexter@moz-tkj7su.retail.telecomitalia.it) (Quit: Leaving)
- # [19:57] * Joins: bdahl (bdahl@moz-u3dg2t.sfo1.mozilla.com)
- # [19:58] * Joins: stransky (stransky@moz-2q16pm.broadband18.iol.cz)
- # [19:59] * mattwoodrow|away is now known as mattwoodrow
- # [19:59] * dholbert is now known as dholbert|phone
- # [19:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/7b176084100c - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [19:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/c0c7dae24e6f - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [20:00] * Joins: jdm (jdm@moz-i5m.05u.207.66.IP)
- # [20:01] * Quits: handyman (handyman@moz-h6pqf9.ca.comcast.net) (Connection closed)
- # [20:01] * Quits: reed (reed@tech.monkey) (RecvQ exceeded)
- # [20:01] <mconley> RyanVM|sheriffduty: so, dumb question time - I see the orange here on this push: https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=f37231bfe5f6, and I see it's a crash, and I want the crash report so I can look at the stack... how do I get the crash report? I don't see it attached...
- # [20:01] * Joins: handyman (handyman@moz-h6pqf9.ca.comcast.net)
- # [20:01] * Joins: reed (reed@tech.monkey)
- # [20:01] <RyanVM|sheriffduty> mconley: the stack is in the log
- # [20:02] * Quits: mccr8 (mccr8@moz-qjbkeh.mtv2.mozilla.com) (Connection closed)
- # [20:02] <RyanVM|sheriffduty> 19:16:18 WARNING - PROCESS-CRASH | dom/manifest/test/test_IconsProcessor_src.html | application crashed [@ mozalloc_abort]
- # [20:02] * darkowlzz is now known as darkowlzz|afk
- # [20:02] * Joins: Boriss (Boriss@moz-aq4.h2b.247.173.IP)
- # [20:02] * Joins: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com)
- # [20:02] * Quits: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com) (Connection closed)
- # [20:03] <RyanVM|sheriffduty> mconley: your life will probably be easier if you use the full log too - http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-inbound-emulator/1425087047/mozilla-inbound_ubuntu64_vm-b2g-emulator_test-mochitest-5-bm51-tests1-linux64-build37.txt.gz
- # [20:03] <mconley> RyanVM|sheriffduty: ah, yes, got it - thanks
- # [20:03] * justindarc is now known as justindarc|food
- # [20:04] * jimm-lunch is now known as jimm
- # [20:05] <jesup> RyanVM|sheriffduty: have pehrsons patch for bug 1129263 queued and ready to land (it's checkin-needed), fyi
- # [20:05] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [20:06] <RyanVM|sheriffduty> jesup: ok, doubtful anybody's going to be looking at c-n any time soon anyway
- # [20:07] * Joins: tantek (tantek@moz-u3dg2t.sfo1.mozilla.com)
- # [20:08] * Quits: nj (nj@moz-aqd.cam.97.27.IP) (Quit: WeeChat 1.1.1)
- # [20:08] * Quits: kepta (kepta@moz-4kg.atc.229.223.IP) (A TLS packet with unexpected length was received.)
- # [20:09] * Joins: DaveM (Dave@moz-5i3.51j.125.50.IP)
- # [20:10] * Quits: Caspy7 (chatzilla@moz-qg6.7b1.185.99.IP) (Ping timeout: 121 seconds)
- # [20:10] * Quits: jesup (chatzilla@moz-15n93u.fios.verizon.net) (Ping timeout: 121 seconds)
- # [20:11] * Quits: twash (twash@moz-ongp4h.hr.cox.net) (Quit: Lost terminal)
- # [20:11] * Joins: gcp (gpascutto@moz-1tf935.beqe.9i1r.1812.2a02.IP)
- # [20:11] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [20:12] * Joins: twash (twash@moz-ongp4h.hr.cox.net)
- # [20:12] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [20:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/68472846761f - vivek - Bug 1136699: Temporarily disable swipe to refresh in synced tab landscape mode -r=nalexander.
- # [20:12] * Joins: Zupoman (mistrzmag@moz-qc3.esk.224.91.IP)
- # [20:13] * Joins: kepta (kepta@moz-4kg.atc.229.223.IP)
- # [20:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/d1675b777f95 - Robert Strong - Bug 1137901 - Remove param from refreshUpdateStatus. r=spohl
- # [20:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/ddbeb492edfb - Robert Strong - Bug 1137946 - Disable app update verbose mochitest-chrome logging. r=spohl
- # [20:15] * Joins: jesup (chatzilla@moz-15n93u.fios.verizon.net)
- # [20:15] <@ehsan> loading treeherder logs in e10s is full of sad
- # [20:15] * Joins: bholley (bholley@moz-qpv0dk.ca.comcast.net)
- # [20:16] <bholley> RyanVM|sheriffduty: ping re bug 1138528
- # [20:16] * Quits: mwobensmith (mwobensmith@moz-9kk51h.2rkg.9kg1.0101.2620.IP) (Quit: Leaving.)
- # [20:17] <RyanVM|sheriffduty> bholley: yo
- # [20:17] <bholley> RyanVM|sheriffduty: I assume the urgency there is not super severe, right?
- # [20:17] <RyanVM|sheriffduty> bholley: so far
- # [20:17] <bholley> RyanVM|sheriffduty: The work I'm doing right now is core stability stuff, which may unearth latent bugs
- # [20:18] <RyanVM|sheriffduty> ok
- # [20:18] <bholley> RyanVM|sheriffduty: but it moves us towards a much safer and less racey threading model
- # [20:18] * Joins: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com)
- # [20:19] <RyanVM|sheriffduty> bholley: that sounds good :)
- # [20:19] <bholley> RyanVM|sheriffduty: (this is going to be a multi-month project, FWIW0
- # [20:19] <bholley> )
- # [20:19] * bz_away is now known as bz
- # [20:20] <RyanVM|sheriffduty> bholley: some people get to have all the fun
- # [20:20] * baku is now known as baku|away
- # [20:20] <bholley> RyanVM|sheriffduty: :-)
- # [20:21] * Joins: catalin392 (catalin@moz-ko5.l36.121.86.IP)
- # [20:22] * Quits: catalinb2 (catalin@moz-sbsup8.residential.rdsnet.ro) (Connection closed)
- # [20:23] * Joins: yzen (yzen@moz-ql1r6k.cpe.pppoe.ca)
- # [20:23] * Joins: marco (marco@moz-86s.tjb.238.95.IP)
- # [20:24] * Quits: chmanchester (Chris@moz-galq50.2rkg.9kg1.0101.2620.IP) (A TLS packet with unexpected length was received.)
- # [20:24] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/fa4247a2db1b - Giovanny Andres Gongora Granada - Bug 1126057 - Provide better error when ./mach robocop is run without MOZ_HOST_BIN. r=nalexander
- # [20:25] * Joins: karlt (karl@moz-fma8re.xtra.co.nz)
- # [20:25] * Quits: kepta (kepta@moz-4kg.atc.229.223.IP) (Ping timeout: 121 seconds)
- # [20:25] <gerv> No internal meeting today?
- # [20:25] * Quits: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
- # [20:26] * Quits: Shrooms (Shrooms@moz-j3eu1b.ga.charter.com) (Quit: Quitting for Bacon.)
- # [20:26] * KaiRo hears "stability" and his ears grow... what is bholley working on there?
- # [20:26] <@smaug> gerv: I assume no because of MWC
- # [20:26] <gerv> smaug: OK.
- # [20:26] <@smaug> I don't know, but that was the assumption
- # [20:27] * Joins: Shrooms (Shrooms@moz-j3eu1b.ga.charter.com)
- # [20:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/aebb5e9855dd - Mark Banner - Bug 1131574 - In Loop's tab sharing, make the shared tab follow the active tab. r=mikedeboer
- # [20:28] <mccr8> RyanVM|sheriffduty: are there any other timeouts besides 1137765 that are happening more?
- # [20:29] <RyanVM|sheriffduty> mccr8: lots that aren't filed
- # [20:29] <RyanVM|sheriffduty> mccr8: like I mentioned earlier, better to just look at the recent inbound history using the link I gave you
- # [20:29] <RyanVM|sheriffduty> lots of random tabview ones for instance
- # [20:30] * Quits: kgrandon (Adium@moz-b5a8ec.2rkg.9kg1.0101.2620.IP) (Quit: Leaving.)
- # [20:30] * Joins: kepta (kepta@moz-pnp.esa.202.106.IP)
- # [20:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/26c42369d83a - Margaret Leibovic - Bug 1136716 - Consolidate reader view strings in one .properties file, and make the strings to close reader view consistent. r=bnicholson,Unfocused
- # [20:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/084827e66581 - Margaret Leibovic - Bug 1118487 - Remove double-tap-to-scroll behavior in reader view. r=bnicholson
- # [20:31] <bholley> KaiRo: media code
- # [20:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/e6d8a294f49e - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [20:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/5604e48f0193 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [20:32] <KaiRo> bholley: ah, ok, any specific bugs in terms of stability that I should follow?
- # [20:32] <mccr8> RyanVM|sheriffduty: my patch did make us GC more so if things are on the threshold it could cause a problem
- # [20:32] <mhoye> Mozilla has not been accepted to GSOC this year.
- # [20:32] <bholley> KaiRo: well, there are lots of bugs - I'm basically just refactoring a bunch of stuff to make it less racey
- # [20:32] <mccr8> RyanVM|sheriffduty: like that other timeout, bumping it seems to have made the orange go away
- # [20:33] <bholley> KaiRo: and redesigning the threading model
- # [20:33] <bholley> KaiRo: would you like me to CC you on stuff?
- # [20:33] <mccr8> RyanVM|sheriffduty: the extra GCs are just kind of a transitional thing, but I can try avoiding those if they may be causing a problem.
- # [20:33] <RyanVM|sheriffduty> mccr8: especially given run-by-dir, doesn't 500+ DOMWINDOWs seem insano-high to you?
- # [20:33] <mccr8> RyanVM|sheriffduty: I guess these timeouts are not really consistent enough that a try push with my patch backed out would tell us anything?
- # [20:34] <mccr8> RyanVM|sheriffduty: I looked at once such test locally, and it was just opening 400 windows itself, and none were freed during the test itself, but afterwards.
- # [20:34] <RyanVM|sheriffduty> I think with enough retriggers, we could probably get a good feel for whether backing out helps, yes
- # [20:34] * Joins: billm (billm@moz-ohjta0.ujol.1ibb.0101.2620.IP)
- # [20:34] <RyanVM|sheriffduty> mccr8: holy crap, that's awful
- # [20:34] <mccr8> RyanVM|sheriffduty: so it does seem ridiculous but I don't think that's a regression.
- # [20:34] * bobowen|afk is now known as bobowen
- # [20:34] <mccr8> RyanVM|sheriffduty: but these tests that open so much stuff could be more sensitive to slowdowns from additional GC/CC
- # [20:35] <RyanVM|sheriffduty> yeah, seems plausible
- # [20:35] <RyanVM|sheriffduty> mccr8: I also suspect that the mochitest-dt issues could be as simple as having re-enabled a bunch of known-slow debugger tests
- # [20:35] <RyanVM|sheriffduty> the next reconfig is splitting debug dt into 4 chunks, so hopefully that'll help
- # [20:35] * coop is now known as coop|mtg
- # [20:36] * Joins: nrc (nrc@moz-4bhi2i.xtra.co.nz)
- # [20:37] * abr is now known as abr|mtg
- # [20:37] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/84c98bb4f5c4 - Hannes Verschore - Bug 1130679 - Disable optimization due to fuzzer failures. r=nbp, a=lmandel
- # [20:37] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/5c0c7cd2cc66 - Andy Pusch - Bug 1124884 - Clear search history in Firefox Search after using 'Clear Private Data' in Firefox. r=margaret, a=lmandel
- # [20:38] * Quits: bgrins (bgrins@moz-081ibl.qnor.1u98.0009.2601.IP) (Quit: Leaving.)
- # [20:38] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/5a6ad0eb4437 - Timothy Nikkel - Bug 1134293 - Report the bounds of a tree body as needing component alpha and support disable component alpha in the text it might draw if asked. r=roc, a=lmandel
- # [20:38] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/7cde06012d12 - Timothy Nikkel - Bug 1102896 - Save and restore the subpixel AA settings of the draw target when drawing an inactive layer manager so they don't get clobbered. r=mattwoodrow, a=lmandel
- # [20:38] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/62f149b1cfd7 - Steve Fink - Bug 1133909 - Fix hazards revealed by adding in new GCPointers. r=terrence, a=lmandel
- # [20:38] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/c1b3c8c553e9 - Mike de Boer - Bug 1137141 - Fix for making the Loop contacts tab show and/ or hide when the user logs in or out of FxA. r=Standard8, a=sledru
- # [20:38] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/4b51b9e2c088 - Mike de Boer - Bug 1137141 - Extend Loop toolbarbutton tests to check for correct panel states upon opening. r=Standard8, a=sledru
- # [20:39] <KaiRo> bholley: for stuff that can have a decent impact on stability, I'd like to be CCed, yes
- # [20:39] * Joins: gabor (gabor@moz-tfiocm.net-tv.hu)
- # [20:40] <RyanVM|sheriffduty> mccr8: but yeah, filing individual bugs for all these is pretty impractical :(
- # [20:40] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/c16968de534c - Andrea Marchesini - Bug 1125940 - File should not unlink FileImpl. r=khuey, a=lmandel
- # [20:41] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/191548235ce3 - Matthew Noorenberghe - Bug 1124888 - Record the effect of the saved formSubmitURL on autofilling login forms. r=dolske, a=lmandel
- # [20:41] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/ae07b3862c27 - Hannes Verschore - Bug 1130679 - Disable optimization due to fuzzer failures. r=nbp, a=lmandel
- # [20:41] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/12b0612ba016 - Andy Pusch - Bug 1124884 - Clear search history in Firefox Search after using 'Clear Private Data' in Firefox. r=margaret, a=lmandel
- # [20:41] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/a12ea2668d1c - Timothy Nikkel - Bug 1134293 - Report the bounds of a tree body as needing component alpha and support disable component alpha in the text it might draw if asked. r=roc, a=lmandel
- # [20:41] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/bc3e9b98d90f - Timothy Nikkel - Bug 1102896 - Save and restore the subpixel AA settings of the draw target when drawing an inactive layer manager so they don't get clobbered. r=mattwoodrow, a=lmandel
- # [20:41] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/3a352baeeca4 - Steve Fink - Bug 1133909 - Fix hazards revealed by adding in new GCPointers. r=terrence, a=lmandel
- # [20:41] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/d5def3938b6e - Mike de Boer - Bug 1137141 - Fix for making the Loop contacts tab show and/ or hide when the user logs in or out of FxA. r=Standard8, a=sledru
- # [20:41] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/824656d7ad0d - Mike de Boer - Bug 1137141 - Extend Loop toolbarbutton tests to check for correct panel states upon opening. r=Standard8, a=sledru
- # [20:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/837fb11b49fa - Robin Ricard - Bug 1124193 - Follow-up: Reland part of first synced date is wrong on first sync. r=nalexander
- # [20:43] * Joins: jet (uid49872@moz-oqb09r.uxbridge.irccloud.com)
- # [20:43] * Quits: ttaubert (uid2620@moz-6d2u0s.uxbridge.irccloud.com) (Quit: Connection closed for inactivity)
- # [20:43] <bholley> KaiRo: hard to say which particular bugs will have what size impact, but I am quite certain that the overall process of tightening down our threading invariants will have a large impact on stability
- # [20:43] * Joins: Waldo (waldo@moz-cfhap5.mtv2.mozilla.com)
- # [20:43] <bholley> KaiRo: I'll CC you on stuff
- # [20:43] * mattwoodrow is now known as mattwoodrow|away
- # [20:43] * Joins: tonymec (tonymec@moz-mk2.1sn.129.109.IP)
- # [20:45] * Quits: ahunt (ahunt@moz-hq8kb0.cam.ac.uk) (Ping timeout: 121 seconds)
- # [20:45] * nsm|away is now known as nsm
- # [20:46] * Quits: espadrine_ (tyl@moz-qfr4fg.abo.wanadoo.fr) (Ping timeout: 121 seconds)
- # [20:47] * Joins: yash_ (uid13811@moz-r0qa6p.charlton.irccloud.com)
- # [20:47] * Quits: kepta (kepta@moz-pnp.esa.202.106.IP) (Quit: Leaving...)
- # [20:47] <KaiRo> bholley: thanks
- # [20:49] * bobowen is now known as bobowen|afk
- # [20:49] * Joins: kentuckyfriedtakahe (ajones@moz-sr37q6.dqqd.b0fh.0cb0.2001.IP)
- # [20:50] * Quits: overbythere (textual@moz-8923jv.cable.virginm.net) (Quit: Textual IRC Client: www.textualapp.com)
- # [20:50] <RyanVM|sheriffduty> mconley: I can't say anything conclusive about those Gip failures, so let's go with "not yours" for now :)
- # [20:51] <RyanVM|sheriffduty> do me a favor and run them on your next Try push, though
- # [20:51] <mconley> \o/
- # [20:51] <RyanVM|sheriffduty> so at least they're easy to retrigger if needed :P
- # [20:51] <lmandel> seth: ping
- # [20:51] <mconley> RyanVM|sheriffduty: will do - sounds like billm has an idea on how I can defeat these Nuwa asserts
- # [20:51] * Quits: jib (Jan-Ivar@moz-85u316.dyn.optonline.net) (Connection closed)
- # [20:51] <mconley> aborts, not asserts
- # [20:51] * Joins: jib (Jan-Ivar@moz-85u316.dyn.optonline.net)
- # [20:51] * Joins: bgrins (bgrins@moz-kim22i.ujol.1ibb.0101.2620.IP)
- # [20:51] <mconley> so I might actually be off to the races sooner than I thought
- # [20:51] * whimboo|afk is now known as whimboo
- # [20:51] <mconley> RyanVM|sheriffduty: gonna expose more ignorance now - what is "Gip"?
- # [20:52] * Quits: Waldo (waldo@moz-cfhap5.mtv2.mozilla.com) (Quit: Reconnecting…)
- # [20:52] * Joins: Waldo (waldo@moz-e9af6p.ujol.1ibb.0101.2620.IP)
- # [20:52] <RyanVM|sheriffduty> mconley: gaia python integration tests (also known as Gaia UI tests depending on where you're looking)
- # [20:52] <mconley> ah, cool, thanks
- # [20:54] * Quits: reed (reed@tech.monkey) (RecvQ exceeded)
- # [20:54] * Quits: ddahl (ddahl@moz-l30.ko4.9.64.IP) (Ping timeout: 121 seconds)
- # [20:54] * Joins: reed (reed@tech.monkey)
- # [20:54] * justindarc|food is now known as justindarc
- # [20:55] * Joins: kgrandon (Adium@moz-4s9cet.2rkg.9kg1.0101.2620.IP)
- # [20:56] * Joins: rstrong2 (rstrong@moz-oi0h6m.dynamic.fusionbroadband.com)
- # [20:57] * Quits: rstrong (rstrong@moz-oi0h6m.dynamic.fusionbroadband.com) (Ping timeout: 121 seconds)
- # [20:57] * rstrong2 is now known as rstrong
- # [20:57] * Quits: rstrong (rstrong@moz-oi0h6m.dynamic.fusionbroadband.com) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.8.0.9/2006120508])
- # [20:57] * Joins: drno (nohlmeier@moz-ec0bb5.ca.comcast.net)
- # [20:57] * Joins: rstrong (rstrong@moz-oi0h6m.dynamic.fusionbroadband.com)
- # [20:58] * Joins: milan (milan@moz-i5m.05u.207.66.IP)
- # [20:58] * Quits: milan_ (milan@moz-i5m.05u.207.66.IP) (Connection closed)
- # [20:59] * Quits: milan (milan@moz-i5m.05u.207.66.IP) (A TLS packet with unexpected length was received.)
- # [20:59] * Joins: milan (milan@moz-i5m.05u.207.66.IP)
- # [21:00] * Quits: btulchinsky (btulchinsky@moz-31vm4e.qaconsultants.ca) (Connection closed)
- # [21:01] * Quits: davidb (davidb@moz-7f6lel.dsl.bell.ca) (Quit: peace out)
- # [21:01] * abr|mtg is now known as abr
- # [21:03] * Joins: hitesh96db (uid26482@moz-lvq6db.ealing.irccloud.com)
- # [21:03] * Quits: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com) (Client exited)
- # [21:03] * Quits: marco (marco@moz-86s.tjb.238.95.IP) (Client exited)
- # [21:04] * Quits: aben (aben@moz-opc.ucc.204.142.IP) (Quit: )
- # [21:04] * Joins: marco (marco@moz-86s.tjb.238.95.IP)
- # [21:07] * Quits: marco (marco@moz-86s.tjb.238.95.IP) (Client exited)
- # [21:07] * Quits: jib (Jan-Ivar@moz-85u316.dyn.optonline.net) (Connection closed)
- # [21:07] * Joins: jib (Jan-Ivar@moz-85u316.dyn.optonline.net)
- # [21:07] * Quits: Enn (enn@moz-68e3mj.ckpj.s0pt.0450.2001.IP) (Ping timeout: 121 seconds)
- # [21:07] * Joins: ddahl (ddahl@moz-40a6g5.il.comcast.net)
- # [21:08] * jlund is now known as jlund|buildduty
- # [21:08] * Joins: janv (varga@moz-vt137j.dynamic.orange.sk)
- # [21:08] * AutomatedTester|AFK is now known as AutomatedTester
- # [21:10] * Quits: drno (nohlmeier@moz-ec0bb5.ca.comcast.net) (Ping timeout: 121 seconds)
- # [21:10] * Joins: chmanchester (Chris@moz-3bcstm.2rkg.9kg1.0101.2620.IP)
- # [21:11] * Joins: drno (nohlmeier@moz-ec0bb5.ca.comcast.net)
- # [21:12] * Joins: ddamjano (Instantbird@moz-t0jumh.cust.bredband2.com)
- # [21:14] * chmanchester is now known as chmanchester|lunch
- # [21:14] * Quits: jib (Jan-Ivar@moz-85u316.dyn.optonline.net) (Connection closed)
- # [21:15] * Joins: jib (Jan-Ivar@moz-85u316.dyn.optonline.net)
- # [21:15] * Joins: mahdi (mahdi@moz-pam.dis.244.151.IP)
- # [21:16] * Quits: drno (nohlmeier@moz-ec0bb5.ca.comcast.net) (Ping timeout: 121 seconds)
- # [21:17] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=abb7f0d180da - 130 changesets
- # [21:18] * Quits: handyman (handyman@moz-h6pqf9.ca.comcast.net) (Connection closed)
- # [21:18] <AutomatedTester> billm: ping, would it be possible for you to reply to the needinfo on https://bugzilla.mozilla.org/show_bug.cgi?id=1090921? thanks
- # [21:19] * Quits: jib (Jan-Ivar@moz-85u316.dyn.optonline.net) (Ping timeout: 121 seconds)
- # [21:19] * Quits: tantek (tantek@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [21:21] * Joins: drno (nohlmeier@moz-ec0bb5.ca.comcast.net)
- # [21:22] * jmaher|afk is now known as jmaher
- # [21:22] * benfrancis is now known as benfrancis|away
- # [21:23] * Joins: kamidphish (textual@moz-igq.7si.9.216.IP)
- # [21:23] * nthomas|away is now known as nthomas
- # [21:24] * Joins: tantek (tantek@moz-u3dg2t.sfo1.mozilla.com)
- # [21:25] * Joins: bitgeeky (bitgeeky@moz-9i1.k6o.139.14.IP)
- # [21:26] * Quits: bdahl (bdahl@moz-u3dg2t.sfo1.mozilla.com) (A TLS packet with unexpected length was received.)
- # [21:27] * Joins: handyman (handyman@moz-h6pqf9.ca.comcast.net)
- # [21:28] <RyanVM|sheriffduty> Standard8: fx-team orange
- # [21:28] <Standard8> huh, I thought I just glanced at that
- # [21:28] * Quits: drno (nohlmeier@moz-ec0bb5.ca.comcast.net) (Ping timeout: 121 seconds)
- # [21:28] * Quits: stransky (stransky@moz-2q16pm.broadband18.iol.cz) (Quit: Connection reset by beer)
- # [21:29] <Standard8> RyanVM|sheriffduty: ok, thinking for a couple of mins
- # [21:31] * Joins: ahunt (ahunt@moz-hq8kb0.cam.ac.uk)
- # [21:32] <Standard8> mconley: how long ago did you land the outerWindowID thing?
- # [21:32] * Joins: jviereck (Adium@moz-qtfa2o.dynamic.hispeed.ch)
- # [21:33] <mconley> Standard8: https://bugzilla.mozilla.org/show_bug.cgi?id=1077168#c33
- # [21:33] <mconley> so around the last week of February
- # [21:33] * Quits: @Cwiiis (uid15019@moz-kk0b07.ealing.irccloud.com) (Quit: Connection closed for inactivity)
- # [21:33] <mconley> just last week
- # [21:33] <Standard8> huh
- # [21:33] <mconley> Standard8: did I break something?
- # [21:33] * Joins: Snuffleupagus (chatzilla@moz-5hgc5j.bredband.comhem.se)
- # [21:33] <Standard8> mconley: so in e10s mode, doing gBrowser.selectedTab.linkedBrowser.outerWindowID seems to return null
- # [21:35] <Standard8> mconley: this is where I’m trying to use it: https://hg.mozilla.org/integration/fx-team/rev/aebb5e9855dd#l1.67
- # [21:35] * Joins: sw (chatzilla@moz-tmhigl.range86-129.btcentralplus.com)
- # [21:36] <sw> hey guys. that trunk winEmbed crash bug I reported earlier. have a proposed fix. please could someone review. thanks.
- # [21:36] <sw> https://bugzilla.mozilla.org/show_bug.cgi?id=1138536
- # [21:37] * Quits: chrisccoulson (chr1s@moz-2r61ne.uno.uk.net) (Quit: OSError: [Errno 130] Owner died)
- # [21:38] * Quits: tantek (tantek@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [21:38] * Quits: ManikM (quassel@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [21:38] * Joins: ManikM (quassel@moz-bgt.6kh.139.14.IP)
- # [21:38] * Quits: Jackneill (Jackneill@moz-ieac4j.pool.digikabel.hu) (A TLS packet with unexpected length was received.)
- # [21:39] * Joins: tantek (tantek@moz-u3dg2t.sfo1.mozilla.com)
- # [21:39] <Standard8> mconley: hmm, correction, it only seems to not work for e10s during the tests
- # [21:40] * Joins: marco (marco@moz-86s.tjb.238.95.IP)
- # [21:40] <Standard8> testing manually it seems to work
- # [21:40] <mconley> Standard8: note that this is where the outerWindowID is sent up to the parent: https://dxr.mozilla.org/mozilla-central/source/toolkit/content/browser-child.js#599
- # [21:40] * Quits: luke (luke@moz-fk7pee.tx.charter.com) (Quit: Leaving.)
- # [21:40] * Quits: philor (philor@moz-2jkon0.my-nick.name) (Ping timeout: 121 seconds)
- # [21:41] <mconley> so there is a small pocket of time when we're loading this script where there is no outerWindowID defined
- # [21:41] * Joins: mchang_ (mchang@moz-4b7hgp.res.rr.com)
- # [21:41] <Standard8> hmm, that could be it
- # [21:41] * Joins: philor (philor@moz-2jkon0.my-nick.name)
- # [21:42] <Standard8> ok, I’ll stick this down as a e10s unit test bug for now, take a look at tomorrow
- # [21:42] * Joins: chrisccoulson (chr1s@moz-2r61ne.uno.uk.net)
- # [21:42] <Standard8> but temporarily disable it in the tree
- # [21:42] * Quits: mchang (mchang@moz-4b7hgp.res.rr.com) (Ping timeout: 121 seconds)
- # [21:42] * mchang_ is now known as mchang
- # [21:42] * Quits: mchang (mchang@moz-4b7hgp.res.rr.com) (Client exited)
- # [21:43] * Joins: mchang (mchang@moz-4b7hgp.res.rr.com)
- # [21:43] * Joins: drno (nohlmeier@moz-ec0bb5.ca.comcast.net)
- # [21:44] * Quits: kamidphish (textual@moz-igq.7si.9.216.IP) (Ping timeout: 121 seconds)
- # [21:44] * Quits: jfkthame (jfkthame@moz-2a7.i06.29.2.IP) (Quit: This computer has gone to sleep)
- # [21:45] * Quits: h4writer (h4writer@moz-lcj9pu.access.telenet.be) (Ping timeout: 121 seconds)
- # [21:45] <KWierso> Standard8: "CLOSED TREE" :)
- # [21:45] * Joins: MilkshakeCat (Mibbit@moz-dlk.ipv.98.216.IP)
- # [21:45] <Standard8> KWierso: already pushed ;-)
- # [21:45] * dholbert|phone is now known as dholbert
- # [21:45] * Joins: h4writer (h4writer@moz-lcj9pu.access.telenet.be)
- # [21:45] <Standard8> RyanVM|sheriffduty: pushed a fix
- # [21:46] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=eaaa45f32e9a - 38 changesets
- # [21:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/aed265aff73d - Mark Banner - Follow-up to bug 1131574 - temporarily disable mochitest on e10s due to apparent load complete detection issues. rs=bustage-fix for CLOSED TREE
- # [21:46] * Quits: philor (philor@moz-2jkon0.my-nick.name) (Ping timeout: 121 seconds)
- # [21:47] <sw> sorry to push but I need a reviewer or will continue to maintain in a parallel tree which means someone else will have to duplicate the work. apologies if that'll all just happen as part of usual process. haven't got my head around workflow here yet and realize winEmbed is low priority for most of you.
- # [21:47] * Joins: hunboy_ (hunboy@moz-bkp142.pool.invitel.hu)
- # [21:47] * nsm is now known as nsm|away
- # [21:48] * Quits: tedders1 (tedders1@moz-i5m.05u.207.66.IP) (A TLS packet with unexpected length was received.)
- # [21:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/d8df6feeeeec - B2G Bumper Bot - Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
- # [21:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/d4b2a0b65ea3 - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [21:49] * Quits: hunboy (hunboy@moz-2c6.hsl.120.79.IP) (Ping timeout: 121 seconds)
- # [21:49] * hunboy_ is now known as hunboy
- # [21:49] * Quits: drno (nohlmeier@moz-ec0bb5.ca.comcast.net) (Ping timeout: 121 seconds)
- # [21:50] <KWierso> sw: can you attach your patch as a patch to that bug?
- # [21:50] <KWierso> then we can assign a reviewer to it
- # [21:50] * chmanchester|lunch is now known as chmancheste
- # [21:50] * chmancheste is now known as chmanchester
- # [21:50] <RyanVM|sheriffduty> sw: https://developer.mozilla.org/en-US/docs/Mercurial_FAQ#How_can_I_generate_a_patch_for_somebody_else_to_check-in_for_me.3F in case you haven't seen it
- # [21:50] <sw> KWierso: you mean a diff. sure.
- # [21:50] <sw> thanks ryan.
- # [21:51] <Standard8> RyanVM|sheriffduty: in the unlikely event that doesn’t fix it, just back me out
- # [21:52] * benfrancis|away is now known as benfrancis
- # [21:53] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/11fa3a214027 - Wes Kocher - Bug 1131433 - Further fixes to SourceBufferDecoder.cpp. a=bustage
- # [21:53] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/3cf370890e0e - Geoff Brown - Bug 1099175 - Skip conformance/textures/texture-npot.html on android. r=jgilbert, a=test-only
- # [21:54] * Joins: philor|away (philor@moz-2jkon0.my-nick.name)
- # [21:55] * Joins: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com)
- # [21:57] * Joins: jfkthame (jfkthame@moz-2a7.i06.29.2.IP)
- # [21:57] * Quits: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com) (Client exited)
- # [21:58] * Quits: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net) (Quit: )
- # [21:58] * Joins: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com)
- # [21:59] * Quits: rbarnes (rbarnes@moz-bg9.tia.177.128.IP) (A TLS packet with unexpected length was received.)
- # [21:59] * Joins: jkitch (Thunderbird@moz-177ham.k4n0.vhij.44b8.2001.IP)
- # [22:00] * jmaher is now known as jmaher|afk
- # [22:00] * Joins: squib (squib@moz-napvi8.wi.charter.com)
- # [22:00] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=0b3c520002ad - 80 changesets
- # [22:01] * hwine is now known as hwine|mtg
- # [22:01] * Quits: bholley (bholley@moz-qpv0dk.ca.comcast.net) (Quit: Textual IRC Client: www.textualapp.com)
- # [22:02] * RyanVM|sheriffduty is now known as RyanVM
- # [22:02] * Joins: rbarnes (rbarnes@moz-bg9.tia.177.128.IP)
- # [22:03] * Joins: bdahl (bdahl@moz-46tca6.2rkg.9kg1.0101.2620.IP)
- # [22:03] * Joins: btulchinsky (btulchinsky@moz-f08.5nv.231.64.IP)
- # [22:04] * Quits: bitgeeky (bitgeeky@moz-9i1.k6o.139.14.IP) (Quit: Leaving)
- # [22:04] * Joins: drno (nohlmeier@moz-ec0bb5.ca.comcast.net)
- # [22:05] * mgerva|afk is now known as mgerva|mtg
- # [22:07] * lmandel is now known as lmandel_afk
- # [22:07] * Joins: jib (Jan-Ivar@moz-85u316.dyn.optonline.net)
- # [22:08] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?changeset=0b3c520002ad - 122 changesets
- # [22:10] <@smaug> what kind of approval is needed to land a patch
- # [22:10] <@smaug> very simple patch
- # [22:10] * flod is now known as flod|away
- # [22:11] * Quits: drno (nohlmeier@moz-ec0bb5.ca.comcast.net) (Ping timeout: 121 seconds)
- # [22:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/pushloghtml?changeset=0b3c520002ad - 172 changesets
- # [22:11] * lmandel_afk is now known as lmandel
- # [22:12] * Quits: jviereck (Adium@moz-qtfa2o.dynamic.hispeed.ch) (Quit: Leaving.)
- # [22:12] <KWierso> smaug: where?
- # [22:12] <@smaug> m-i
- # [22:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/pushloghtml?changeset=7a4c862d6cf3 - 215 changesets
- # [22:13] <@smaug> tbpl says "approval required"
- # [22:13] <KWierso> smaug: oh, that was just to get m-c merged over
- # [22:13] <KWierso> hg wasn't letting me add the "CLOSED TREE" to the merge commit
- # [22:13] <@smaug> ah
- # [22:13] <KWierso> so I changed the treestatus to approval required to avoid that hook
- # [22:13] <@smaug> so the tree is still closed
- # [22:13] <KWierso> I'm reopening once builds kick off on the merge
- # [22:14] <@smaug> k
- # [22:14] * Quits: rbarnes (rbarnes@moz-bg9.tia.177.128.IP) (A TLS packet with unexpected length was received.)
- # [22:14] <KWierso> so probably in the next five minutes
- # [22:15] * Joins: rbarnes (rbarnes@moz-bg9.tia.177.128.IP)
- # [22:15] * Joins: Enn (enn@moz-pe6f5p.cable.rogers.com)
- # [22:16] * Quits: Archaeopteryx (Archaeopter@moz-1hr1h8.cust.telecolumbus.net) (Quit: Goodbye)
- # [22:16] * Joins: drno (nohlmeier@moz-ec0bb5.ca.comcast.net)
- # [22:17] * miketaylr is now known as zz_miketaylr
- # [22:17] * Quits: Guest36174 (strugee@moz-cuk6se.dchs.00kc.00d8.2602.IP) (Ping timeout: 121 seconds)
- # [22:17] * zz_miketaylr is now known as miketaylr
- # [22:18] * Joins: strugee (strugee@moz-cuk6se.dchs.00kc.00d8.2602.IP)
- # [22:18] * Quits: gabor (gabor@moz-tfiocm.net-tv.hu) (Connection closed)
- # [22:19] * strugee is now known as Guest49277
- # [22:19] * bsmedberg is now known as bsmedberg-away
- # [22:19] * Joins: mastizada (Thunderbird@moz-ihb.dc9.233.178.IP)
- # [22:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/8b801a0e611d - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [22:20] * Joins: Archaeopteryx (Archaeopter@moz-1hr1h8.cust.telecolumbus.net)
- # [22:21] * Joins: RealRaven (Thunderbird@moz-75j.ch4.125.109.IP)
- # [22:21] * Quits: spohl (Adium@moz-a63pdr.reverse.softlayer.com) (Quit: Leaving.)
- # [22:22] * philor|away is now known as philor
- # [22:22] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/7f5a57277f7e - Gregor Wagner - Bug 1138571 - Update PhonenumberJS Metadata. r=fabrice
- # [22:23] * Quits: drno (nohlmeier@moz-ec0bb5.ca.comcast.net) (Ping timeout: 121 seconds)
- # [22:23] * Joins: spohl (Adium@moz-garr47.reverse.softlayer.com)
- # [22:23] * Quits: hub (hub@moz-b7evta.abo.wanadoo.fr) (Ping timeout: 121 seconds)
- # [22:25] * Quits: rbarnes (rbarnes@moz-bg9.tia.177.128.IP) (A TLS packet with unexpected length was received.)
- # [22:26] <seth> lmandel: does bug 1128769 comment 30 answer your ping? =)
- # [22:27] <KWierso> smaug: gogogo
- # [22:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/6195f1c0b532 - Ehsan Akhgari - Attempt to fix bug 1137717 by focusing the test frame
- # [22:27] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1748c99efd92 - Ehsan Akhgari - Bug 1125956 - Hack around the broken assumptions of Thunderbird about the HTML copy encoder by disabling the plaintext encoding detection logic; r=roc
- # [22:28] * Quits: till (till@moz-ass5lh.adsl.alicedsl.de) (Ping timeout: 121 seconds)
- # [22:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/d854174c73f4 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [22:28] * Joins: till (till@moz-ass5lh.adsl.alicedsl.de)
- # [22:28] * Joins: DGMurdockIII (dgmurdockii@moz-0vqpbu.in.comcast.net)
- # [22:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/3cb5341d151a - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [22:29] <seth> KWierso: thanks for adjusting the fuzz on bug 1120410
- # [22:29] * Joins: rbarnes (rbarnes@moz-bg9.tia.177.128.IP)
- # [22:32] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5456f25a2ee1 - Mason Chang - Bug 1134459. Don't scroll reftests until the page finishes loading. r=seth
- # [22:33] <KWierso> seth: RyanVM did that, I just merged to m-c :P
- # [22:33] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/bd849bbe77da - Olli Pettay - Bug 1138395 - Optimize nsDocument::mExpandoAndGeneration.expando out from the cc graphs when possible, r=mccr8
- # [22:34] <KWierso> but I'll take the credit if you want me to :)
- # [22:35] <seth> KWierso: heh, i see. hard to see the content among all the tbpl/treeherder posts =)
- # [22:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8150bce392cf - Byron Campen [:bwc] - Bug 1133866: Some refactoring and simplification in JsepSessionImpl. r=mt
- # [22:36] * Quits: jkitch (Thunderbird@moz-177ham.k4n0.vhij.44b8.2001.IP) (Connection closed)
- # [22:37] * Quits: h4writer (h4writer@moz-lcj9pu.access.telenet.be) (Ping timeout: 121 seconds)
- # [22:37] * Joins: drno (nohlmeier@moz-ec0bb5.ca.comcast.net)
- # [22:37] * KaiRo is now known as KaiRo_away
- # [22:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0c48141812db - Xidorn Quan - Bug 1137889 part 1 - Update predefined counter style name table to match the spec. r=jfkthame
- # [22:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b650290d3023 - Xidorn Quan - Bug 1137889 part 2 - Move around definitions in counterstyles.css to match the order in spec for clarity. r=jfkthame
- # [22:37] * Quits: secretrobotron (secretrobot@moz-gr9t2a.ckpj.s0pt.0450.2001.IP) (A TLS packet with unexpected length was received.)
- # [22:38] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [22:38] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0b080a60b195 - Botond Ballo - Bug 1136914 - Don't lose scale from parent document when descending into subdocument. r=tn
- # [22:39] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [22:39] * mgerva|mtg is now known as mgerva|afk
- # [22:40] * Quits: fabrice (fabrice@moz-sr75tb.mh2d.1ibb.0101.2620.IP) (Ping timeout: 121 seconds)
- # [22:40] * Quits: mahdi (mahdi@moz-pam.dis.244.151.IP) (Ping timeout: 121 seconds)
- # [22:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5d16f16e693c - Steven Michaud - Bug 1130435 - Mouse cursor doesn't disappear over Flash object when it should. Works in non-e10s. r=josh
- # [22:41] * hwine|mtg is now known as hwine-food
- # [22:41] <lmandel> seth: Yes it does. :) I'll get an a+ on there shortly and you can land yourself. This will be in b3.
- # [22:42] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a154a685af65 - Sotaro Ikeda - Bug 1136352 - Fix RemoveTextureAsync handling r=nical
- # [22:44] <seth> lmandel: excellent, thanks!
- # [22:44] * Joins: jkitch (Thunderbird@moz-vr1e9u.internode.on.net)
- # [22:45] <RyanVM> seth: bmo has a handy "Hide Tinderboxpushlog Robot Comments" link on the right-hand side, fwiw :)
- # [22:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/caf0d391ceae - Botond Ballo - Bug 943537 - In the GeckoContentController interface, take the modifiers for tap events in 'widget modifier' format rather than 'DOM modifier' format. r=kats,mbrubeck
- # [22:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f9b76a07fcc6 - Botond Ballo - Bug 943537 - Handle modifiers on tap events in RemoteContentController and ChromeProcessController. r=kats,mbrubeck
- # [22:46] * Joins: Caspy7 (chatzilla@moz-qg6.7b1.185.99.IP)
- # [22:46] * Quits: Standard8 (Standard8@moz-1hu.vrc.166.195.IP) (Quit: ZNC - http://znc.in)
- # [22:46] * Caspy7 sighs
- # [22:46] <Caspy7> does anyone know if 37 will be getting x64?
- # [22:46] <seth> RyanVM: so it does, so it does =)
- # [22:46] <RyanVM> Caspy7: IIRC, yes
- # [22:46] <Caspy7> RyanVM: thanks
- # [22:47] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [22:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/2b22a22b1cc5 - Manraj Singh - Bug 1132678 - blockedPopupOptions should be accessible via mouse and keyboard, r=gijs,jaws
- # [22:48] * Parts: Caspy7 (chatzilla@moz-qg6.7b1.185.99.IP) ("")
- # [22:48] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [22:48] * merike is now known as merike|away
- # [22:49] * philor is now known as philor|away
- # [22:50] * Quits: smontagu (chatzilla@moz-3sn1d2.red.bezeqint.net) (Ping timeout: 121 seconds)
- # [22:50] * mattwoodrow|away is now known as mattwoodrow
- # [22:50] <lmandel> seth: I said beta 3 but if you land the change soon enough there's a chance that we can still take it in beta 2. Just so you know.
- # [22:50] <seth> lmandel: great! i'll aim to land in the next 30 minutes
- # [22:51] * Quits: sw (chatzilla@moz-tmhigl.range86-129.btcentralplus.com) (Ping timeout: 121 seconds)
- # [22:52] * Quits: jib (Jan-Ivar@moz-85u316.dyn.optonline.net) (Connection closed)
- # [22:52] * Joins: jib (Jan-Ivar@moz-85u316.dyn.optonline.net)
- # [22:53] * Quits: florent (Thunderbird@moz-2nrsd5.abo.wanadoo.fr) (Connection closed)
- # [22:54] * Joins: bholley (bholley@moz-qpv0dk.ca.comcast.net)
- # [22:55] * Quits: janv (varga@moz-vt137j.dynamic.orange.sk) (Quit: This computer has gone to sleep)
- # [22:55] * Quits: automata (automata@moz-jo2.0eg.34.177.IP) (Quit: This computer has gone to sleep)
- # [22:55] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [22:56] * Joins: fabrice (fabrice@moz-sr75tb.mh2d.1ibb.0101.2620.IP)
- # [22:56] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [22:56] * Joins: secretrobotron (secretrobot@moz-jvkal0.ckpj.s0pt.0450.2001.IP)
- # [22:57] <seth> hmmm
- # [22:57] <seth> ok, i'm not having much luck pushing to beta
- # [22:57] <seth> abort: push creates new remote head 166543626bbd on branch '14_0_Beta'
- # [22:57] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
- # [22:57] <seth> but 'hg pull -u --rebase' says "no changes found"
- # [22:59] * Quits: drno (nohlmeier@moz-ec0bb5.ca.comcast.net) (Ping timeout: 121 seconds)
- # [22:59] * Quits: ddamjano (Instantbird@moz-t0jumh.cust.bredband2.com) (Ping timeout: 121 seconds)
- # [22:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/97d3ba6cfed8 - Steve Workman - Bug 1093983 - Disable type ANY request in DNS used to get TTL on Windows r=mcmanus
- # [23:00] <jfkthame> seth, if there aren't any remote csets to pull, then hg pull -u won't update anything, you need to use a non-pull hg command (update or rebase or something) locally
- # [23:00] * sheppy is now known as sheppy-offline
- # [23:00] * Quits: spohl (Adium@moz-garr47.reverse.softlayer.com) (Quit: Leaving.)
- # [23:01] * Quits: @roc (chatzilla@moz-54n006.orcon.net.nz) (Connection closed)
- # [23:01] <seth> jfkthame: hg update also makes no changes
- # [23:01] <KWierso> botond: bustage
- # [23:02] * darkowlzz|afk is now known as darkowlzz
- # [23:02] <botond> KWierso: :( i did have a try push this time...
- # [23:02] <seth> jfkthame: i actually think this is due to some sort of weird history rewriting. after all 14_0_Beta is pretty old, and is not the default branch
- # [23:02] <seth> i'm guessing mercurial, like older git, pushes _all_ branches when you push...
- # [23:02] <KWierso> botond: https://treeherder.mozilla.org/logviewer.html#?job_id=7105674&repo=mozilla-inbound
- # [23:02] * Quits: handyman (handyman@moz-h6pqf9.ca.comcast.net) (Connection closed)
- # [23:02] <KWierso> seth: gps closed or merged a bunch of branches on the hg.m.o repos
- # [23:02] <RyanVM> seth: hg push -r default should work
- # [23:02] <KWierso> maybe you're hitting that
- # [23:03] * Quits: tantek (tantek@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
- # [23:03] * Quits: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com) (Client exited)
- # [23:03] <RyanVM> seth: you can either strip those old branches or re-clone beta
- # [23:03] <RyanVM> but what KWierso said
- # [23:03] <botond> KWierso: ah, there was a silent conflict with bug 1133492
- # [23:03] <botond> KWierso: that's an easy fix
- # [23:03] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
- # [23:03] <KWierso> botond: go for it, CLOSED TREE
- # [23:04] <seth> RyanVM: KWierso: thanks! 'hg push -r default' worked. i'll reclone after i get this current task done
- # [23:04] <RyanVM> seth: sounds good, it's actually a fairly trivial strip command otherwise, I just forget exactly what the revs are
- # [23:05] * Quits: rednaks (rednaks@moz-420.21i.227.41.IP) (Ping timeout: 121 seconds)
- # [23:05] <seth> apparently a new type of approval exists now? "ba=?"
- # [23:05] * Quits: bholley (bholley@moz-qpv0dk.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [23:05] * Joins: handyman (handyman@moz-h6pqf9.ca.comcast.net)
- # [23:05] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/99d7d283b44a - Matthew Noorenberghe - Bug 1121040 - Don't send RETURN keypresses to content while a satchel autocomplete entry is selected. r=Gijs,smaug
- # [23:05] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/00c0d934ae62 - Alessio Placitelli - Bug 1138323 - Use https instead of http in Heartbeat's browser.selfsupport.url. r=ttaubert
- # [23:05] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/0bc001f799df - Chris - Bug 1121417: Change hiddenOneOffs search pref to use unichar type. r=gavin
- # [23:06] * Joins: bholley (bholley@moz-qpv0dk.ca.comcast.net)
- # [23:06] * Quits: catalin392 (catalin@moz-ko5.l36.121.86.IP) (Quit: Leaving)
- # [23:06] * Joins: rednaks (rednaks@moz-420.21i.227.41.IP)
- # [23:06] <seth> lmandel: i apparently need ba= for bug 1128769
- # [23:06] * Joins: jviereck (Adium@moz-qtfa2o.dynamic.hispeed.ch)
- # [23:06] <@gavin> seth: which part?
- # [23:07] * Quits: tromey (tromey@moz-84nbld.hlrn.qwest.net) (Quit: ERC (IRC client for Emacs 25.0.50.7))
- # [23:07] <botond> KWierso: pushed fix
- # [23:07] <seth> gavin: part 6, i removed a method from imgIContainer.idl
- # [23:07] * Quits: handyman (handyman@moz-h6pqf9.ca.comcast.net) (Connection closed)
- # [23:07] <@gavin> why are you doing that on branches?
- # [23:07] <seth> (and updated the uuid, of course)
- # [23:07] * Quits: bholley (bholley@moz-qpv0dk.ca.comcast.net) (Connection closed)
- # [23:07] * Joins: bholley (bholley@moz-qpv0dk.ca.comcast.net)
- # [23:07] <seth> gavin: because this is an uplift
- # [23:07] * heycam|away is now known as heycam
- # [23:07] <lmandel> seth: Do you need to remove the method? Can you leave it in place for 37?
- # [23:08] * benfrancis is now known as benfrancis|away
- # [23:08] <lmandel> ie. Was this just cleanup or is the method now broken due to other changes?
- # [23:08] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e70a3fb50d37 - Botond Ballo - Bug 943537 - Fix bustage introduced by incorrect rebase across bug 1133492, to reopen a CLOSED TREE. r=bustage
- # [23:08] <gps> seth: the commits you want to strip are either 142e5e488022:e01714f1afb0 or b58f17a50c16:be94effe221a
- # [23:08] <seth> lmandel: i suppose it can, though since it is noscript and not used anywhere, and the method is totally useless since it gives wrong results, it doesn't seem beneficial to me to keep
- # [23:09] <seth> lmandel: if it was script-accessible it would be different of course
- # [23:09] <gps> seth: you should do an e.g. `hg log -r b58f17a50c16:be94effe221a` before the strip to make sure you only strip the relevant commits
- # [23:09] <seth> gps: thanks, i'll give that a shot
- # [23:09] <lmandel> seth: You mean the interface can't be used by add-ons?
- # [23:09] <seth> lmandel: yeah, exactly
- # [23:09] <gps> and get in the habit of typing `hg push -r <rev>` - it's a good practice
- # [23:10] * Joins: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net)
- # [23:10] <lmandel> seth: Than it doesn't matter. We only limit UUID changes to limit the risk of breaking add-ons.
- # [23:10] <gps> if you install the firefoxtree extension, it treats `hg push` as `hg push -r .`
- # [23:10] <gps> when pushing to firefox repos anyway
- # [23:10] <seth> gps: yeah, i'd prefer that. that's the new git behavior too, and i've rapidly come to assume that that's what's happening when i push
- # [23:10] * Joins: tantek (tantek@moz-u3dg2t.sfo1.mozilla.com)
- # [23:10] <seth> lmandel: yeah, that's what i figured
- # [23:10] * Joins: njn (chatzilla@moz-mrqno0.iinet.net.au)
- # [23:10] * killer sets mode: +o njn
- # [23:11] <gps> i'm also trying to get per-path configurations into mercurial core
- # [23:11] * Quits: fabrice (fabrice@moz-sr75tb.mh2d.1ibb.0101.2620.IP) (Ping timeout: 121 seconds)
- # [23:11] <gps> http://www.selenic.com/pipermail/mercurial-devel/2015-March/066705.html
- # [23:11] <@njn> how can I run mochitest-o locally?
- # [23:12] <gps> njn: does `mach test mochitest-o` work?
- # [23:12] <@njn> ./mach test mochitest-o, looks like
- # [23:12] <seth> gps: that looks nice!
- # [23:12] * Quits: @ehsan (ehsan@moz-cef8oi.cpe.pppoe.ca) (Quit: vanished into thin air...)
- # [23:12] <@njn> gps: nope
- # [23:13] <seth> lmandel: can i take that to mean that i have ba=lmandel? =)
- # [23:13] <lmandel> seth: Yes. That's fine.
- # [23:13] <@njn> gps: and "mach test mochitest-1" gets further, but then also craps out
- # [23:13] <seth> lmandel: great, thanks!
- # [23:13] <@njn> gps: `make -C $OBJDIR mochitest-1` works
- # [23:14] <@njn> though `mochitest-o` doesn't...
- # [23:14] <gps> njn: *sigh*
- # [23:14] <@njn> gps: https://dxr.mozilla.org/mozilla-central/source/testing/testsuite-targets.mk#137
- # [23:14] * lmandel is now known as lmandel_afk
- # [23:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/759ad062242f - Seth Fowler - Bug 1128769 (Part 1) - Propagate the imgIContainer::Draw result through the nsLayoutUtils::PaintBackground* functions. r=tn a=lmandel
- # [23:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/69da299d5e49 - Seth Fowler - Bug 1128769 (Part 2) - Check if we invalidated for a sync decode and never painted before invalidating for sync decoding again. r=tn a=lmandel
- # [23:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/d80f4050e348 - Seth Fowler - Bug 1128769 (Part 3) - Record the last draw result when drawing CSS backgrounds and use it to decide whether to sync decode. r=tn a=lmandel
- # [23:15] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/782bd163aeed - Seth Fowler - Bug 1128769 (Part 4) - Record the last draw result when drawing CSS tables and use it to decide whether to sync decode. r=tn a=lmandel
- # [23:16] <gps> njn: https://dxr.mozilla.org/mozilla-central/source/testing/mach_commands.py#39
- # [23:16] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/498290d95f1c - Seth Fowler - Bug 1128769 (Part 5) - Record the last draw result for various less common frame types and use it to decide whether to sync decode. r=tn a=lmandel
- # [23:16] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/7b3c7ba30dfe - Seth Fowler - Bug 1128769 (Part 6) - Remove imgIContainer::IsDecoded and all remaining callers. r=tn a=lmandel ba=lmandel
- # [23:17] * hwine-food is now known as hwine
- # [23:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/85178c21d71c - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
- # [23:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/fbc818aa0a8d - B2G Bumper Bot - Bumping manifests a=b2g-bump
- # [23:18] * Quits: luisalonsocn (luisalonsoc@moz-n0u.ur6.42.190.IP) (Quit: Leaving)
- # [23:18] * Quits: ferjm (textual@moz-6tov0c.user.ono.com) (Quit: Textual IRC Client: www.textualapp.com)
- # [23:18] * Quits: MilkshakeCat (Mibbit@moz-dlk.ipv.98.216.IP) (Quit: http://www.mibbit.com ajax IRC Client)
- # [23:19] * Quits: rbarnes (rbarnes@moz-bg9.tia.177.128.IP) (A TLS packet with unexpected length was received.)
- # [23:19] * Joins: rbarnes (rbarnes@moz-bg9.tia.177.128.IP)
- # [23:19] <@njn> gps: wait... `nach o64 test mochitest-1` does work. but `nach o64 test mochitest-o` does not
- # [23:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/bf377f07f7c2 - Wes Kocher - Bug 1131433 - Further fixes to SourceBufferDecoder.cpp. DONTBUILD CLOSED TREE
- # [23:20] <@njn> it looks like the mach command just cuts up the mochitests into N chunks... is that the same as what the test machines do?
- # [23:20] * Quits: Enn (enn@moz-pe6f5p.cable.rogers.com) (Connection closed)
- # [23:21] * Joins: clokep (Instantbird@moz-ivrdpu.cable.rcn.com)
- # [23:22] * Quits: myk (myk@moz-u3dg2t.sfo1.mozilla.com) (Ping timeout: 121 seconds)
- # [23:22] * Joins: rniwa (rniwa@moz-h0e.skt.114.17.IP)
- # [23:23] * Quits: secretrobotron (secretrobot@moz-jvkal0.ckpj.s0pt.0450.2001.IP) (A TLS packet with unexpected length was received.)
- # [23:23] * Joins: bdahl_ (bdahl@moz-7qvrid.2rkg.9kg1.0101.2620.IP)
- # [23:24] * Joins: kamidphish (textual@moz-caa.ubs.23.12.IP)
- # [23:25] * Joins: gozala (uid5923@moz-ftm4af.brockwell.irccloud.com)
- # [23:26] * Joins: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com)
- # [23:26] * Quits: chmanchester (Chris@moz-3bcstm.2rkg.9kg1.0101.2620.IP) (A TLS packet with unexpected length was received.)
- # [23:26] * Quits: ahal (ahal@moz-blga2k.cpe.pppoe.ca) (A TLS packet with unexpected length was received.)
- # [23:27] * Quits: bdahl (bdahl@moz-46tca6.2rkg.9kg1.0101.2620.IP) (Ping timeout: 121 seconds)
- # [23:27] * Quits: milan (milan@moz-i5m.05u.207.66.IP) (Quit: )
- # [23:27] * Joins: myk (myk@moz-u3dg2t.sfo1.mozilla.com)
- # [23:27] * Quits: jviereck (Adium@moz-qtfa2o.dynamic.hispeed.ch) (Quit: Leaving.)
- # [23:27] * Joins: fabrice (fabrice@moz-plhhcv.ujol.1ibb.0101.2620.IP)
- # [23:28] * AutomatedTester is now known as AutomatedTester|AFK
- # [23:30] * Quits: rbarnes (rbarnes@moz-bg9.tia.177.128.IP) (A TLS packet with unexpected length was received.)
- # [23:30] * Joins: handyman (handyman@moz-h6pqf9.ca.comcast.net)
- # [23:30] * kats is now known as kats-afk
- # [23:31] * mcote is now known as mcote|afk
- # [23:32] * Quits: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com) (Ping timeout: 121 seconds)
- # [23:34] * Quits: jfkthame (jfkthame@moz-2a7.i06.29.2.IP) (Quit: Leaving)
- # [23:35] * Quits: btulchinsky (btulchinsky@moz-f08.5nv.231.64.IP) (Connection closed)
- # [23:36] * Joins: rbarnes (rbarnes@moz-bg9.tia.177.128.IP)
- # [23:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/702f6a2260ed - Jim Mathies - bug 1127794 - With remote content calculate and store plugin geometry updates prior to the end of the shadow layer transaction. r=roc
- # [23:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cf124d6f6602 - Daosheng Mu - Bug 1133391 - Remove unused variables in TabParent::RecvDispatchAfterKeyboardEvent. r=smaug.
- # [23:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4829b02a11af - Dragana Damjanovic - Bug 918827 - Remove caching for ftp connections. r=michal
- # [23:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/fa16d24d530f - Nicolas B. Pierron - Bug 1010556 - Bump ASAN kTrustedScriptBuffer constant, to account for the new frame size. r=bholley
- # [23:37] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ced7bcaa0e52 - Alex Verstak - Bug 1091883 - Added test, this is fixed by a fix to bug 1113438. r=sstamm CLOSED TREE
- # [23:38] * Joins: btulchinsky (btulchinsky@moz-f08.5nv.231.64.IP)
- # [23:38] * Joins: Manny (quassel@moz-bgt.6kh.139.14.IP)
- # [23:38] * Quits: ManikM (quassel@moz-bgt.6kh.139.14.IP) (Connection closed)
- # [23:38] * Joins: elin (elin@moz-6fdb35.dynamic-ip.hinet.net)
- # [23:38] * Quits: hitesh96db (uid26482@moz-lvq6db.ealing.irccloud.com) (Quit: Connection closed for inactivity)
- # [23:39] * Joins: jviereck (Adium@moz-qtfa2o.dynamic.hispeed.ch)
- # [23:39] * Quits: Sander (chatzilla@moz-7lv.bfp.133.186.IP) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [23:41] * Quits: NeilZZZ (neil@moz-7uauc5.cable.virginm.net) (Ping timeout: 121 seconds)
- # [23:41] * Joins: roc (chatzilla@moz-h8ll9b.dqqd.b0fh.0cb0.2001.IP)
- # [23:41] * killer sets mode: +o roc
- # [23:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/98f395293242 - Kartikaya Gupta - Bug 1137952 - Call mozRequestAnimationFrame on the right window. r=mstange
- # [23:43] * Quits: jviereck (Adium@moz-qtfa2o.dynamic.hispeed.ch) (Ping timeout: 121 seconds)
- # [23:43] * coop|mtg is now known as coop
- # [23:43] * Quits: Gijs (chatzilla@moz-be1.e16.80.5.IP) (Quit: sleep)
- # [23:43] * Joins: pcwalton (pcwalton@moz-l8ebtf.sfo1.mozilla.com)
- # [23:46] * Joins: hub (hub@moz-b7evta.abo.wanadoo.fr)
- # [23:46] * Joins: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com)
- # [23:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/bc72e91be738 - Terrence Cole - Bug 1135985 - Use typed members to implement pushMarkStack; r=sfink
- # [23:49] * catlee is now known as catlee-away
- # [23:50] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/44efa0956b53 - Kannan Vijayan - Bug 1130367 - Ensure profiler stack sampling is disabled when spsProfiler is disabled. r=shu
- # [23:51] * Joins: luisalonsocn (luisalonsoc@moz-n0u.ur6.42.190.IP)
- # [23:52] * Joins: azakai (alon@moz-5olq9t.rgd2.9kg1.0101.2620.IP)
- # [23:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cde1ceac0788 - Steve Fink - Bug 1137326 - Fix out of bounds error in JS_iterateCompartments, r=terrence
- # [23:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/7d8224f00aec - Steve Fink - Bug 1137336 - Explicitly disallow WeakMapTracer.callback from GCing, r=terrence
- # [23:53] * Joins: automata (automata@moz-jo2.0eg.34.177.IP)
- # [23:54] * Joins: Neil (neil@moz-7uauc5.cable.virginm.net)
- # [23:54] * Neil is now known as NeilZZZ
- # [23:55] * Joins: gandalf (zbraniecki@moz-v49pcc.chyn.qwest.net)
- # [23:56] * KWierso is now known as KWierso|brb
- # [23:56] * Joins: chmanchester (chmancheste@moz-iee0af.rgd2.9kg1.0101.2620.IP)
- # [23:58] * Quits: kaze (kaze@moz-8ion1q.fbx.proxad.net) (Ping timeout: 121 seconds)
- # Session Close: Tue Mar 03 00:00:00 2015
Previous day, Next day
Think these logs are useful? Then please donate to show your gratitude (and keep them up, of course). Thanks! — Krijn