/irc-logs / mozilla / #developers / 2013-03-18 / end

Options:

  1. # Session Start: Mon Mar 18 00:00:00 2013
  2. # Session Ident: #developers
  3. # [00:00] <@roc> yes, nodes that do audio output would be excluded too
  4. # [00:00] * Joins: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net)
  5. # [00:00] * Quits: markh (Instantbir@moz-72AF0623.bjzv3.vic.bigpond.net.au) (Ping timeout)
  6. # [00:01] <@ehsan> roc: ok good idea, let me see if I can hack up a patch
  7. # [00:02] * Quits: sewardj_ (sewardj@moz-E342F6A8.rev.sfr.net) (Quit: Konversation terminated!)
  8. # [00:02] <@ehsan> roc: this is where we add the output chunk, right? http://mxr.mozilla.org/mozilla-central/source/content/media/AudioNodeStream.cpp#271
  9. # [00:02] * Quits: Cork (Cork@moz-1DDC043.cust.tele2.se) (Ping timeout)
  10. # [00:04] * Joins: markh (Instantbir@moz-72AF0623.bjzv3.vic.bigpond.net.au)
  11. # [00:04] * Quits: tonymec (tonymec@30F18D6E.EFAA0F71.A9371869.IP) (Ping timeout)
  12. # [00:04] * Quits: tonymec|away (tonymec@30F18D6E.EFAA0F71.A9371869.IP) (Ping timeout)
  13. # [00:04] * capella|near is now known as capella
  14. # [00:05] <@roc> yes
  15. # [00:06] * Quits: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net) (Quit: Leaving.)
  16. # [00:07] * Quits: JonathanS (JonathanS@74338381.87D4EDDB.521902B0.IP) (Quit: Computer has gone to sleep.)
  17. # [00:08] * Quits: aklotz (Thunderbir@moz-83399C40.rev.sfr.net) (Ping timeout)
  18. # [00:09] * Joins: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br)
  19. # [00:11] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  20. # [00:14] * Quits: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP) (Input/output error)
  21. # [00:14] * Joins: dherman (dherman@moz-6CA476B1.hsd1.ca.comcast.net)
  22. # [00:15] * Quits: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br) (Ping timeout)
  23. # [00:15] * Joins: tonymec__ (tonymec@5A9BA118.8C61C497.DE2DB281.IP)
  24. # [00:16] * tonymec__ is now known as tonymec|away
  25. # [00:16] <@ehsan> roc: still around?
  26. # [00:16] * Quits: Tommy (Tommy@moz-F7051E24.com) (Ping timeout)
  27. # [00:16] <@roc> of course
  28. # [00:17] * Quits: clee (clee@moz-E3C0B5D0.hsd1.ca.comcast.net) (Quit: clee)
  29. # [00:17] <@ehsan> roc: so another problem that I'm facing is that of the lingering audio nodes
  30. # [00:17] * Joins: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net)
  31. # [00:17] * Joins: Tommy (Tommy@moz-F7051E24.com)
  32. # [00:17] <@ehsan> the only type of audio streams that are correctly finished are buffer source nodes
  33. # [00:17] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  34. # [00:18] * Joins: myk (myk@moz-64D96850.dsl.dynamic.sonic.net)
  35. # [00:18] <@ehsan> the rest of ProduceAudioBlock functions can never set *aFinished to true...
  36. # [00:18] <@ehsan> I'm not sure how I should fix that...
  37. # [00:21] * Quits: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net) (Connection reset by peer)
  38. # [00:21] <@roc> sounds like it needs debugging.
  39. # [00:22] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Ping timeout)
  40. # [00:22] <@ehsan> roc: what's the correct way to delete the nsAudioStream's that are no longer useful?
  41. # [00:23] * Quits: mconley (mconley@D4B46A36.8C6552CA.6816E6B7.IP) (Input/output error)
  42. # [00:24] * Quits: kinetik (kinetik@831B3F65.16387748.FC74E68.IP) (Ping timeout)
  43. # [00:25] * Joins: clee (clee@moz-E3C0B5D0.hsd1.ca.comcast.net)
  44. # [00:25] <@roc> nsAudioStream?
  45. # [00:25] <@roc> that's only on the destination node
  46. # [00:26] * Quits: digitsm (digitsm@3EE0C9FB.9102DE55.6FBA63F7.IP) (Ping timeout)
  47. # [00:26] <@ehsan> roc: sorry, I meant AudioNodeStream
  48. # [00:26] <@roc> so you have a buffer source node feeding into a GainNode feeding into the destination node, and the GainNode isn't being released?
  49. # [00:27] <@roc> the GainNode should call SetProduceOwnOutput(false) when it's created; are you doing that?
  50. # [00:27] * Joins: kinetik (kinetik@831B3F65.16387748.FC74E68.IP)
  51. # [00:27] * Joins: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com)
  52. # [00:28] <@ehsan> roc: no!
  53. # [00:28] <@ehsan> roc: isn't the default false though?
  54. # [00:28] <@roc> hmm yes it is
  55. # [00:28] <@roc> OK
  56. # [00:29] * Quits: Mic (Mic@moz-4C3065DC.superkabel.de) (Quit: No time to waste, let's go!)
  57. # [00:29] <@roc> maybe UpdateOutputEnded isn't being called
  58. # [00:29] * Joins: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net)
  59. # [00:30] <@ehsan> roc: let me check that
  60. # [00:30] <@roc> I gotta go to lunch but here's what should be happening
  61. # [00:30] * Joins: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP)
  62. # [00:31] * Quits: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP) (Connection reset by peer)
  63. # [00:31] <philor> probably nobody wants to have opinions about the odds of mccr8 causing those MemoryErrors during Windows builds, so I should just back him out, right?
  64. # [00:32] <@roc> AudioNode::UpdateOutputEnded gets called on the AudioBufferSourceNode, which calls UpdateOutputEnded on the GainNode, which should then kill it
  65. # [00:33] * Joins: Cork (Cork@moz-1DDC043.cust.tele2.se)
  66. # [00:33] * Quits: abcdef (bzlandfill@moz-CBA535D2.elisa-laajakaista.fi) (Quit: CGI:IRC (EOF))
  67. # [00:33] * Joins: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP)
  68. # [00:34] * Quits: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP) (Connection reset by peer)
  69. # [00:35] * Quits: cilias (cilias@moz-D65C0C74.cpe.net.cable.rogers.com) (Quit: cilias)
  70. # [00:35] <@ehsan> roc: UpdateOutputEnded does get called, but the node doesn't go away since it still has a JS binding and inputs
  71. # [00:36] <@ehsan> philor: I guess
  72. # [00:36] * Joins: tonymec (tonymec@5A9BA118.8C61C497.DE2DB281.IP)
  73. # [00:36] * Joins: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP)
  74. # [00:36] * Quits: Hendikins (wolfox@moz-13914647.hhui4.ken.bigpond.net.au) (Ping timeout)
  75. # [00:36] * Joins: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net)
  76. # [00:37] * Joins: Hendikins (wolfox@moz-13914647.hhui4.ken.bigpond.net.au)
  77. # [00:37] <philor> ugh, backing out a touch of CLOBBER
  78. # [00:37] * Joins: bdahl (bdahl@moz-D7CB09C3.dsl.dynamic.sonic.net)
  79. # [00:38] * Quits: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP) (Ping timeout)
  80. # [00:39] * Quits: romaxa (romaxa@670ACB81.66590CC0.4A6948F8.IP) (Ping timeout)
  81. # [00:39] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d75e34da1a9f - Phil Ringnalda - Back out 2ea5f267af77:218356c595fc (bug 827486) for Windows builds dying with an obscure "MemoryError"
  82. # [00:39] * Joins: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP)
  83. # [00:40] * Quits: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP) (Connection reset by peer)
  84. # [00:40] * Joins: romaxa (romaxa@670ACB81.66590CC0.4A6948F8.IP)
  85. # [00:40] <@ehsan> roc: gah, found the bug!!!
  86. # [00:42] * Joins: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP)
  87. # [00:42] * Quits: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP) (Connection reset by peer)
  88. # [00:44] * Joins: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br)
  89. # [00:45] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  90. # [00:46] * Quits: dherman (dherman@moz-6CA476B1.hsd1.ca.comcast.net) (Quit: dherman)
  91. # [00:46] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  92. # [00:46] <gps> philor: bug 851975 scares me. there might be some ugly bustage in the near future
  93. # [00:47] <philor> gps: yeah, I'm looking at some directories, trying to get from denial to the point of closing every trunk tree
  94. # [00:48] * gps crosses fingers try comes back green
  95. # [00:48] * Quits: karl (karl@moz-C433B975.jetstream.xtra.co.nz) (Ping timeout)
  96. # [00:49] * Quits: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com) (Client exited)
  97. # [00:49] * Quits: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br) (Ping timeout)
  98. # [00:50] * Quits: brson (brson@2557E599.66715431.D25A875A.IP) (Quit: leaving)
  99. # [00:51] * Quits: jhopkins (jhopkins@moz-216F9986.tb.shawcable.net) (Quit: jhopkins)
  100. # [00:51] <gps> philor: I have r+. should I land this on inbound?
  101. # [00:52] <philor> gps: so https://mxr.mozilla.org/mozilla-central/source/layout/style/moz.build#7 would be preventing layout/style/test/ from being built, so https://mxr.mozilla.org/mozilla-central/source/layout/style/test/test_transitions_cancel_near_end.html?force=1 wouldn't get run, so https://bugzilla.mozilla.org/show_bug.cgi?id=630324#c168 wouldn't have happened even though it did?
  102. # [00:52] * Quits: shorlander (shorlander@moz-230AEA61.dhcp.insightbb.com) (Input/output error)
  103. # [00:52] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  104. # [00:52] <gps> philor: some directories might have been referenced from multiple places
  105. # [00:53] <philor> hah, fun
  106. # [00:53] * Joins: shorlander (shorlander@moz-230AEA61.dhcp.insightbb.com)
  107. # [00:53] <philor> m-c, please, I'll watch it there
  108. # [00:53] <gps> actually, no, that shouldn't happen
  109. # [00:53] * Quits: myk (myk@moz-64D96850.dsl.dynamic.sonic.net) (Ping timeout)
  110. # [00:54] <philor> I'm not convinced the tip of inbound will be mergeable
  111. # [00:54] <philor> though I'm also not yet convinced that 851975 exists :)
  112. # [00:55] <philor> after all, if we weren't running all those tests, wouldn't I be happy? QED.
  113. # [00:55] <gps> philor: it's not as bad as I think. comment forthcoming
  114. # [00:55] <gps> you're going to like this one...
  115. # [00:56] * Quits: ehugg (ehugg@moz-44D86B1E.cisco.com) (Quit: ehugg)
  116. # [00:56] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/a9a25781850e - Gregory Szorc - Bug 851975 - Don't use conditionals in backend.mk; r=ted
  117. # [00:57] * Joins: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP)
  118. # [00:58] <gps> wait. I need to read the make manual first...
  119. # [00:58] * philor moves to a more comfortable chair
  120. # [00:58] <philor> I've tried reading it, you're not going to be back any time soon
  121. # [01:03] * Quits: loadbang (loadbang@moz-91188D27.range86-185.btcentralplus.com) (Quit: Bye)
  122. # [01:03] * Joins: JonathanS (JonathanS@74338381.87D4EDDB.521902B0.IP)
  123. # [01:03] * Quits: shorlander (shorlander@moz-230AEA61.dhcp.insightbb.com) (Input/output error)
  124. # [01:04] * Joins: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net)
  125. # [01:08] * Joins: nattokirai (nattokirai@moz-658AB552.tokyo.ocn.ne.jp)
  126. # [01:12] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a9a25781850e - Gregory Szorc - Bug 851975 - Don't use conditionals in backend.mk; r=ted
  127. # [01:12] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a0336cae0815 - Phil Ringnalda - Merge m-c to m-i
  128. # [01:12] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/aa0fc30a3c2e - Luke Wagner - Disable OdinMonkey on OSX until we can get Breakpad to cooperate (no bug, r=me)
  129. # [01:13] <Callek> odinmonkey!?
  130. # [01:13] * Callek thinks we suck at codenames
  131. # [01:13] * Joins: marco (Thunderbir@moz-4CC5D791.cust.dsl.teletu.it)
  132. # [01:15] <philor> *~
  133. # [01:17] * nthomas is now known as nthomas|away
  134. # [01:18] * Joins: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br)
  135. # [01:19] * Quits: Hendikins (wolfox@moz-13914647.hhui4.ken.bigpond.net.au) (Ping timeout)
  136. # [01:20] * Joins: Hendikins (wolfox@moz-13914647.hhui4.ken.bigpond.net.au)
  137. # [01:21] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  138. # [01:24] * Quits: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net) (Quit: Leaving...)
  139. # [01:24] * Quits: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br) (Ping timeout)
  140. # [01:26] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  141. # [01:26] * Joins: bholley (anonymous@moz-FCAF9AAB.hsd1.ca.comcast.net)
  142. # [01:27] <tbsaunde> arg hg-- # can't qimport pushed changesets
  143. # [01:27] * Quits: clee (clee@moz-E3C0B5D0.hsd1.ca.comcast.net) (Quit: clee)
  144. # [01:27] * Joins: sfink (chatzilla@moz-56D5AE07.dsl.pltn13.sbcglobal.net)
  145. # [01:28] <Jesse> tbsaunde: after pushing to try, or pushing to a "real" repo?
  146. # [01:29] * Joins: myk (myk@moz-64D96850.dsl.dynamic.sonic.net)
  147. # [01:29] * Joins: cviecco (cviecco@moz-63115BF4.hsd1.ca.comcast.net)
  148. # [01:29] <Jesse> tbsaunde: which hg version?
  149. # [01:29] * Quits: myk (myk@moz-64D96850.dsl.dynamic.sonic.net) (Quit: Instantbird 1.4a1pre -- http://www.instantbird.com)
  150. # [01:30] <tbsaunde> Jesse: real repo
  151. # [01:30] * Joins: shorlander (shorlander@moz-230AEA61.dhcp.insightbb.com)
  152. # [01:30] <tbsaunde> Jesse: and 2.2.2
  153. # [01:31] <Jesse> current is 2.5.2 btw
  154. # [01:31] <Jesse> why do you want to qimport something you've already pushed?
  155. # [01:31] * @dolske wonders how that make manual reading is going.
  156. # [01:31] <tbsaunde> Jesse: sure, but I have 0 interest in not using the distro shipped one
  157. # [01:31] * Quits: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net) (Ping timeout)
  158. # [01:32] <gps> dolske: I started drinking a barleywine instead
  159. # [01:32] * Joins: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net)
  160. # [01:32] <@dolske> acceptable
  161. # [01:32] * Quits: cviecco (cviecco@moz-63115BF4.hsd1.ca.comcast.net) (Connection reset by peer)
  162. # [01:32] <@roc> ehsan: what was the bug?
  163. # [01:32] <@ehsan> roc: we don't know whether the JS binding has been finalized or not...
  164. # [01:33] <@ehsan> roc: btw, I have a patch for the ForgetUpTo bug
  165. # [01:33] <@ehsan> which is almost ready for review
  166. # [01:33] * Quits: Ameya (chatzilla@3E3B4954.9E3FE12C.4A5F0685.IP) (Ping timeout)
  167. # [01:33] <@roc> why don't we know that?
  168. # [01:33] * Joins: cviecco (cviecco@moz-63115BF4.hsd1.ca.comcast.net)
  169. # [01:34] <@ehsan> roc: the Web IDL binding patch never landed :(
  170. # [01:34] <@ehsan> I had forgot about it...
  171. # [01:34] <@roc> aha!
  172. # [01:34] <njn> tbsaunde: 2.2.2 has a bug that can cause blame data to be clobbered when you rebase; 2.5 fixes that
  173. # [01:35] * Joins: cabanier (cabanier@moz-6A1F2F2C.hsd1.wa.comcast.net)
  174. # [01:35] <@ehsan> roc: ok, patch is up for review
  175. # [01:37] <Jesse> njn, tbsaunde: we're starting to deploy a hook to contain the damage, but yeah, updating to hg 2.5+ is a good idea. <https://bugzilla.mozilla.org/show_bug.cgi?id=846953>
  176. # [01:38] <njn> tbsaunde: there's a dev-platform thread about it where several people describe how they updated (on LInux)
  177. # [01:38] <tbsaunde> njn: Jesse I don't rebase with hg so I don't really care (and really only use it to push)
  178. # [01:39] <tbsaunde> njn: I'm absolutely sure I could if I wanted, the point is that I don't want to have to keep updating myself
  179. # [01:39] <njn> tbsaunde: https://groups.google.com/forum/?fromgroups=#!topic/mozilla.dev.platform/rp_Ff3_GpL4 is the thread
  180. # [01:39] * Quits: cabanier (cabanier@moz-6A1F2F2C.hsd1.wa.comcast.net) (Quit: Leaving.)
  181. # [01:39] <njn> tbsaunde: at some point you'll need to update in order to push, due to bug 846953
  182. # [01:40] <njn> tbsaunde: here's what I did: http://pastebin.mozilla.org/2224284
  183. # [01:40] <njn> tbsaunde: that gets you on the "latest" version, so it should update automaticaly in the future
  184. # [01:41] * Quits: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net) (Ping timeout)
  185. # [01:42] <tbsaunde> njn: uhm doesn't that check for actually broken changesets not just ones that come from old hg?
  186. # [01:42] * Joins: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net)
  187. # [01:42] <@ehsan> roc: ok, I fixed up that patch to apply to trunk, and I'll try it now
  188. # [01:43] * Quits: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net) (Quit: Boriss)
  189. # [01:43] <njn> tbsaunde: oh, does it? then you'd be ok if you never rebase. But then I ask, why do you never rebase?
  190. # [01:44] <markh> the use of mq means I rarely rebase in hg - the only times I do is when I lose a push-race. So ironically, I only rebase when pushing...
  191. # [01:44] <@ehsan> luke: ping
  192. # [01:44] <tbsaunde> njn: I always rebase in git before exporting patches since its easier
  193. # [01:45] <njn> markh: the use of mq means I rebase in hg all the time...
  194. # [01:45] <njn> tbsaunde: ah, ok
  195. # [01:45] <njn> markh: you don't qpop and then re-qpush every time you update, do you?
  196. # [01:45] <markh> njn: yeah, I do
  197. # [01:45] <njn> markh: |hg rebase| is *way* better
  198. # [01:45] <njn> markh: because it does three-way merges, so conflicts are much less likey and get resolved more easily
  199. # [01:46] * jcranmer|away does hg pul --rebase
  200. # [01:46] <njn> markh: yeah, I meant |hg pull --rebase|
  201. # [01:46] <njn> markh: you should try it, really
  202. # [01:47] <markh> yeah, sounds like I should!
  203. # [01:48] <njn> markh: it avoids the problem where some tiny thing has changed and so you have to manually fix up a large rejected hunk
  204. # [01:48] <njn> markh: instead you just have to resolve the conflict on the tiny change
  205. # [01:49] <markh> typically I only have 2 or 3 patches applied out of, say, 10 in the queue. "hg pull --rebase" will only solve that for the 2 or 3 applied when I do the pull (I guess). Is your workflow similar, or do you typically have most of your queue applied when updating?
  206. # [01:49] * nthomas|away is now known as nthomas
  207. # [01:51] <nthomas> glandium: ping
  208. # [01:51] <jcranmer|away> markh: I update infrequently, so I tend to push all of my patches before rebasing
  209. # [01:51] <@ehsan> roc: so, one question: how much total time would you expect UpdateCurrentTime() to take?
  210. # [01:51] <jcranmer|away> but most of my bitrotting is self-bitrot anyways
  211. # [01:53] * Joins: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br)
  212. # [01:53] * Quits: cviecco (cviecco@moz-63115BF4.hsd1.ca.comcast.net) (Input/output error)
  213. # [01:53] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  214. # [01:54] * Quits: marco (Thunderbir@moz-4CC5D791.cust.dsl.teletu.it) (Quit: marco)
  215. # [01:55] * Joins: m_kato (m_kato@moz-658AB552.tokyo.ocn.ne.jp)
  216. # [01:55] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  217. # [01:56] * Joins: clee (clee@moz-E3C0B5D0.hsd1.ca.comcast.net)
  218. # [01:56] <vlad> anyone know how I do a build with a crashreporter? I did --enable-crashreporter, but if I kill the resulting process I don't actually get the reporter
  219. # [01:56] <vlad> so I suspect I need to do something else to get it to actually tigger
  220. # [01:57] <@roc> ehsan: "not much"?
  221. # [01:57] * Quits: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com) (Input/output error)
  222. # [01:57] <tbsaunde> vlad: yeah, I think you need to set some env var for local builds
  223. # [01:58] <@ehsan> vlad: there's a MOZ_CRASHREPORTER env var iirc
  224. # [01:58] <vlad> bingo
  225. # [01:58] <vlad> thanks
  226. # [01:58] * Quits: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br) (Ping timeout)
  227. # [01:59] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/3c87e1fe617d - Gregory Szorc - Bug 844635 - Part 2: Don't require Makefile.in to exist; r=glandium
  228. # [01:59] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/336b6586074e - Gregory Szorc - Bug 844635 - Part 3: Remove empty Makefile.in files; r=glandium
  229. # [01:59] <Callek> also I don't *think* SIGKILL triggers it
  230. # [01:59] * Quits: shorlander (shorlander@moz-230AEA61.dhcp.insightbb.com) (Input/output error)
  231. # [01:59] <Callek> but I suspect ted or others can tell you more/better
  232. # [02:00] <@ehsan> roc: do you have any idea what a "normal" number of streams looks like?
  233. # [02:00] <@ehsan> roc: in my test case I have about 70 of them
  234. # [02:00] <@ehsan> is that too much?
  235. # [02:00] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  236. # [02:01] <Jesse> vlad: need a crash testcase to test the crash reporter? plenty here: https://bugzilla.mozilla.org/buglist.cgi?quicksearch=reporter%3Ajrud%20kw%3Acrash%20kw%3Atestcase
  237. # [02:02] * Quits: Asa (asa@363AA1C0.A1EC5031.204CA821.IP) (Ping timeout)
  238. # [02:02] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/0bbb5cacadaf - Trevor Saunders - bug 694254 - disable test_focus_browserui.xul on windows 7/8 to see if the leak goes away
  239. # [02:02] <Jesse> env vars for crash reporter are https://developer.mozilla.org/en-US/docs/Environment_variables_affecting_crash_reporting
  240. # [02:02] <@roc> ehsan: Web Audio will use a lot more streams than we did otherwise, that's expected.
  241. # [02:02] <Jesse> you'll probably also want a minidump_stackwalk
  242. # [02:02] <@ehsan> roc: phew :)
  243. # [02:03] <gps> crap. I forgot to update clobber on that last inbound push
  244. # [02:03] <Callek> gps: push an updated clobber, with DONTBUILD :-P
  245. # [02:04] <Callek> (as in, o so evil)
  246. # [02:04] * Joins: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com)
  247. # [02:04] <jcranmer|away> does it really matter to update the CLOBBER file?
  248. # [02:05] <Callek> yes :-P
  249. # [02:05] * Quits: lduros (user@moz-6BD87C4.phlapa.fios.verizon.net) (Client exited)
  250. # [02:06] <tbsaunde> Callek: so that people will be sure to touch it before kicking off there builds? :-P
  251. # [02:06] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/0a0951f42b0b - Gregory Szorc - Bug 844635 - Update CLOBBER; r=me DONTBUILD
  252. # [02:06] <Callek> tbsaunde: so that when it merges to another tree it forces us to know we need to clobber
  253. # [02:06] <Callek> gps: also was half joking about DONTBUILD, since we still need to mark clobber (again) for the clobber file change
  254. # [02:07] <tbsaunde> Callek: I suppose that makes sense
  255. # [02:08] * Joins: karl (karl@538BABFE.A073F3E.97BBD552.IP)
  256. # [02:10] <@ehsan> roc: so now UpdateCurrentTime takes ~34% of the time on the MSG thread for me, which is about twice as long as we sleep in that thread
  257. # [02:10] <@ehsan> roc: I'm still not quite happy with that
  258. # [02:11] <jlebar> Has anyone had success building FF with xcode 4.6.1? I keep getting bugged to upgrade, but at least at one point there were issues.
  259. # [02:11] * Quits: clee (clee@moz-E3C0B5D0.hsd1.ca.comcast.net) (Quit: clee)
  260. # [02:11] <@ehsan> jlebar: I upgraded a couple of days ago but have not noticed any problems
  261. # [02:11] <@ehsan> jlebar: but I use my own compiler
  262. # [02:11] <jlebar> ehsan: Ah, you use your own build of llvm?
  263. # [02:11] <@ehsan> so that's just using the linker + os headers/libs
  264. # [02:11] <jlebar> I see, okay.
  265. # [02:11] <@ehsan> jlebar: yeah, as so should everybody ;)
  266. # [02:12] <@ehsan> the less you rely on apple the merrier ;)
  267. # [02:12] <tbsaunde> ehsan: then just run linux ;)
  268. # [02:13] <@ehsan> that's... another conversation ;)
  269. # [02:13] <tbsaunde> 0haha
  270. # [02:13] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  271. # [02:14] <Callek> use windows instead of Linux/OSX
  272. # [02:14] <Callek> and then Virtualbox for everything you can't normally do in windows
  273. # [02:14] <Callek> (which is sadly, a lot)
  274. # [02:14] <@ehsan> Callek: so, use VirtualBox for day to day work? ;)
  275. # [02:15] <jcranmer|away> ehsan: it's what I do
  276. # [02:15] <Callek> ehsan: yea, I'm on windows myself, which in releng is quite odd.... I'm tempted to have work give me a linux laptop soon, for my day-to-day, since using virtualbox, or remote systems for the basic stuff is a PITA
  277. # [02:16] <@ehsan> I hear you
  278. # [02:16] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Input/output error)
  279. # [02:17] <Callek> (I'm the ONLY releng person using windows for day-to-day -- everyone else is linux or osx)
  280. # [02:20] * Joins: Mathnerd314 (quassel@moz-195E87F.rh.uchicago.edu)
  281. # [02:21] * Quits: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com) (Client exited)
  282. # [02:22] * Quits: njn (chatzilla@moz-83DDCCB5.dyn.iinet.net.au) (Client exited)
  283. # [02:22] * Joins: njn (chatzilla@moz-83DDCCB5.dyn.iinet.net.au)
  284. # [02:23] <reuben> do you enjoy suffering?
  285. # [02:26] * Quits: Quan3 (chatzilla@moz-9505990C.dclient.hispeed.ch) (Ping timeout)
  286. # [02:26] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/19e6f5093cad - Ehsan Akhgari - Bug 851966 - Only store the produced AudioChunks for AudioNodeStreams that will result in playback; r=roc
  287. # [02:28] * Joins: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br)
  288. # [02:30] <@roc> ehsan: yes, that's not good. A more detailed profile would be helpful
  289. # [02:31] * Joins: dbaron (dbaron@moz-E0DDE997.dsl.dynamic.sonic.net)
  290. # [02:31] * ChanServ sets mode: +o dbaron
  291. # [02:31] * Joins: schien-laptop (schien@moz-99690620.hinet-ip.hinet.net)
  292. # [02:32] * Joins: haunter (AndChat706@13E26C68.EC3A2C3E.9BC10BA2.IP)
  293. # [02:33] * Quits: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br) (Ping timeout)
  294. # [02:33] <@ehsan> roc: JSBindingFinalized
  295. # [02:33] <@ehsan> oh
  296. # [02:34] <@ehsan> roc: http://grab.by/kNcm
  297. # [02:34] <@ehsan> :)
  298. # [02:34] * Quits: ewong|away (chatzilla@moz-E5D50C2E.static.netvigator.com) (Ping timeout)
  299. # [02:35] <@ehsan> roc: no big offenders, just wasting time on array manipulations... :/
  300. # [02:36] <@roc> still spending 16% in ForgetUpTo which seems high
  301. # [02:36] <@roc> dunno where the rest is going
  302. # [02:36] <@roc> maybe some of the array stuff would benefit from Auto-izing
  303. # [02:37] <@ehsan> yeah I'll give that a shot
  304. # [02:37] * Joins: cabanier (cabanier@moz-6A1F2F2C.hsd1.wa.comcast.net)
  305. # [02:38] <@roc> watch out for the "autoarray in array" footgun
  306. # [02:39] * Joins: bnicholson (bnicholson@moz-E98974C1.hsd1.ca.comcast.net)
  307. # [02:42] * Quits: cabanier (cabanier@moz-6A1F2F2C.hsd1.wa.comcast.net) (Quit: Leaving.)
  308. # [02:44] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/bc8fdc013fd2 - Brian Nicholson - Bug 850424 - Clear private download notifications on last-pb-context-exited. r=mfinkle a=bajaj
  309. # [02:47] * Joins: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net)
  310. # [02:47] * Joins: Asa (asa@363AA1C0.A1EC5031.204CA821.IP)
  311. # [02:47] * nthomas is now known as nthomas|away
  312. # [02:48] * Quits: @dbaron (dbaron@moz-E0DDE997.dsl.dynamic.sonic.net) (Ping timeout)
  313. # [02:50] * Quits: nattofriends (tsutsumi@moz-A369A791.warosu.org) (Ping timeout)
  314. # [02:50] * Joins: kanru (kanru@moz-99690620.hinet-ip.hinet.net)
  315. # [02:50] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  316. # [02:50] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/60ab8fd2676b - Ehsan Akhgari - Bug 851986 - Avoid calling a virtual function when getting the source for an AudioNodeStream; r=roc
  317. # [02:51] <@ehsan> roc: what's that?
  318. # [02:51] * Joins: nattofriends (tsutsumi@moz-A369A791.warosu.org)
  319. # [02:52] * Joins: cabanier (cabanier@moz-6A1F2F2C.hsd1.wa.comcast.net)
  320. # [02:55] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/5cd5d96f223c - Nicholas Nethercote - Bug 847248 (part 10) - Rewrite TimerEventAllocator and remove nsFixedSizeAllocator. r=bz,ehsan; sr=bsmedberg.
  321. # [02:55] <njn> another crappy custom allocator bites the dust
  322. # [02:56] * Quits: Fallen|away (Fallen@moz-F0262F50.ch) (Ping timeout)
  323. # [02:56] * Quits: [d3f3kt] (d3f3kt@moz-C52AEF.server4you.de) (Ping timeout)
  324. # [02:57] * Joins: Fallen|away (Fallen@moz-F0262F50.ch)
  325. # [02:57] * Quits: Hixie (ianh@C6D27F7B.5EFFBB68.81BC061B.IP) (Ping timeout)
  326. # [02:57] * Joins: Hixie (ianh@C6D27F7B.5EFFBB68.81BC061B.IP)
  327. # [02:57] * Joins: [d3f3kt] (d3f3kt@moz-C52AEF.server4you.de)
  328. # [02:57] * [d3f3kt] is now known as d3f3kt
  329. # [02:57] <JonathanS> I am wondering why Firefox has too much custom allocator?
  330. # [02:58] <njn> JonathanS: I don't understand the question
  331. # [03:00] * Quits: cabanier (cabanier@moz-6A1F2F2C.hsd1.wa.comcast.net) (Quit: Leaving.)
  332. # [03:00] * Joins: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net)
  333. # [03:00] * philor stabs the entire CLOBBER clobberer house of cards
  334. # [03:00] * Joins: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net)
  335. # [03:02] * Quits: mattwoodrow (mattwoodro@moz-AE9416F2.alliedmods.net) (Ping timeout)
  336. # [03:02] * Quits: qDot (qDot@moz-82DD3414.typefuck.com) (Ping timeout)
  337. # [03:02] <philor> really, the only way to make it work involves "Step 1. Close the tree in question"
  338. # [03:02] <JonathanS> njn, was there is like 20 custom allocators in Firefox?
  339. # [03:02] * Joins: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br)
  340. # [03:02] * Joins: surkov (surkov@511E724B.E00BF004.E17943EE.IP)
  341. # [03:03] <Jesse> JonathanS: https://bugzilla.mozilla.org/show_bug.cgi?id=847248#c20
  342. # [03:03] * Joins: mattwoodrow (mattwoodro@moz-AE9416F2.alliedmods.net)
  343. # [03:03] * Joins: qDot (qDot@moz-82DD3414.typefuck.com)
  344. # [03:03] <njn> JonathanS: not that many. I've removed two of note: nsFixedSizeAllocator and nsRecyclingAllocator
  345. # [03:03] <tbsaunde> philor: and since every other patch needs a clobber clearly we should just close the tree period ;)
  346. # [03:03] <njn> JonathanS: and fixed problems in some of the other ones, notably PLArenaPool
  347. # [03:03] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/246083a5c939 - Joe Drew - Bug 851985 - Mark tests that don't reliably block onload (or loadeddata) as random. r=doublec
  348. # [03:05] <philor> tbsaunde: yeah, I say we just make RyanVM push everything
  349. # [03:08] * Quits: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br) (Ping timeout)
  350. # [03:10] * Joins: shorlander (shorlander@moz-230AEA61.dhcp.insightbb.com)
  351. # [03:10] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/bd6476403edd - Joshua Yuan - bug 833256 - role=note should use eFromSubTreeIfRec name rule not eFromSubTree r=tbsaunde f=surkov
  352. # [03:10] * Parts: brankc (brankc@moz-29FFE1B5.me) (Leaving)
  353. # [03:11] * mattwoodrow is now known as mattwoodrow|away
  354. # [03:11] * Quits: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net) (Ping timeout)
  355. # [03:11] * Joins: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net)
  356. # [03:12] * Quits: shorlander (shorlander@moz-230AEA61.dhcp.insightbb.com) (Ping timeout)
  357. # [03:13] * mattwoodrow|away is now known as mattwoodrow
  358. # [03:13] * Quits: chewey (chewey@moz-AD4A69C1.dip0.t-ipconnect.de) (NickServ (GHOST command used by chewey_))
  359. # [03:14] * Joins: chewey (chewey@moz-4E8630C3.dip0.t-ipconnect.de)
  360. # [03:14] * Joins: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com)
  361. # [03:14] * Joins: GinaYeh-laptop (GinaYeh@moz-3BC722CB.hfc.comcastbusiness.net)
  362. # [03:14] * Quits: KaiRo (robert@moz-3D00669C.adsl.highway.telekom.at) (Input/output error)
  363. # [03:14] * Quits: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net) (Ping timeout)
  364. # [03:18] * Quits: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com) (Client exited)
  365. # [03:18] * Joins: sicking (sicking@moz-7F871C5C.hsd1.ca.comcast.net)
  366. # [03:19] * Joins: ewong (chatzilla@moz-3CBEA671.ctinets.com)
  367. # [03:19] * Joins: shorlander (shorlander@moz-230AEA61.dhcp.insightbb.com)
  368. # [03:22] * nthomas|away is now known as nthomas
  369. # [03:22] * Quits: GinaYeh-laptop (GinaYeh@moz-3BC722CB.hfc.comcastbusiness.net) (Ping timeout)
  370. # [03:26] * Joins: vicamo (vicamo@moz-99690620.hinet-ip.hinet.net)
  371. # [03:28] * Quits: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net) (Connection reset by peer)
  372. # [03:31] * Joins: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net)
  373. # [03:33] * Joins: mreavy (chatzilla@EAD4CC8E.81F0BF77.FB8DBAA3.IP)
  374. # [03:34] * Quits: nattofriends (tsutsumi@moz-A369A791.warosu.org) (Ping timeout)
  375. # [03:34] * Joins: nattofriends (tsutsumi@moz-A369A791.warosu.org)
  376. # [03:34] * Joins: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net)
  377. # [03:35] * Quits: bholley (anonymous@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  378. # [03:36] * Joins: cabanier (cabanier@moz-6A1F2F2C.hsd1.wa.comcast.net)
  379. # [03:37] * Joins: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br)
  380. # [03:38] * Joins: squib (squib@moz-B01B5D55.dhcp.mdsn.wi.charter.com)
  381. # [03:41] * Quits: haunter (AndChat706@13E26C68.EC3A2C3E.9BC10BA2.IP) (Ping timeout)
  382. # [03:43] * Quits: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net) (Quit: Leaving.)
  383. # [03:43] * Quits: mreavy (chatzilla@EAD4CC8E.81F0BF77.FB8DBAA3.IP) (Ping timeout)
  384. # [03:43] * Quits: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br) (Ping timeout)
  385. # [03:43] * Joins: jesup|laptop (chatzilla@EAD4CC8E.81F0BF77.FB8DBAA3.IP)
  386. # [03:47] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  387. # [03:49] * Quits: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net) (Ping timeout)
  388. # [03:49] * Joins: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net)
  389. # [03:49] * Joins: ehugg (ehugg@moz-44D86B1E.cisco.com)
  390. # [03:54] * Quits: Callek (chatzilla@moz-DD17331C.dhcp.oxfr.ma.charter.com) (Quit: ChatZilla 0.9.90 [Firefox 21.0a2/20130311042011])
  391. # [03:59] * Quits: kanru (kanru@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  392. # [04:01] * Joins: kanru (kanru@moz-99690620.hinet-ip.hinet.net)
  393. # [04:03] * Joins: pranavrc (pranavrc@A38087BE.5FE01038.C28326FD.IP)
  394. # [04:04] * Quits: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP) (Connection reset by peer)
  395. # [04:04] * Joins: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP)
  396. # [04:04] * Joins: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br)
  397. # [04:05] * ewong is now known as ewong|afk
  398. # [04:05] * Quits: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net) (Ping timeout)
  399. # [04:06] <philor> sigh
  400. # [04:06] * Quits: Tommy (Tommy@moz-F7051E24.com) (Ping timeout)
  401. # [04:06] <philor> is https://hg.mozilla.org/integration/mozilla-inbound/rev/0bbb5cacadaf only broken because it forgot to call finish()?
  402. # [04:06] * Quits: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br) (Ping timeout)
  403. # [04:07] * Joins: yzen (Adium@AA2C085E.10C8AEF8.9A8C35B4.IP)
  404. # [04:07] * Joins: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net)
  405. # [04:07] <philor> no, since it would still leave the window open
  406. # [04:07] <philor> tbsaunde: sorry, backing you out again
  407. # [04:10] * Joins: Tommy (Tommy@moz-F7051E24.com)
  408. # [04:10] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/9c7dea4aed4b - Phil Ringnalda - Back out 0bbb5cacadaf (bug 694254) for timing out on Windows
  409. # [04:11] * Joins: Callek (chatzilla@moz-DD17331C.dhcp.oxfr.ma.charter.com)
  410. # [04:11] * Quits: Bas (chatzilla@moz-B5499ED5.rev.sfr.net) (Input/output error)
  411. # [04:11] * Joins: jryans (jryans@moz-CC5DCFB.austin.res.rr.com)
  412. # [04:11] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  413. # [04:13] * Quits: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net) (No route to host)
  414. # [04:13] <@roc> ehsan: if you try to use nsTArray<T> where T contains a member that's an nsAutoTArray, you lose
  415. # [04:13] * ewong|afk is now known as ewong
  416. # [04:13] <@roc> nsTArrays memmove their storage and nsAutoTArray keeps an internal pointer to its buffer, so memmoving breaks it
  417. # [04:13] <ekr> Say I have some xpidl interface and I now want to implement the class. Is there some way to autogenerate stubs?
  418. # [04:14] <@roc> XPIDL or WebIDL?
  419. # [04:14] <ekr> (The context is that the interface is an observer and I want to ignore like 80% of the stuff)
  420. # [04:14] <ekr> XPIDL
  421. # [04:14] <@roc> XPIDL-generated .h files contain a stub
  422. # [04:14] <ekr> Hmm....
  423. # [04:14] <ekr> Do I need a different macro?
  424. # [04:14] * Quits: Tommy (Tommy@moz-F7051E24.com) (Ping timeout)
  425. # [04:15] <@roc> you'd probably have to copy and paste it
  426. # [04:15] <ekr> Or just don't do NS_DECL_FOO
  427. # [04:15] <@roc> see /* Use the code below as a template for the implementation class for this interface. */
  428. # [04:15] <ekr> That seems rather wasteful.
  429. # [04:16] <@roc> what observer interface are you implmeenting?
  430. # [04:16] <ekr> IPeerConnectionObserver
  431. # [04:18] <ekr> Yeah, so that appears to be pure virtual
  432. # [04:18] * Quits: ehugg (ehugg@moz-44D86B1E.cisco.com) (Quit: ehugg)
  433. # [04:18] <ekr> which is going to make things sad when I try to instantiate it
  434. # [04:18] <@roc> might be worth creating a StubPeerConnectionObserver class that ignores all the methods and inheriting fromthat
  435. # [04:18] <ekr> So, what I was kind of hoping here was that there would be a macro that would do that so that then when someone adds a new OnFoo method, my code continued to compile
  436. # [04:19] * Joins: Tommy (Tommy@moz-F7051E24.com)
  437. # [04:19] <@roc> another thing to consider is whether IPeerConnectionObserver really needs to be scriptable ... if it doesn't, it can be replaced with a plain C++ .h file that can define default implementations for the mehtods
  438. # [04:19] <@roc> I don't see how you would do that in C++
  439. # [04:19] <tbsaunde> philor: it'll anoy you more than me :p
  440. # [04:19] <ekr> What do you mean? If the generated interface just wasn't pure virtual, everything would work fine.
  441. # [04:20] * Quits: wg9s (bill@moz-E9E3CA35.hsd1.ma.comcast.net) (Quit: ChatZilla 0.9.87-5.1450hg.fc17 [XULRunner 19.0.2/20130311162058])
  442. # [04:20] <ekr> Like, I would only override the fxns I needed.
  443. # [04:20] * Joins: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net)
  444. # [04:20] * philor considers how he can change that mixedup state of affairs
  445. # [04:21] <ekr> whereas if I create a stub, I'll have to update the stub, right?
  446. # [04:21] <jesup|laptop> yup - or whomever adds the method will have to
  447. # [04:21] <ekr> jesup|laptop: So, that seems sort of pessimal
  448. # [04:21] <@ehsan> roc: wow!
  449. # [04:22] <@roc> wow?
  450. # [04:23] <@roc> at least if there's a shared stub class only one other class needs to be updated
  451. # [04:23] <ekr> sure, but wouldn't a better fix to be to have the idl compiler autogenerate that shared stub class?
  452. # [04:23] <@roc> I suppose one could extend XPIDL to have an attribute that generates a return NS_OK body...
  453. # [04:23] <ekr> Seeing as it's already spewing out the template into the .h file in any case?
  454. # [04:23] <jesup|laptop> It's possible that 'someone' thought that have a macro-ized default impl that's always overridden would cause wasteful dead code (which may be eliminated by the linker, of course)
  455. # [04:23] <tbsaunde> ekr: seems less bad than somebody forgeting to implement something
  456. # [04:24] <ekr> tbsaunde: but that's the nature of observers
  457. # [04:24] <ekr> I'm not forgetting to implement stuff, I want to ignore 95% of it
  458. # [04:24] <jesup|laptop> sounds like you want ObjC instead of c++ ;-) (IIRC)
  459. # [04:24] * Quits: sicking (sicking@moz-7F871C5C.hsd1.ca.comcast.net) (Quit: sicking)
  460. # [04:24] <tbsaunde> ekr: I guess a stub that wasn't the default wouldn't be too bad
  461. # [04:25] <ekr> jesup: why would you say that? This is totally doable in C++, it's just that the IDL compiler deliberately doesn't do it.
  462. # [04:25] <tbsaunde> ekr: but what happens when you add a new method and all the impls need to actually define it?
  463. # [04:26] * Joins: ehugg (ehugg@moz-44D86B1E.cisco.com)
  464. # [04:26] <tbsaunde> like sure we *could& fix it but 1 why are you using xpidl in the first place, and 2 is NS_IMETHODIMP foo::Bar() { return NS_OK; } really that bad?
  465. # [04:26] <ekr> tbsaunde: I'd be fine with having some way to tag the idl so that things didn't get stubs
  466. # [04:27] <ekr> tbsaunde: I'm not using xpidl. Someone else wrote an interface that used xpidl like a year ago and now I'm just stuck implementing the interface. I'm writing a unit test, a refactor shouldn't be required here.
  467. # [04:27] * Quits: bnicholson (bnicholson@moz-E98974C1.hsd1.ca.comcast.net) (Ping timeout)
  468. # [04:28] <ekr> As for whether writing NS_IMETHODIMP foo::Bar() { return NS_OK; } is bad, there are 19 observer methods and I care about two, so yeah, it's pretty lame
  469. # [04:28] * Quits: ehugg (ehugg@moz-44D86B1E.cisco.com) (Ping timeout)
  470. # [04:29] <@roc> ehsan: which TimeVarying<> array was causing this badness?
  471. # [04:29] * Joins: gwagner (Gregor@moz-B8B530C2.hsd1.ca.comcast.net)
  472. # [04:29] <@ehsan> roc: one or all of the ones modified in AdvanceTimeVaryingValuesToCurrentTime
  473. # [04:29] <@ehsan> roc: hard to say since that function is inlined
  474. # [04:30] <jesup|laptop> ekr: just that dynamic OO languages tend to default to ignoring unknown methods (haven't done ObjC in ages, so I can't remember for sure about it)
  475. # [04:30] <tbsaunde> ekr: if you want to spend time working on the xpidl compiler I'm not going to stop you, but imo that time is better spent refactoring stuff to not use xpidl in the first place
  476. # [04:30] * Joins: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk)
  477. # [04:30] * @roc agrees
  478. # [04:31] <ekr> tbsaunde: no, I'm just going to cut copy and paste all this nonsense, since that's the easiest path forward.
  479. # [04:32] * Joins: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net)
  480. # [04:32] <@roc> ehsan: I'd quite like to know
  481. # [04:32] <@ehsan> hmm
  482. # [04:32] * Joins: aklotz (Thunderbir@moz-B5499ED5.rev.sfr.net)
  483. # [04:33] <@roc> because in the steady state I'd hope most of those arrays are empty
  484. # [04:34] * Quits: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net) (Ping timeout)
  485. # [04:35] <@ehsan> roc: ok, let me think of how I can find out...
  486. # [04:35] <@ehsan> roc: problem is, I can't debug this testcase :(
  487. # [04:35] <@roc> you don't have the code?
  488. # [04:35] <@ehsan> I guess I can log |this| and also all of the TimeVarying addresses and try to find a match?
  489. # [04:36] <@ehsan> roc: I do, but it's huge and uses asm.js
  490. # [04:36] <@ehsan> which is not debugger friendly
  491. # [04:36] <@roc> why don't you just attach a debugger and inspect the current contents of the arrays?
  492. # [04:36] * ewong is now known as ewong|afk
  493. # [04:36] <ekr> it's wasteful, but less effort than cleaning up the rest of the mess
  494. # [04:36] <@roc> by breaking in a random invocation of UpdateCurrentTime?
  495. # [04:37] <@roc> hmm, so we have asm.js calling into Web Audio now? That's pretty cool :-)
  496. # [04:37] <@ehsan> roc: yeah we do!
  497. # [04:38] <@ehsan> through a bunch of FFI interfaces of course
  498. # [04:38] <@ehsan> read: dog slo
  499. # [04:38] <@ehsan> *slow
  500. # [04:38] <@ehsan> roc: problem is that asm.js uses segfaults, and I have not managed to get gdb do the right thing when it's attached
  501. # [04:38] <@roc> because of the asm.js overhead for making outside calls?
  502. # [04:39] <@ehsan> yeah
  503. # [04:39] <@ehsan> asm.js->regular js is super expensive now
  504. # [04:39] <@roc> is Luke going to fix that in time?
  505. # [04:39] <@ehsan> and my OpenAL implementation is in regular js
  506. # [04:39] <@ehsan> not sure if that will happen before GDC
  507. # [04:39] * Quits: Asa (asa@363AA1C0.A1EC5031.204CA821.IP) (Ping timeout)
  508. # [04:40] <@ehsan> azakai has been writing a bunch of asm.js libc implementations to avoid the cost in very hot calls
  509. # [04:40] <@ehsan> which is super cool!
  510. # [04:40] <@roc> ok, another option is to dump code into UpdateCurrentTime to log if a particular changes array has more changes than some shreshold
  511. # [04:41] <@ehsan> mChanges has 1 member in most of the call sites that I instrumented
  512. # [04:41] <@ehsan> and 2 or 3 in some others
  513. # [04:41] <@ehsan> but give me a sec
  514. # [04:41] <@ehsan> I may just be able to extract this info without a debugger ;)
  515. # [04:41] <@ehsan> debuggers are overrated ;)
  516. # [04:41] * Joins: Asa (asa@363AA1C0.A1EC5031.204CA821.IP)
  517. # [04:42] <vlad> ted: around?
  518. # [04:42] <vlad> ehsan: oh, I asked luke earlier
  519. # [04:42] <vlad> ehsan: about the segfaults and stuff
  520. # [04:42] <@ehsan> what did he say?
  521. # [04:42] <vlad> ehsan: he said the easiest thing is to just disable the asmjs exception handler installation
  522. # [04:43] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Input/output error)
  523. # [04:43] <vlad> in js/src/ion/AsmJS.cpp
  524. # [04:43] <vlad> look for EnsureAsmJSSignalHandlersInstalled
  525. # [04:43] <vlad> and just comment it out, rebuild js/src
  526. # [04:43] <vlad> and then just know that you can get owned through that browser :D
  527. # [04:43] <@ehsan> heh nice
  528. # [04:44] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/02b242697afb - Nicholas Nethercote - Bug 850523 (part 1) - Add a "js-main-runtime-temporary-peak" memory reporter. r=wmccloskey,jlebar.
  529. # [04:44] <@ehsan> but I can't do it now
  530. # [04:44] <@ehsan> cause I just broke python
  531. # [04:44] <@ehsan> and I can't build any more :((((
  532. # [04:44] <vlad> how did you break python?
  533. # [04:44] <vlad> what
  534. # [04:44] <@ehsan> gps: roaaaaar
  535. # [04:44] * Quits: azakai|far (alon@moz-8D0CC798.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  536. # [04:44] <@ehsan> gps: installing a non-system python was terrible advice :(
  537. # [04:44] <vlad> ew
  538. # [04:44] <vlad> can't you just.. remove all that?
  539. # [04:45] <@ehsan> I don't know how to unf**k my system now
  540. # [04:45] <@ehsan> omg
  541. # [04:45] <@ehsan> just what I needed
  542. # [04:45] <reuben> how did you install python?
  543. # [04:46] <@ehsan> ok there we go
  544. # [04:46] <@ehsan> fink remove mercurial
  545. # [04:46] <@ehsan> reuben: fink
  546. # [04:46] <@ehsan> osx doesn't like that one bit though
  547. # [04:46] <reuben> eeeeeeeeek
  548. # [04:47] <reuben> http://mxcl.github.com/homebrew/
  549. # [04:47] <@ehsan> crap
  550. # [04:47] <@ehsan> that didn't help
  551. # [04:47] * @ehsan panics
  552. # [04:48] * Parts: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net) (Leaving...)
  553. # [04:48] <@ehsan> does anyone know how to reinstall osx system python?
  554. # [04:48] <@ehsan> should I grab a new package from python.org?
  555. # [04:49] <@ehsan> anyone?
  556. # [04:49] <reuben> ehsan: do you have an OS X image?
  557. # [04:49] <@ehsan> no
  558. # [04:49] <reuben> hm :|
  559. # [04:50] * @ehsan downloads the python.org package
  560. # [04:50] <@ehsan> not much more left to lose I guess
  561. # [04:50] <reuben> have you actually removed the system python? usually package managers will put installed stuff in a different prefix, like /usr/local/
  562. # [04:50] <reuben> I have three Python versions, two that I installed and the system one
  563. # [04:50] <reuben> system is in /usr and the ones I installed in /usr/local
  564. # [04:51] <firebot> Check-in:
  565. # [04:51] <@ehsan> no, that binary is there
  566. # [04:51] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ba70784af08b - Jan Varga - Bug 847099 - Intermittent test_readonly_lockedfiles.html | Assertion count {2,4} is greater than expected range (Didn't find the locked file we were looking for!:
  567. # [04:51] * Quits: JeroenDeDauw (j@moz-929B6E6B.dip.t-dialin.net) (Ping timeout)
  568. # [04:51] <firebot> 'mLockedFileQueues.Length()...) followed by a timeout in test_add_put.html et al (bug 783913). r=bent
  569. # [04:51] <@ehsan> but seems like my python packages are not quite there
  570. # [04:51] <@ehsan> things like __future__
  571. # [04:51] <@ehsan> which the mozilla build system depends on
  572. # [04:51] * Joins: JeroenDeDauw (j@moz-121E1E3B.dip.t-dialin.net)
  573. # [04:52] <reuben> maybe you have a broken PYTHONPATH, what's the output of |python -c "import sys; print(sys.path)"|
  574. # [04:54] <@ehsan> ['', '/Library/Python/2.7/site-packages/pip-1.2.1-py2.7.egg', '/Library/Python/2.7/site-packages/mozregression-0.6.3-py2.7.egg', '/Library/Python/2.7/site-packages/mozcommitbuilder-0.4.10-py2.7.egg', '/Library/Python/2.7/site-packages/BeautifulSoup-3.2.1-py2.7.egg', '/Library/Python/2.7/site-packages/mozrunner-5.14-py2.7.egg', '/Library/Python/2.7/site-packages/httplib2-0.7.6-py2.7.egg', '/Library/Python/2.7/site-packages/simpl
  575. # [04:54] <@ehsan> ejson-2.6.2-py2.7-macosx-10.8-intel.egg', '/Library/Python/2.7/site-packages/pulsebuildmonitor-0.64-py2.7.egg', '/Library/Python/2.7/site-packages/mozprofile-0.4-py2.7.egg', '/Library/Python/2.7/site-packages/mozprocess-0.8-py2.7.egg', '/Library/Python/2.7/site-packages/mozinfo-0.4-py2.7.egg', '/Library/Python/2.7/site-packages/MozillaPulse-.5-py2.7.egg', '/Library/Python/2.7/site-packages/ManifestDestiny-0.5.6-py2.7.egg', '/Li
  576. # [04:54] <@ehsan> brary/Python/2.7/site-packages/pytz-2012h-py2.7.egg', '/Library/Python/2.7/site-packages/carrot-0.10.7-py2.7.egg', '/Library/Python/2.7/site-packages/amqplib-1.0.2-py2.7.egg', '/Library/Python/2.7/site-packages/anyjson-0.3.3-py2.7.egg', '/Users/ehsanakhgari/moz/mozilla-central', '/Users/ehsanakhgari/moz/droplettr', '/Users/ehsanakhgari/code/python', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python27.zip', '/Library
  577. # [04:54] <@ehsan> /Frameworks/Python.framework/Versions/2.7/lib/python2.7', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-darwin', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/lib-scriptpackages', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk', '/Library/Frameworks/Python.framework/Versions/2.
  578. # [04:54] <@ehsan> 7/lib/python2.7/lib-old', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages', '/Library/Python/2.7/site-packages']
  579. # [04:55] <@ehsan> so
  580. # [04:55] <@ehsan> it looks like removing the objdir at least gets me through configure
  581. # [04:56] <@ehsan> roc: so, I'm rebuilding now
  582. # [04:56] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/e0038e628250 - Nicholas Nethercote - Bug 850523 (part 2) - Use C++ comments in LifoAlloc.{cpp,h}. r=wmccloskey.
  583. # [04:56] <@ehsan> roc: assuming that the build finishes in about half an hour, I may or may not be able to give you the answer tonight
  584. # [04:56] <@ehsan> cause it's 12:00am, and it's Sunday!
  585. # [04:57] <@ehsan> roc: if I go to sleep before the build finishes, I'll comment on the bug
  586. # [04:57] * Quits: Matti_away (Matti@moz-FC1E65D1.dip.t-dialin.net) (Ping timeout)
  587. # [04:57] <@ehsan> roc: but can you please say on the bug what you want me to do depending on which TimeVarying is at fault, to save one turnaround?
  588. # [04:59] * glob|away is now known as glob
  589. # [04:59] * Joins: azakai|far (alon@moz-8D0CC798.lightspeed.sntcca.sbcglobal.net)
  590. # [05:01] * Joins: Matti (Matti@moz-845B4B56.dip.t-dialin.net)
  591. # [05:03] * Quits: sfink (chatzilla@moz-56D5AE07.dsl.pltn13.sbcglobal.net) (Ping timeout)
  592. # [05:03] * Joins: twi (Adium@moz-12EC5C5D.ip243.fastwebnet.it)
  593. # [05:04] * Joins: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net)
  594. # [05:06] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr)
  595. # [05:06] * Joins: Ann_Yimi_ (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  596. # [05:07] * Quits: rlewis (Thunderbir@moz-D47321EC.cable.virginmedia.com) (Ping timeout)
  597. # [05:08] * Joins: dherman (dherman@moz-6CA476B1.hsd1.ca.comcast.net)
  598. # [05:11] * Quits: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net) (Ping timeout)
  599. # [05:11] * Quits: twi (Adium@moz-12EC5C5D.ip243.fastwebnet.it) (Quit: Leaving.)
  600. # [05:12] <@roc> sure
  601. # [05:12] * Joins: twi (Adium@moz-12EC5C5D.ip243.fastwebnet.it)
  602. # [05:13] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  603. # [05:13] <tbsaunde> philor: I tested https://tbpl.mozilla.org/?tree=Try&rev=4c4f2d5edb3e both ways so I expect it'll go green
  604. # [05:13] * Joins: twi1 (Adium@moz-12EC5C5D.ip243.fastwebnet.it)
  605. # [05:13] * Quits: twi (Adium@moz-12EC5C5D.ip243.fastwebnet.it) (Connection reset by peer)
  606. # [05:14] <tbsaunde> feel free to push that if you like
  607. # [05:14] * Quits: Ann_Yimi_ (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Connection reset by peer)
  608. # [05:14] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  609. # [05:15] * Joins: Gentlecat_ (Roman@8942624D.7D1F96C3.8FB52CB8.IP)
  610. # [05:16] * mcote|afk is now known as mcote
  611. # [05:17] * Joins: clee (clee@moz-E3C0B5D0.hsd1.ca.comcast.net)
  612. # [05:17] <philor> tbsaunde: okay, thanks!
  613. # [05:18] * Joins: tomer (tomer@moz-F45DAEFD.static.012.net.il)
  614. # [05:20] * Joins: sfink (chatzilla@moz-BDA04DE7.dsl.pltn13.sbcglobal.net)
  615. # [05:22] * Quits: dherman (dherman@moz-6CA476B1.hsd1.ca.comcast.net) (Quit: dherman)
  616. # [05:22] <vlad> argh, I rebuilt inside a subdir in my mac objdir
  617. # [05:22] <vlad> and now i'm getting "Undefined symbols for architecture x86_64: ..."
  618. # [05:23] <vlad> of course all my .o files are x86_64, hmm
  619. # [05:23] <sfink> stop pinging me, chatzilla
  620. # [05:23] <sfink> fink no want to remove mercurial
  621. # [05:23] <sfink> leave fink alone
  622. # [05:23] <sfink> fink go bed soon
  623. # [05:25] * Quits: mcote (mcote@1D8E4B86.9B0C981.6C85A25D.IP) (Ping timeout)
  624. # [05:25] * Joins: mcote (mcote@1D8E4B86.9B0C981.6C85A25D.IP)
  625. # [05:27] <reuben> fink good engineer, not so good package manager
  626. # [05:27] <vlad> oh derp
  627. # [05:29] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Connection reset by peer)
  628. # [05:29] * Joins: Ann_Yimi_ (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  629. # [05:30] <Callek> sfink: don't remove mercurial!
  630. # [05:30] <Callek> also goodnight
  631. # [05:30] * Callek has no context
  632. # [05:30] * Joins: bholley (anonymous@moz-FCAF9AAB.hsd1.ca.comcast.net)
  633. # [05:35] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr)
  634. # [05:35] * Quits: Optimizer (Optimizer@93DD8997.ECDD7E84.BE90E62C.IP) (Ping timeout)
  635. # [05:36] * Quits: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net) (Quit: ehugg)
  636. # [05:38] * Joins: Ameya (chatzilla@302ED3B3.3F5CAD8C.4A5F0685.IP)
  637. # [05:38] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/1fcf5b4a953e - Masayuki Nakano - Bug 807241 Use ITfMessagePump and ITfKeystrokeMgr r=jimm
  638. # [05:39] * Joins: Optimizer (Optimizer@4947F1F4.AD3058D5.BE90E62C.IP)
  639. # [05:39] * Quits: jryans (jryans@moz-CC5DCFB.austin.res.rr.com) (Quit: Linkinus - http://linkinus.com)
  640. # [05:39] * Quits: Ameya (chatzilla@302ED3B3.3F5CAD8C.4A5F0685.IP) (Ping timeout)
  641. # [05:39] * Joins: jryans (jryans@moz-CC5DCFB.austin.res.rr.com)
  642. # [05:40] * Joins: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net)
  643. # [05:41] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d67b2524bd3f - Bobby Holley - Bug 813901 - Tests. r=mrbkap
  644. # [05:41] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b8e357cea6f6 - Bobby Holley - Bug 850000 - Don't clobber exceptions set in security wrapper check() hooks. r=mrbkap
  645. # [05:44] * Quits: aklotz (Thunderbir@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  646. # [05:45] <Jesse> bholley: should the ".name =" in https://bugzilla.mozilla.org/show_bug.cgi?id=851996 make me suspicious of it being a regression from https://bugzilla.mozilla.org/show_bug.cgi?id=850517 ?
  647. # [05:45] * Quits: cpearce (chatzilla@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  648. # [05:45] <bholley> Jesse: potentially
  649. # [05:45] * Joins: aklotz (Thunderbir@moz-B5499ED5.rev.sfr.net)
  650. # [05:46] * Quits: kentuckyfriedtakahe (kentuckyfr@538BABFE.A073F3E.97BBD552.IP) (Client exited)
  651. # [05:48] * Quits: aklotz (Thunderbir@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  652. # [05:49] * Quits: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net) (Ping timeout)
  653. # [05:51] * Quits: JonathanS (JonathanS@74338381.87D4EDDB.521902B0.IP) (Quit: Computer has gone to sleep.)
  654. # [05:52] * Quits: Optimizer (Optimizer@4947F1F4.AD3058D5.BE90E62C.IP) (Ping timeout)
  655. # [05:52] * Joins: aklotz (Thunderbir@moz-B5499ED5.rev.sfr.net)
  656. # [05:52] * Joins: vigneshwaran (vigneshwar@FC0B83FD.138D8F1E.FD6A0EFF.IP)
  657. # [05:53] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/86bf4afce68f - Mark Hammond - Bug 835924 - (hopefully) fix intermittent error page test failure. r=felipe.
  658. # [05:53] * Quits: nli-- (Linear-log@moz-99690620.hinet-ip.hinet.net) (Input/output error)
  659. # [05:54] * Joins: dbaron (dbaron@moz-E0DDE997.dsl.dynamic.sonic.net)
  660. # [05:54] * ChanServ sets mode: +o dbaron
  661. # [05:55] * Quits: yzen (Adium@AA2C085E.10C8AEF8.9A8C35B4.IP) (Quit: Leaving.)
  662. # [05:57] * Joins: ewong|away (chatzilla@moz-E5D50C2E.static.netvigator.com)
  663. # [05:58] * ewong|away is now known as ewong
  664. # [05:58] * Quits: NeilZZZ (neil@moz-7E027EE5.cable.virginmedia.com) (Ping timeout)
  665. # [05:59] * Quits: pranavrc (pranavrc@A38087BE.5FE01038.C28326FD.IP) (Ping timeout)
  666. # [06:02] * Quits: automata (automata@moz-1CE7A56D.ifsc.usp.br) (Quit: This computer has gone to sleep)
  667. # [06:03] <philor> njn: was the goal of js-main-runtime-temporary-peak to make it a temporary peak by crashing?
  668. # [06:05] * Joins: mgahlot (mgahlot@DDB59490.B1AF4202.8D9DA8D9.IP)
  669. # [06:05] <njn> philor: looking
  670. # [06:06] * Quits: mgahlot (mgahlot@DDB59490.B1AF4202.8D9DA8D9.IP) (Ping timeout)
  671. # [06:07] * Joins: mgahlot (mgahlot@629CE40D.D626F6C4.85BF2EFC.IP)
  672. # [06:08] <njn> philor: do you want to back it out? you're better at that than I am. 02b242697afb and e0038e628250 will both need to go
  673. # [06:09] <philor> njn: sure, I can
  674. # [06:09] <njn> philor: thanks, and sorry
  675. # [06:12] * Joins: GinaYeh-laptop (GinaYeh@moz-3BC722CB.hfc.comcastbusiness.net)
  676. # [06:12] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d894d02ee219 - Phil Ringnalda - Back out e0038e628250 and 02b242697afb (bug 850523) for test_memoryReporters.xul crashes
  677. # [06:17] * jchen is now known as jchen|away
  678. # [06:18] <bholley> philor: I have an easy fix for the #1 Nightly topcrasher. Do I have a chance of getting it into tonight's nightlies?
  679. # [06:19] * Quits: falken (falken@7706C5C8.497EC1B8.5EFB9497.IP) (Ping timeout)
  680. # [06:19] <philor> bholley: sure, push to m-c, all you have to do is get builds done before 3am
  681. # [06:19] * capella is now known as capella|away
  682. # [06:19] * Joins: falken (falken@7706C5C8.497EC1B8.5EFB9497.IP)
  683. # [06:20] <bholley> philor: is anybody going to be up to watch the tree?
  684. # [06:20] <bholley> maybe njn?
  685. # [06:21] <njn> bholley: I'm going in ~30 minutes, sorry
  686. # [06:21] * Quits: bdahl (bdahl@moz-D7CB09C3.dsl.dynamic.sonic.net) (Client exited)
  687. # [06:21] <bholley> maybe doublec?
  688. # [06:21] <njn> bholley: jlebar's in japan, he might be able to
  689. # [06:22] <jlebar> bholley: hi?
  690. # [06:22] <bholley> jlebar: ^^
  691. # [06:22] <jlebar> bholley: sure, I can watch m-c
  692. # [06:22] * Joins: msucan (mihai@A5A0595A.66715431.D25A875A.IP)
  693. # [06:23] <bholley> jlebar: thanks
  694. # [06:23] <jlebar> bholley: sure
  695. # [06:24] * Quits: aklotz (Thunderbir@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  696. # [06:26] <@roc> jlebar's in Japan? fun
  697. # [06:26] * bholley writes a crashtest
  698. # [06:27] <jlebar> roc: Sitting in my hotel room with a view of the Tokyo Sky Tree. :)
  699. # [06:27] <Jesse> mattwoodrow: can you help me to http://pastebin.mozilla.org/2224795
  700. # [06:27] <Jesse> mattwoodrow: i'm getting this with several testcases, but none are reliable enough to reduce
  701. # [06:28] <Jesse> mattwoodrow: any idea what would make it unreliable?
  702. # [06:28] <@roc> hotel room not fun
  703. # [06:28] <mattwoodrow> Jesse: fun. Not really, but I guess style flushing is timing based
  704. # [06:28] * Quits: mcote (mcote@1D8E4B86.9B0C981.6C85A25D.IP) (Ping timeout)
  705. # [06:28] * Joins: aklotz (Thunderbir@moz-B5499ED5.rev.sfr.net)
  706. # [06:28] <tbsaunde> jlebar: sky tree?
  707. # [06:29] <jlebar> tbsaunde: http://en.wikipedia.org/wiki/Sky_Tree
  708. # [06:29] * Joins: nli-- (Linear-log@moz-99690620.hinet-ip.hinet.net)
  709. # [06:30] <Jesse> mattwoodrow: but the usual things will make it likely to flush, right? document.documentElement.offsetHeight or just setTimeout because it has to paint?
  710. # [06:30] * Joins: mcote (mcote@1D8E4B86.9B0C981.6C85A25D.IP)
  711. # [06:31] <mattwoodrow> Jesse: yeah, should do
  712. # [06:32] <Jesse> mattwoodrow: is there something weird about splay tree that causes it to only sometimes notice bad uses?
  713. # [06:32] <@roc> splay tree is a little weird yes
  714. # [06:33] <mattwoodrow> We should run checkCoherency on most operations (with DEBUG) though
  715. # [06:33] <vlad> hrm, so if on OSX I do *(int *)(0x01000000deadbeef) = 10;
  716. # [06:34] * Quits: gwagner (Gregor@moz-B8B530C2.hsd1.ca.comcast.net) (Quit: gwagner)
  717. # [06:34] <vlad> er, ..deadbeefULL .. why does gdb say that EXC_BAD_ACCESS address is 0?
  718. # [06:34] <vlad> the exception handler says the same thing
  719. # [06:34] * bholley gives up writing a crashtest
  720. # [06:34] <vlad> where
  721. # [06:34] * Quits: nigelb (nigel@moz-8640053A.me) (Client exited)
  722. # [06:34] <vlad> er, wrong window
  723. # [06:35] <Jesse> mattwoodrow: maybe i want a mode where OverflowChangedTracker uses something other than a splay tree? :/
  724. # [06:35] * Joins: nigelb (nigel@moz-8640053A.me)
  725. # [06:36] * Quits: jryans (jryans@moz-CC5DCFB.austin.res.rr.com) (Quit: Be back later)
  726. # [06:38] <mattwoodrow> Jesse: Unless the issue is actually within SplayTree
  727. # [06:38] * mcote is now known as mcote|afk
  728. # [06:39] * Quits: birtles (chatzilla@moz-658AB552.tokyo.ocn.ne.jp) (Ping timeout)
  729. # [06:39] * Quits: nattokirai (nattokirai@moz-658AB552.tokyo.ocn.ne.jp) (Ping timeout)
  730. # [06:40] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/b03bb3ce8cee - Bobby Holley - Bug 851851 - Null check win. r=me
  731. # [06:41] <Jesse> mattwoodrow: i have in gdb, if that helps
  732. # [06:41] <mattwoodrow> Jesse: I don't know SplayTree that well, don't think I can be much help remotely
  733. # [06:41] <mattwoodrow> if you file I can try reproduce and figure it out
  734. # [06:41] <Jesse> http://pastebin.mozilla.org/2224854
  735. # [06:41] * Joins: birtles (chatzilla@moz-658AB552.tokyo.ocn.ne.jp)
  736. # [06:41] * Joins: nattokirai (nattokirai@moz-658AB552.tokyo.ocn.ne.jp)
  737. # [06:42] <Jesse> i don't have a reasonable testcase :(
  738. # [06:44] <mattwoodrow> do you have an unreasonable one?
  739. # [06:45] * Quits: tomer (tomer@moz-F45DAEFD.static.012.net.il) (Ping timeout)
  740. # [06:45] <Jesse> a huge testcase, tangled with the fuzzer, that hits the assertion 15% of the time
  741. # [06:46] <njn> philor: and test_aboutmemory.xul is running just fine for me locally, sigh
  742. # [06:46] * Joins: TheOne (one@moz-B180E9EC.dip.t-dialin.net)
  743. # [06:46] * jchen|away is now known as jchen
  744. # [06:47] <philor> huh
  745. # [06:48] * Parts: aklotz (Thunderbir@moz-B5499ED5.rev.sfr.net)
  746. # [06:49] <njn> philor: fedora-only, interesting
  747. # [06:50] <tbsaunde> Jesse: have a chance to look at a11y asserts yet?
  748. # [06:50] <Jesse> tbsaunde: haven't hit any... which is suspicious
  749. # [06:51] <bholley> Jesse: so, with ASAN testcases. Should we check them in?
  750. # [06:52] <Jesse> bholley: why not?
  751. # [06:52] <bholley> Jesse: well, I'm just wondering if there's a point
  752. # [06:52] <bholley> Jesse: do we run our test suite under ASAN?
  753. # [06:53] <Jesse> bholley: occasionally, and we're hoping to do it more often. https://bugzilla.mozilla.org/show_bug.cgi?id=831491
  754. # [06:54] * jchen is now known as jchen|away
  755. # [06:55] <tbsaunde> Jesse: weird, although I wouldn't expect your fuzzer to hit the text ones we get in m-a11y and possibly not the flush ones either
  756. # [06:55] * Joins: sicking (sicking@moz-289A587C.hsd1.ca.comcast.net)
  757. # [06:56] <Cork> latest-mozilla-central haven't been updating for the last 3 days
  758. # [06:56] <njn> philor: are those fedora builds trace-malloc builds?
  759. # [06:56] <Cork> is this know? (the auto updater is still on 2013-03-14)
  760. # [06:57] <njn> philor: the logs say yes. now I know what the problem is
  761. # [06:58] * Joins: mixedpuppy (mixedpuppy@moz-7B3CFB22.vc.shawcable.net)
  762. # [06:58] * Joins: pranavrc (pranavrc@A38087BE.5FE01038.C28326FD.IP)
  763. # [06:58] <Cork> ah, the lastest-mozilla-central has been fixed, but the updater still doesn't find anything
  764. # [06:59] * Quits: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk) (Connection reset by peer)
  765. # [06:59] * Joins: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk)
  766. # [07:01] <Jesse> tbsaunde: oops, i accidentally had "ignore all accessibility assertions" in two places (and of course only removed one)
  767. # [07:04] * Joins: Alfredo (alfredoyan@moz-99690620.hinet-ip.hinet.net)
  768. # [07:05] <tbsaunde> Jesse: heh :)
  769. # [07:07] * Joins: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net)
  770. # [07:07] * Quits: pranavrc (pranavrc@A38087BE.5FE01038.C28326FD.IP) (Ping timeout)
  771. # [07:10] * Quits: bholley (anonymous@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  772. # [07:11] * Joins: aklotz (Thunderbir@moz-B5499ED5.rev.sfr.net)
  773. # [07:11] * Parts: aklotz (Thunderbir@moz-B5499ED5.rev.sfr.net)
  774. # [07:12] * Quits: tchevalier (Thunderbir@moz-A71C3DD0.w109-210.abo.wanadoo.fr) (Quit: tchevalier)
  775. # [07:14] * Quits: vigneshwaran (vigneshwar@FC0B83FD.138D8F1E.FD6A0EFF.IP) (Quit: Leaving.)
  776. # [07:21] * Quits: mgahlot (mgahlot@629CE40D.D626F6C4.85BF2EFC.IP) (Quit: )
  777. # [07:23] * Joins: pranavrc (pranavrc@A38087BE.5FE01038.C28326FD.IP)
  778. # [07:25] * Quits: nhirata (anonymous@moz-1A50F7F8.hsd1.ca.comcast.net) (Quit: nhirata)
  779. # [07:27] <glandium> nthomas: pong
  780. # [07:27] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/c213189c95c7 - Chris Lord - Bug 824745 - Fuzz clipping tests more on Android. r=karlt
  781. # [07:29] * Quits: kanru (kanru@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  782. # [07:29] <Jesse> ###!!! ASSERTION: Accessible tree was created after it was modified! Huh?: 'Error', file ../../../../accessible/src/base/EventQueue.cpp, line 217
  783. # [07:29] <Jesse> ###!!! ASSERTION: No accessible parent?!: 'parent', file ../../../../accessible/src/generic/DocAccessible.cpp, line 1870
  784. # [07:29] <Jesse> ###!!! ASSERTION: Adopting child!: 'Error', file ../../../../accessible/src/generic/Accessible.cpp, line 2603
  785. # [07:29] <Jesse> tbsaunde: yeah, i think it's working now ;)
  786. # [07:31] <tbsaunde> Jesse: seems so :)
  787. # [07:31] * Quits: squib (squib@moz-B01B5D55.dhcp.mdsn.wi.charter.com) (Quit: Leaving)
  788. # [07:31] <tbsaunde> Jesse: please file of course :)
  789. # [07:31] <Jesse> i will
  790. # [07:32] * Joins: kanru (kanru@moz-99690620.hinet-ip.hinet.net)
  791. # [07:33] * Joins: randix (rdow@moz-AF06D4CD.dip.t-dialin.net)
  792. # [07:34] * Joins: Optimizer (Optimizer@A505702C.1AFF4FE6.274D17D6.IP)
  793. # [07:35] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/5c8569d8e01e - Eric Chou - Bug 851563 - Fix memory leak in UnixSocketConsumer, r=qdot
  794. # [07:36] * Joins: mgahlot (mgahlot@629CE40D.D626F6C4.85BF2EFC.IP)
  795. # [07:38] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/13d27a59ee08 - Edgar Chen - Bug 847820 - Part 2: Modify IccManager for exporting contact to SIM. r=bugs
  796. # [07:39] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/0f0d01f00f1e - Edgar Chen - Bug 847820 - Part 1: IDL for exporting contact to SIM. r=allstars.chh. sr=jonas
  797. # [07:39] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/175853edfc52 - Edgar Chen - Bug 847820 - Part 3: RIL implementation. r=allstars.chh
  798. # [07:39] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/7c296b25c9af - Edgar Chen - Bug 847820 - Part 4: Marionette tests for updating SIM contact. r=allstars.chh
  799. # [07:43] * Joins: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de)
  800. # [07:43] * Joins: aklotz (Thunderbir@moz-B5499ED5.rev.sfr.net)
  801. # [07:45] * Quits: kanru (kanru@moz-99690620.hinet-ip.hinet.net) (Input/output error)
  802. # [07:46] * Joins: kanru (kanru@moz-99690620.hinet-ip.hinet.net)
  803. # [07:46] * Quits: randix (rdow@moz-AF06D4CD.dip.t-dialin.net) (Quit: randix)
  804. # [07:56] * Joins: Optimizer1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP)
  805. # [07:58] <bkero> Hmm, firefox is sitting at 100% CPU again, seems to be spencing 99% of it's time in futex()
  806. # [07:58] <bkero> *spending. No plugins running
  807. # [08:00] * Quits: njn (chatzilla@moz-83DDCCB5.dyn.iinet.net.au) (Quit: ChatZilla 0.9.90 [Firefox 22.0a1/20130317175748])
  808. # [08:00] * Joins: gandalf (zbraniecki@moz-4F155DA6.hsd1.ca.comcast.net)
  809. # [08:00] <nrc> dbaron: ping?
  810. # [08:01] * Quits: Optimizer1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP) (Ping timeout)
  811. # [08:02] * Quits: @roc (chatzilla@E2F7352.56080C53.97BBD552.IP) (Client exited)
  812. # [08:02] <nthomas> glandium: I put a comment on bug 648407
  813. # [08:04] * Quits: aklotz (Thunderbir@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  814. # [08:05] * Joins: dherman (dherman@moz-6CA476B1.hsd1.ca.comcast.net)
  815. # [08:06] * nthomas is now known as nthomas|away
  816. # [08:06] * Quits: birtles (chatzilla@moz-658AB552.tokyo.ocn.ne.jp) (Connection reset by peer)
  817. # [08:07] * Joins: smaug (chatzilla@moz-E342F6A8.rev.sfr.net)
  818. # [08:07] * ChanServ sets mode: +o smaug
  819. # [08:07] * mgerva-afk is now known as mgerva
  820. # [08:07] * Joins: birtles (chatzilla@moz-658AB552.tokyo.ocn.ne.jp)
  821. # [08:11] * Quits: jesup|laptop (chatzilla@EAD4CC8E.81F0BF77.FB8DBAA3.IP) (Ping timeout)
  822. # [08:12] * Quits: thinker (user@moz-D921FE60.dynamic.kbronet.com.tw) (Ping timeout)
  823. # [08:12] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  824. # [08:13] * Quits: dherman (dherman@moz-6CA476B1.hsd1.ca.comcast.net) (Quit: dherman)
  825. # [08:14] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  826. # [08:14] * Quits: gandalf (zbraniecki@moz-4F155DA6.hsd1.ca.comcast.net) (Quit: My lid went down)
  827. # [08:14] * Quits: kanru (kanru@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  828. # [08:15] * Joins: kanru (kanru@moz-99690620.hinet-ip.hinet.net)
  829. # [08:17] * Quits: Jesse (jruderman@moz-537BCF9.hsd1.ca.comcast.net) (Quit: Jesse)
  830. # [08:17] * Quits: msucan (mihai@A5A0595A.66715431.D25A875A.IP) (Quit: Leaving.)
  831. # [08:18] * Quits: @smaug (chatzilla@moz-E342F6A8.rev.sfr.net) (Ping timeout)
  832. # [08:18] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (Ping timeout)
  833. # [08:20] * Joins: pnemsak (Miranda@moz-BE85878E.citicom.sk)
  834. # [08:20] * Joins: Ms2ger (Ms2ger@moz-128A25B3.adsl-dyn.isp.belgacom.be)
  835. # [08:24] * Quits: karl (karl@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  836. # [08:26] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/0834efe48f1e - Trevor Saunders - bug 694254 - disable the test on windows 7/8
  837. # [08:26] * kaze|zZz is now known as kaze
  838. # [08:26] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  839. # [08:27] * capella|away is now known as capella
  840. # [08:28] * philor is now known as philor|away
  841. # [08:28] * Quits: mcote|afk (mcote@1D8E4B86.9B0C981.6C85A25D.IP) (Ping timeout)
  842. # [08:28] * Joins: mcote|afk (mcote@1D8E4B86.9B0C981.6C85A25D.IP)
  843. # [08:31] * Joins: stransky (stransky@moz-3C58453D.net.upcbroadband.cz)
  844. # [08:32] <Ms2ger> Bonjour
  845. # [08:33] * Ms2ger waves at KWierso|Home
  846. # [08:33] * Joins: Jesse (jruderman@moz-537BCF9.hsd1.ca.comcast.net)
  847. # [08:33] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  848. # [08:33] <glob> welcome back mr ms2ger
  849. # [08:33] <Ms2ger> G'day, glob
  850. # [08:34] * Quits: clee (clee@moz-E3C0B5D0.hsd1.ca.comcast.net) (Quit: clee)
  851. # [08:34] * Quits: sicking (sicking@moz-289A587C.hsd1.ca.comcast.net) (Quit: sicking)
  852. # [08:34] * Joins: gsvelto (gsvelto@moz-7D4D556D.cust.dsl.vodafone.it)
  853. # [08:36] * Quits: Ann_Yimi_ (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  854. # [08:36] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  855. # [08:36] * Joins: danielapetrovici (danielapet@601F3B17.33662590.A5830293.IP)
  856. # [08:38] <tbsaunde> philor|away: I see you there pushing and then running away so we can't ask you question ;-)
  857. # [08:38] * Quits: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net) (Ping timeout)
  858. # [08:39] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  859. # [08:39] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  860. # [08:40] * Quits: GinaYeh-laptop (GinaYeh@moz-3BC722CB.hfc.comcastbusiness.net) (Ping timeout)
  861. # [08:40] * Joins: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net)
  862. # [08:40] * Joins: haunter (AndChat706@B436B23D.DD135CE5.6510C006.IP)
  863. # [08:43] * Joins: Bas (chatzilla@moz-83399C40.rev.sfr.net)
  864. # [08:43] * Joins: himsin (x@432E449C.6FDFB4BE.1957C0DA.IP)
  865. # [08:45] * Joins: roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP)
  866. # [08:45] * ChanServ sets mode: +o roc
  867. # [08:45] * Joins: Cwiiis (cwiiis@moz-83399C40.rev.sfr.net)
  868. # [08:50] * Quits: Matt (matthewger@E05025B2.7102BCB6.B7C3970A.IP) (Quit: Matt)
  869. # [08:50] <Callek> tbsaunde++
  870. # [08:51] <Callek> tbsaunde: its not everyday we can say that to philor
  871. # [08:51] * Quits: Bas (chatzilla@moz-83399C40.rev.sfr.net) (Ping timeout)
  872. # [08:51] <Callek> but its about time he conformed to what the rest of you guys do.
  873. # [08:55] * Quits: TheOne (one@moz-B180E9EC.dip.t-dialin.net) (Input/output error)
  874. # [08:55] * Joins: smaug (chatzilla@moz-7C4433C1.inria.fr)
  875. # [08:55] * ChanServ sets mode: +o smaug
  876. # [08:58] * Joins: cpearce (chatzilla@moz-FC66E8A9.xdsl.xnet.co.nz)
  877. # [09:00] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (Quit: tchevalier)
  878. # [09:00] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  879. # [09:00] <glob> happy another bmo push day! http://globau.wordpress.com/2013/03/18/happy-bmo-push-day-35/
  880. # [09:01] * Fallen|away is now known as Fallen
  881. # [09:01] * Joins: glazou (glazou@moz-204094DD.disruptive-innovations.fr)
  882. # [09:02] <glazou> bonjour
  883. # [09:02] * Joins: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net)
  884. # [09:02] * Joins: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com)
  885. # [09:03] * Joins: mak (mak@moz-7C4433C1.inria.fr)
  886. # [09:03] * Joins: aklotz (Thunderbir@moz-7C4433C1.inria.fr)
  887. # [09:03] * Quits: @dbaron (dbaron@moz-E0DDE997.dsl.dynamic.sonic.net) (Ping timeout)
  888. # [09:04] * Joins: jhorak (jhorak@moz-107AD163.redhat.com)
  889. # [09:05] * Quits: Cwiiis (cwiiis@moz-83399C40.rev.sfr.net) (Quit: Leaving)
  890. # [09:07] * glob is now known as glob|away
  891. # [09:12] * Quits: birtles (chatzilla@moz-658AB552.tokyo.ocn.ne.jp) (Quit: ChatZilla 0.9.90-rdmsoft [XULRunner 1.9.0.17/2009122204])
  892. # [09:15] * Joins: marcoz (marco.zehe@moz-B9E01AB9.dip.t-dialin.net)
  893. # [09:20] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/b832bfd6fc24 - Eddy Bruel - Bug 820012 - unable to debug scripts loaded via loadSubScript in Browser Debugger; r=past
  894. # [09:20] <firebot> http://hg.mozilla.org/mozilla-central/rev/7cc974e3a6a3 - Tim Taubert - Bug 841350 - Drag and drop a CTP tab in a new window makes the CTP icon disappear; r=gavin,ttaubert
  895. # [09:21] <firebot> http://hg.mozilla.org/mozilla-central/rev/b2636816c7fd - Tim Taubert - merge m-c to fx-team
  896. # [09:21] <firebot> http://hg.mozilla.org/mozilla-central/rev/a4d096b5a2f9 - Phil Ringnalda - Merge m-c to fx-team
  897. # [09:21] <firebot> http://hg.mozilla.org/mozilla-central/rev/21530ba4bd55 - Sebastian Hengst - Bug 845825 - [New tab page] Undo bar: Close button's tooltip not shown. r=ttaubert
  898. # [09:21] <firebot> http://hg.mozilla.org/mozilla-central/rev/4b35a698dae2 - Eddy Bruel - Bug 808960 - Can't fetch sources packed in jar bundles when debugging chrome; r=past,vporof
  899. # [09:21] * Quits: danielapetrovici (danielapet@601F3B17.33662590.A5830293.IP) (Ping timeout)
  900. # [09:26] * Joins: Neil (neil@moz-7E027EE5.cable.virginmedia.com)
  901. # [09:26] * Neil is now known as NeilZZZ
  902. # [09:26] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Input/output error)
  903. # [09:26] * Quits: mgahlot (mgahlot@629CE40D.D626F6C4.85BF2EFC.IP) (Ping timeout)
  904. # [09:27] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  905. # [09:27] * Ms2ger throws a snowball at marcoz
  906. # [09:29] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  907. # [09:30] * Joins: Optimize1 (Instantbir@4F3E1057.A6DE773B.88FACCAA.IP)
  908. # [09:33] <glandium> gaston: i can't reproduce your problem
  909. # [09:36] * Quits: cpearce (chatzilla@moz-FC66E8A9.xdsl.xnet.co.nz) (Ping timeout)
  910. # [09:36] * Joins: danielapetrovici (danielapet@601F3B17.33662590.A5830293.IP)
  911. # [09:37] <Standard8> did we just loose the ability to do -lxpcom?
  912. # [09:40] * Joins: Matt (matthewger@moz-8C6503E1.vodafone.cz)
  913. # [09:41] * glob|away is now known as glob
  914. # [09:44] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  915. # [09:44] <glandium> Standard8: shouldn't have, but that's going to die eventually
  916. # [09:45] <Standard8> glandium: hmm, turns out it was a incomplete build issue
  917. # [09:45] <Ms2ger> Standard8, gah, did I break you again? :/
  918. # [09:45] <Standard8> glandium: how are we going to do binary unit tests without -lxpcom?
  919. # [09:45] <Standard8> Ms2ger: yep ;-)
  920. # [09:45] <glandium> Standard8: linking against libxul directly
  921. # [09:46] <Ms2ger> Standard8, I do seem to be good at that :)
  922. # [09:46] <Standard8> Ms2ger: fixed now, just lots of additional includes
  923. # [09:46] <Ms2ger> Yeah, m-c needed quite a few of those too
  924. # [09:46] <Standard8> Ms2ger: touching includes in commonly used .h files is bound to break us ;-)
  925. # [09:47] <Standard8> glandium: so everything in xpcom will be available externally via libxul?
  926. # [09:47] * Ms2ger grumbles at glandium
  927. # [09:47] * Quits: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  928. # [09:47] * Joins: Wusel_ (muench@moz-643A8764.planconnect.de)
  929. # [09:48] <Ms2ger> Oh, this is actually khuey|away
  930. # [09:48] <glandium> Ms2ger: ?
  931. # [09:48] <glandium> Standard8: details are not determined, but probably
  932. # [09:49] * Joins: Mic (Mic@moz-C2F0C672.superkabel.de)
  933. # [09:50] <Ms2ger> glandium, something left a bunch of .o.pp files in my objdir/dom/bindings/.deps/ and stopped updating them
  934. # [09:50] * Joins: gerv (Instantbir@moz-8E68CF56.in-addr.arpa)
  935. # [09:51] * Quits: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com) (Quit: Leaving)
  936. # [09:51] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Quit: PM: Preparing frontal lobe for mem sleep)
  937. # [09:51] * Joins: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net)
  938. # [09:53] * marcoz throws a snowball back at Ms2ger :) (be careful, lots of new snow in hamburg this morning! ;) )
  939. # [09:54] <Ms2ger> I'll stay away from Hamburg, then :)
  940. # [09:54] * Quits: llmelon (chatzilla@moz-43CE5A55.cpe.vividwireless.net.au) (Ping timeout)
  941. # [09:55] * Quits: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net) (Ping timeout)
  942. # [09:56] * Joins: martyn (martyn@moz-57A66DEC.range81-154.btcentralplus.com)
  943. # [09:56] * Joins: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net)
  944. # [09:57] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  945. # [09:58] * Joins: llmelon (chatzilla@moz-43CE5A55.cpe.vividwireless.net.au)
  946. # [09:58] * Joins: mgahlot (mgahlot@629CE40D.D626F6C4.85BF2EFC.IP)
  947. # [09:58] * Quits: martyn (martyn@moz-57A66DEC.range81-154.btcentralplus.com) (Ping timeout)
  948. # [09:58] * Joins: martyn (martyn@moz-57A66DEC.range81-154.btcentralplus.com)
  949. # [09:58] * Joins: jacek (jacek@moz-5D707D3B.psi.wroc.pl)
  950. # [09:59] * Quits: Ms2ger (Ms2ger@moz-128A25B3.adsl-dyn.isp.belgacom.be) (Ping timeout)
  951. # [10:01] * Quits: mgahlot (mgahlot@629CE40D.D626F6C4.85BF2EFC.IP) (Ping timeout)
  952. # [10:01] * Joins: mgahlot (mgahlot@626614BA.70D7D397.85BF2EFC.IP)
  953. # [10:01] * Joins: jandem (jandem@66C76B89.FB8EABAE.DF9376EA.IP)
  954. # [10:02] * glob is now known as glob|away
  955. # [10:05] * Quits: danielapetrovici (danielapet@601F3B17.33662590.A5830293.IP) (Ping timeout)
  956. # [10:08] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  957. # [10:08] * Joins: smontagu (chatzilla@486D173B.828D6921.E9C721AF.IP)
  958. # [10:08] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/62139bbc7af6 - Nathan Froyd - Bug 844331 - part 1 - rename bits with |getCurrentSessionPayload| to |getSessionPayload|; r=taras
  959. # [10:08] * Joins: Ms2ger (Ms2ger@moz-57222E62.ugent.be)
  960. # [10:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/80034b418a48 - Nathan Froyd - Bug 844331 - part 6 - move saved-session writing to profile-before-change2 to catch cache and FHR activity; r=taras
  961. # [10:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/3b54f36d54a8 - Nathan Froyd - Bug 844331 - part 4 - cache the profile directory in TelemetryPing; r=taras
  962. # [10:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/f8e226c778e1 - Nathan Froyd - Bug 844331 - part 3 - split out payload/payload+slug construction to separate functions; r=taras
  963. # [10:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/f92ce45a6b92 - Nathan Froyd - Bug 844331 - part 5 - add profile-before-change2 notification; r=bsmedberg
  964. # [10:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/53c240fdf21c - Nathan Froyd - Bug 844331 - part 2 - move getSimpleMeasurements to live in TelemetryPing; r=taras
  965. # [10:08] * Quits: haunter (AndChat706@B436B23D.DD135CE5.6510C006.IP) (Ping timeout)
  966. # [10:08] * Joins: edmorley (edmorley@moz-23D8747.range86-144.btcentralplus.com)
  967. # [10:09] * Quits: pranavrc (pranavrc@A38087BE.5FE01038.C28326FD.IP) (Quit: Ping timeout: ∞)
  968. # [10:12] <glazou> d'oh!
  969. # [10:12] * Quits: nattokirai (nattokirai@moz-658AB552.tokyo.ocn.ne.jp) (Quit: nattokirai)
  970. # [10:15] * Quits: Matt (matthewger@moz-8C6503E1.vodafone.cz) (Ping timeout)
  971. # [10:15] * Quits: smontagu (chatzilla@486D173B.828D6921.E9C721AF.IP) (Input/output error)
  972. # [10:16] * Joins: danielapetrovici (danielapet@601F3B17.33662590.A5830293.IP)
  973. # [10:17] * Joins: Matt (matthewger@F5505435.26EDE4E7.25874CBB.IP)
  974. # [10:17] <Ms2ger> glazou is actually Homer?
  975. # [10:20] * baku|away is now known as baku
  976. # [10:21] <glandium> Ms2ger: and you are glazou
  977. # [10:22] <Ms2ger> So I must be Homer?
  978. # [10:22] <Ms2ger> D'oh!
  979. # [10:22] <glandium> see
  980. # [10:22] * Joins: janv (varga@moz-B0CD7798.o2inet.sk)
  981. # [10:22] * Quits: danielapetrovici (danielapet@601F3B17.33662590.A5830293.IP) (Ping timeout)
  982. # [10:22] * Joins: smontagu (chatzilla@486D173B.828D6921.E9C721AF.IP)
  983. # [10:24] * Joins: danielapetrovici (danielapet@601F3B17.33662590.A5830293.IP)
  984. # [10:25] <@smaug> hmm, I can't add an attachment to an sg bug
  985. # [10:25] <@smaug> submitting it gives "You must enter a valid bug number!"
  986. # [10:27] <ewong> ditto here
  987. # [10:27] <NeilAway> glob|away: was there a bug filed on bugzilla uploads losing their initial 32 bytes?
  988. # [10:27] <glazou> Ms2ger, glandium: I think you guys need a 3rd week-end day...
  989. # [10:28] <Ms2ger> glazou, I'd love that :)
  990. # [10:29] <glandium> glazou: i'd need a 4th one, then, i already have 3-day week ends
  991. # [10:29] * glazou fights with XUL-based drag and drop
  992. # [10:29] <@smaug> ewong: does that happen in non-sg bugs too?
  993. # [10:29] <Ms2ger> Yes
  994. # [10:29] <@smaug> glazou: if you have questions, you probably want Enn
  995. # [10:29] <@smaug> grr
  996. # [10:30] <@smaug> so bugzilla is totally broken now
  997. # [10:30] <ewong> smaug: yes
  998. # [10:30] <@smaug> fun
  999. # [10:30] <ewong> it was working at least an hour ago
  1000. # [10:30] <Ms2ger> http://globau.wordpress.com/2013/03/18/happy-bmo-push-day-35/
  1001. # [10:30] <KWierso|Home> I saw a successful patch earlier tonight
  1002. # [10:30] <glazou> smaug: yes I know ; no I don't have questions, it's only that making a nice UI for a design tool for CSS flexbox is not always fun
  1003. # [10:32] <ewong> not exactly sure which of those bug fixes in that link that's causing the regression...
  1004. # [10:33] <glandium> smaug: bugzilla broken could certainly explain why i'm getting errors with hg bzexport
  1005. # [10:33] <Ms2ger> Anybody filed a bug already?
  1006. # [10:34] * Quits: danielapetrovici (danielapet@601F3B17.33662590.A5830293.IP) (Ping timeout)
  1007. # [10:35] <@smaug> just filing
  1008. # [10:35] <Ms2ger> Just filed
  1009. # [10:35] <Ms2ger> Bug 852072
  1010. # [10:35] <ewong> Ms2ger++
  1011. # [10:35] * baku is now known as baku|away
  1012. # [10:35] <@smaug> k
  1013. # [10:35] <@smaug> thanks
  1014. # [10:36] <NeilAway> ah, so the push includes the bug for which just asked glob after
  1015. # [10:36] * Joins: sewardj (sewardj@moz-7C4433C1.inria.fr)
  1016. # [10:36] * Joins: Bas (chatzilla@moz-7C4433C1.inria.fr)
  1017. # [10:36] * Joins: danielapetrovici (danielapet@601F3B17.33662590.A5830293.IP)
  1018. # [10:36] * Joins: till (till@moz-3493B177.superkabel.de)
  1019. # [10:37] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  1020. # [10:38] <glandium> fortunately, filing bugs is not broken
  1021. # [10:38] <KWierso|Home> you should attach a screenshot of the error
  1022. # [10:38] * Joins: TheOne (TheOne@moz-D58488C3.dfki.uni-kl.de)
  1023. # [10:39] * Quits: @ehsan (ehsan@576FC5E5.CD1D2BB8.DC1243F8.IP) (Input/output error)
  1024. # [10:40] * Quits: janv (varga@moz-B0CD7798.o2inet.sk) (Quit: This computer has gone to sleep)
  1025. # [10:40] * Quits: stransky (stransky@moz-3C58453D.net.upcbroadband.cz) (Quit: Connection reset by beer)
  1026. # [10:45] * Joins: Cwiiis (cwiiis@moz-7C4433C1.inria.fr)
  1027. # [10:45] <Cwiiis> Anyone else having trouble attaching patches to bugs atm?
  1028. # [10:45] <KWierso|Home> Cwiiis: bug 852072
  1029. # [10:45] <ewong> Cwiiis: yes.. bug 852072
  1030. # [10:45] <ewong> oh darn.. beaten by KWierso|Home
  1031. # [10:46] <KWierso|Home> ewong: you can take it from here, hopefully. Already almost 3am. :|
  1032. # [10:46] <Cwiiis> I guess someone's working on it?
  1033. # [10:47] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/5e115ca28105 - Masayuki Nakano - Bug 852024 Implement MetroWidget::GetIMEUpdatePreference() r=jimm
  1034. # [10:48] <KWierso|Home> Cwiiis: just got filed 10 minutes ago
  1035. # [10:48] <Cwiiis> ah :)
  1036. # [10:48] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  1037. # [10:49] * ewong is now known as ewong|away
  1038. # [10:52] * Joins: Ms2ger` (Ms2ger@moz-128A25B3.adsl-dyn.isp.belgacom.be)
  1039. # [10:52] * tonymec is now known as tonymec|sleep
  1040. # [10:53] * Quits: Ms2ger (Ms2ger@moz-57222E62.ugent.be) (Ping timeout)
  1041. # [10:55] <@smaug> grr, reviewing isn't possible either
  1042. # [10:55] <@smaug> same problem
  1043. # [10:56] <KWierso|Home> my completely uneducated guess blames bug 850675 or bug 848457
  1044. # [10:57] * Joins: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP)
  1045. # [10:59] <@smaug> hmm, reviewing succeeds in some cases
  1046. # [10:59] * Quits: mgahlot (mgahlot@626614BA.70D7D397.85BF2EFC.IP) (Quit: )
  1047. # [11:00] <KWierso|Home> splinter vs full?
  1048. # [11:01] <@smaug> "details"
  1049. # [11:01] * Quits: jcv (john@moz-9DD98F0F.cable.mindspring.com) (Ping timeout)
  1050. # [11:01] * Quits: danielapetrovici (danielapet@601F3B17.33662590.A5830293.IP) (Ping timeout)
  1051. # [11:02] * Joins: dao (dao@moz-281B0ACA.superkabel.de)
  1052. # [11:02] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/97813cd8f26f - Makoto Kato - Bug 851439 - The paramter of _open_osfhandle() is intptr_t instead of long. r=jimm
  1053. # [11:03] * Quits: Asa (asa@363AA1C0.A1EC5031.204CA821.IP) (Ping timeout)
  1054. # [11:04] * glob|away is now known as glob
  1055. # [11:05] * Joins: Asa (asa@363AA1C0.A1EC5031.204CA821.IP)
  1056. # [11:06] * smaug changes topic to 'Bugzilla is broken, bug 852072. Intermittent-failure rate is out of control - please help! http://brasstacks.mozilla.com/orangefactor/ || https://etherpad.mozilla.org/commonissues || Next merge 2 April || Want to help? See #introduction || http://logbot.glob.com.au/?c=developers'
  1057. # [11:09] * Joins: rlewis (Thunderbir@moz-D47321EC.cable.virginmedia.com)
  1058. # [11:11] * Quits: rlewis (Thunderbir@moz-D47321EC.cable.virginmedia.com) (Ping timeout)
  1059. # [11:11] * Quits: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP) (Quit: This computer has gone to sleep)
  1060. # [11:11] * Joins: rlewis (Thunderbir@moz-D47321EC.cable.virginmedia.com)
  1061. # [11:12] * Quits: b10n1k (j0ni@moz-976DDA5B.access.hol.gr) (Client exited)
  1062. # [11:13] * edmorley changes topic to 'Bugzilla is broken, bug 852072 || https://etherpad.mozilla.org/commonissues || Next merge 2 April || Want to help? See #introduction || http://logbot.glob.com.au/?c=developers'
  1063. # [11:13] * edmorley changes topic to 'Bugzilla is broken, bug 852072 || Next merge 2 April || Want to help? See #introduction || http://logbot.glob.com.au/?c=developers'
  1064. # [11:14] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  1065. # [11:18] * Quits: llmelon (chatzilla@moz-43CE5A55.cpe.vividwireless.net.au) (Ping timeout)
  1066. # [11:18] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  1067. # [11:18] * Joins: llmelon (chatzilla@moz-43CE5A55.cpe.vividwireless.net.au)
  1068. # [11:19] * Quits: himsin (x@432E449C.6FDFB4BE.1957C0DA.IP) (Ping timeout)
  1069. # [11:19] * Joins: danielapetrovici (danielapet@601F3B17.33662590.A5830293.IP)
  1070. # [11:19] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (Ping timeout)
  1071. # [11:20] * Joins: himsin (x@432E449C.6FDFB4BE.1957C0DA.IP)
  1072. # [11:21] <glob> anyone have steps to reproduce for the bugzilla issue?
  1073. # [11:21] <glob> i can't reproduce it locally
  1074. # [11:21] <Ms2ger`> smaug, ewong|afk, Cwiiis ^
  1075. # [11:21] <glob> smaug, ^
  1076. # [11:22] <Cwiiis> glob, I just try to attach a patch to a bug and it happens
  1077. # [11:22] <glob> Cwiiis, are you setting any flags?
  1078. # [11:23] <Cwiiis> glob, yes, setting r?
  1079. # [11:23] * Quits: Mossop (mossop@moz-3D9B2D8F.lsanca.fios.verizon.net) (Ping timeout)
  1080. # [11:23] <Cwiiis> glob, and ticking the 'patch' box
  1081. # [11:23] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  1082. # [11:23] <glob> Cwiiis, are you setting a requestee for the review flag?
  1083. # [11:23] <Cwiiis> glob, yup
  1084. # [11:23] * pmoore|away is now known as pmoore
  1085. # [11:23] <glob> Cwiiis, what are you putting into the requestee field?
  1086. # [11:23] <gaston> 'bugzilla is broken, see bug #xxxx' how ironic :)
  1087. # [11:23] <Cwiiis> glob, so here's a bug that I couldn't attach patches on: https://bugzilla.mozilla.org/show_bug.cgi?id=850889 - I've resorted to pastebin + needinfo
  1088. # [11:23] * Quits: m_kato (m_kato@moz-658AB552.tokyo.ocn.ne.jp) (Quit: Leaving...)
  1089. # [11:24] * Joins: Mossop (mossop@moz-3D9B2D8F.lsanca.fios.verizon.net)
  1090. # [11:24] <Cwiiis> glob, I type :kats, and click on the auto-search result
  1091. # [11:25] <glob> Cwiiis, still can't reproduce. are you setting any other fields?
  1092. # [11:26] <Cwiiis> glob, nope
  1093. # [11:27] <froydnj> glob: I see this too, with: https://bugzilla.mozilla.org/attachment.cgi?id=722271&action=edit
  1094. # [11:28] <froydnj> glob: I set r? and type :jlebar into the corresponding field
  1095. # [11:28] <froydnj> glob: and I try to add a comment with it
  1096. # [11:28] <froydnj> glob: bugzilla tells me: "Missing bug ID"
  1097. # [11:29] * Joins: RealRaven (Thunderbir@764C216E.1ACDA296.C3498625.IP)
  1098. # [11:29] <glob> froydnj, thanks
  1099. # [11:29] * Joins: haunter (AndChat706@B436B23D.DD135CE5.6510C006.IP)
  1100. # [11:29] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (Ping timeout)
  1101. # [11:30] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  1102. # [11:31] <froydnj> b2g red is the new android red?
  1103. # [11:32] <edmorley> yup
  1104. # [11:32] <edmorley> Bug 834016
  1105. # [11:33] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  1106. # [11:33] * Quits: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net) (Connection reset by peer)
  1107. # [11:33] * mattwoodrow is now known as mattwoodrow|away
  1108. # [11:34] <glob> edmorley, i'm always surprised to see the OF integration on bmo
  1109. # [11:34] * Joins: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net)
  1110. # [11:34] <edmorley> :-)
  1111. # [11:34] * Joins: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com)
  1112. # [11:34] <glob> hrm, we should make that line 2 pixels thick, instead of 1
  1113. # [11:35] * Joins: jwalker (jwalker@moz-BB05A345.cable.virginmedia.com)
  1114. # [11:35] * Quits: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net) (Ping timeout)
  1115. # [11:35] * Joins: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net)
  1116. # [11:35] <edmorley> and orange :-)
  1117. # [11:36] <edmorley> well, background pale orange, the line a suitable other colour
  1118. # [11:36] <reed> where is the OF integration?
  1119. # [11:36] <reed> cause, I don't see it...
  1120. # [11:36] <edmorley> reed: not on by default, prefs
  1121. # [11:36] <reed> ah
  1122. # [11:37] <glob> reed, sleeeeeeeep
  1123. # [11:37] <reed> yeah yeah
  1124. # [11:37] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (Ping timeout)
  1125. # [11:37] <reed> almost 4am
  1126. # [11:37] <reed> :p
  1127. # [11:37] <glob> may as well stay up then
  1128. # [11:37] <reed> nah
  1129. # [11:37] <reed> bed time now
  1130. # [11:40] * Quits: marcoz (marco.zehe@moz-B9E01AB9.dip.t-dialin.net) (Quit: Leaving.)
  1131. # [11:40] * Joins: marcoz (marco.zehe@moz-B9E01AB9.dip.t-dialin.net)
  1132. # [11:41] * Joins: stransky (stransky@moz-107AD163.redhat.com)
  1133. # [11:41] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  1134. # [11:42] * Quits: sewardj (sewardj@moz-7C4433C1.inria.fr) (Ping timeout)
  1135. # [11:44] * Joins: sewardj (sewardj@moz-B273C121.inria.fr)
  1136. # [11:46] * Quits: sewardj (sewardj@moz-B273C121.inria.fr) (Quit: Konversation terminated!)
  1137. # [11:46] * Joins: sewardj (sewardj@moz-B273C121.inria.fr)
  1138. # [11:48] <glob> so, bugzilla.. it's only broken if you request a review, and that review triggers an email
  1139. # [11:48] <glob> we're waiting on someone from IT to push the fix live
  1140. # [11:48] * Quits: Gentlecat_ (Roman@8942624D.7D1F96C3.8FB52CB8.IP) (Ping timeout)
  1141. # [11:48] * Quits: sewardj (sewardj@moz-B273C121.inria.fr) (Quit: Konversation terminated!)
  1142. # [11:49] * Joins: sewardj (sewardj@moz-B273C121.inria.fr)
  1143. # [11:50] * Quits: sewardj (sewardj@moz-B273C121.inria.fr) (Quit: Konversation terminated!)
  1144. # [11:50] * Joins: sewardj (sewardj@moz-B273C121.inria.fr)
  1145. # [11:51] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (Ping timeout)
  1146. # [11:51] * Quits: danielapetrovici (danielapet@601F3B17.33662590.A5830293.IP) (Quit: Leaving)
  1147. # [11:51] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  1148. # [11:51] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Quit: Instantbird 1.4a1pre -- http://www.instantbird.com)
  1149. # [11:52] * Quits: sewardj (sewardj@moz-B273C121.inria.fr) (Quit: Konversation terminated!)
  1150. # [11:53] * Joins: sewardj (sewardj@moz-B273C121.inria.fr)
  1151. # [11:54] * Joins: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com)
  1152. # [11:55] * Quits: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com) (Client exited)
  1153. # [11:55] * Quits: @roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP) (Ping timeout)
  1154. # [11:55] * Joins: bkc (brankc@moz-29FFE1B5.me)
  1155. # [11:56] * Quits: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  1156. # [11:56] * Joins: roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP)
  1157. # [11:56] * ChanServ sets mode: +o roc
  1158. # [11:57] * Quits: sewardj (sewardj@moz-B273C121.inria.fr) (Quit: Konversation terminated!)
  1159. # [11:57] * Joins: sewardj (sewardj@moz-B273C121.inria.fr)
  1160. # [11:57] * Quits: Ms2ger` (Ms2ger@moz-128A25B3.adsl-dyn.isp.belgacom.be) (Quit: bbl)
  1161. # [11:59] <glob> Cwiiis, froydnj: bugzilla updated; are you able to verify things are better now?
  1162. # [11:59] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  1163. # [11:59] * Quits: sewardj (sewardj@moz-B273C121.inria.fr) (Quit: Konversation terminated!)
  1164. # [12:00] * Joins: sewardj (sewardj@moz-B273C121.inria.fr)
  1165. # [12:01] <Cwiiis> glob, gimme a moment :)
  1166. # [12:03] * Quits: tallowen (tallowen@F98BD3B6.6CE6EBEF.8DE378DB.IP) (Input/output error)
  1167. # [12:03] * Quits: sewardj (sewardj@moz-B273C121.inria.fr) (Quit: Konversation terminated!)
  1168. # [12:04] * Quits: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com) (Ping timeout)
  1169. # [12:04] * Joins: sewardj (sewardj@moz-B273C121.inria.fr)
  1170. # [12:04] <Cwiiis> padenot, I'm told you know about Canvas 2d and might be the person to talk to about possible performance improvements?
  1171. # [12:04] * Joins: markh1 (Instantbir@CE947AE5.9D3E6021.78BA16EF.IP)
  1172. # [12:05] <froydnj> glob: seems to wfm. thanks!
  1173. # [12:05] * Quits: sewardj (sewardj@moz-B273C121.inria.fr) (Quit: Konversation terminated!)
  1174. # [12:05] <Cwiiis> padenot, specifically, drawing operations are slow on Android; transforms, blending, blitting and text drawing
  1175. # [12:05] <glob> froydnj, thanks! props go to reed for the fix, and ashish for the push
  1176. # [12:05] * Joins: sewardj (sewardj@moz-B273C121.inria.fr)
  1177. # [12:06] * pmoore is now known as pmoore|lunch
  1178. # [12:06] * edmorley thinks glob is worthy of http://thecodinglove.com/post/45664537342/when-i-debug-in-production-like-a-boss
  1179. # [12:06] <edmorley> and reed
  1180. # [12:06] <Cwiiis> glob, fixed, thanks :)
  1181. # [12:06] * Quits: sewardj (sewardj@moz-B273C121.inria.fr) (Quit: Konversation terminated!)
  1182. # [12:07] * glob is now known as glob|away
  1183. # [12:07] * Joins: sewardj (sewardj@moz-B273C121.inria.fr)
  1184. # [12:09] * Quits: sewardj (sewardj@moz-B273C121.inria.fr) (Quit: Konversation terminated!)
  1185. # [12:09] * Joins: sewardj (sewardj@moz-B273C121.inria.fr)
  1186. # [12:10] * Quits: sewardj (sewardj@moz-B273C121.inria.fr) (Quit: Konversation terminated!)
  1187. # [12:10] * Joins: sewardj (sewardj@moz-B273C121.inria.fr)
  1188. # [12:11] * Joins: tomer (tomer@A79E5D33.221D8A7C.C328D627.IP)
  1189. # [12:11] * glazou is now known as glazou_afk
  1190. # [12:11] * Quits: haunter (AndChat706@B436B23D.DD135CE5.6510C006.IP) (Connection reset by peer)
  1191. # [12:11] * Joins: sewardj_ (sewardj@moz-7C4433C1.inria.fr)
  1192. # [12:12] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  1193. # [12:12] <decoder> can anyone tell me if it's ok to "abuse" the "crash signature" field in bugzilla for storing crash data also in a different format?
  1194. # [12:12] <decoder> i mean, in addition to the regular one for socorro
  1195. # [12:12] <decoder> i guess socorro will ignore stuff it cant parse?
  1196. # [12:12] <till> Does anybody know how I can restore the ability to go to fullscreen on air.mozilla.org after accidentally clicking "deny" (and, of course, selecting "don't ask me again")?
  1197. # [12:13] * Quits: sewardj (sewardj@moz-B273C121.inria.fr) (Ping timeout)
  1198. # [12:13] <till> It asked for permission for vid.ly, so naturally, the permission on air.mozilla.org isn't changed.
  1199. # [12:13] <till> Curiously, neither is the on on vid.ly
  1200. # [12:14] <evilpie> till: try about:permissions
  1201. # [12:14] <evilpie> and look for s.vid.ly
  1202. # [12:14] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/48e028f2a5d7 - Chia-hung Tai - Bug 849741 - B2G MMS: provide nsIDOMMobileMessageManager.onreceived event. r=vyang
  1203. # [12:15] <till> evilpie: \o/, thanks!
  1204. # [12:15] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  1205. # [12:15] * till thinks our UI for that stuff could be better
  1206. # [12:15] * Joins: ErvisTusha (ErvisTusha@C99DF599.F69FB6EA.363D84A4.IP)
  1207. # [12:16] * Joins: Gentlecat_ (Roman@8942624D.7D1F96C3.8FB52CB8.IP)
  1208. # [12:17] * smaug changes topic to 'Next merge 2 April || Want to help? See #introduction || http://logbot.glob.com.au/?c=developers'
  1209. # [12:18] <@smaug> till: ask cpearce
  1210. # [12:19] <@smaug> till: also, see page info
  1211. # [12:19] <@smaug> permissions are there
  1212. # [12:19] <@smaug> about:permissions is, AFAIK, not supported
  1213. # [12:19] <till> smaug: evilpie's tip worked
  1214. # [12:20] <till> smaug: the page info permissions didn't contain the permissions I needed to set. For that, I would have needed to go to s.vid.ly.
  1215. # [12:21] <till> smaug: In this case, that would've worked, surprisingly, instead of just redirecting to vid.ly. But we should have the permissions for all embedded things in the page info
  1216. # [12:22] <edmorley> decoder: ask scoobidiver?
  1217. # [12:23] * Joins: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com)
  1218. # [12:25] * Quits: mak (mak@moz-7C4433C1.inria.fr) (Input/output error)
  1219. # [12:26] * Joins: elin (elin@moz-99690620.hinet-ip.hinet.net)
  1220. # [12:26] * Quits: Alfredo (alfredoyan@moz-99690620.hinet-ip.hinet.net) (Quit: Alfredo)
  1221. # [12:27] * Joins: KWierso|Home_ (chatzilla@moz-39E2648C.hsd1.ca.comcast.net)
  1222. # [12:27] * Quits: KWierso|Home (chatzilla@moz-39E2648C.hsd1.ca.comcast.net) (Ping timeout)
  1223. # [12:28] * KWierso|Home_ is now known as KWierso|Home
  1224. # [12:28] * Quits: sewardj_ (sewardj@moz-7C4433C1.inria.fr) (Ping timeout)
  1225. # [12:30] * Joins: KaiRo (robert@moz-832E1C76.adsl.highway.telekom.at)
  1226. # [12:30] * Joins: StevenLee (chatzilla@moz-99690620.hinet-ip.hinet.net)
  1227. # [12:31] * Quits: elin (elin@moz-99690620.hinet-ip.hinet.net) (Quit: elin)
  1228. # [12:32] <decoder> edmorley: thx
  1229. # [12:32] <NeilAway> glob|away: I like the new changed column
  1230. # [12:32] * Quits: Asa (asa@363AA1C0.A1EC5031.204CA821.IP) (Ping timeout)
  1231. # [12:32] * Quits: RealRaven (Thunderbir@764C216E.1ACDA296.C3498625.IP) (Quit: RealRaven)
  1232. # [12:33] * Joins: danielapetrovici (danielapet@601F3B17.33662590.A5830293.IP)
  1233. # [12:34] * Joins: Asa (asa@363AA1C0.A1EC5031.204CA821.IP)
  1234. # [12:35] * Joins: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP)
  1235. # [12:38] * Quits: stransky (stransky@moz-107AD163.redhat.com) (Quit: Connection reset by beer)
  1236. # [12:38] * Quits: martyn (martyn@moz-57A66DEC.range81-154.btcentralplus.com) (Ping timeout)
  1237. # [12:40] * baku|away is now known as baku
  1238. # [12:40] * Joins: stransky (stransky@moz-107AD163.redhat.com)
  1239. # [12:40] * Quits: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net) (Input/output error)
  1240. # [12:41] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  1241. # [12:42] * Quits: Wusel_ (muench@moz-643A8764.planconnect.de) (Ping timeout)
  1242. # [12:43] * Joins: Wusel_ (muench@moz-643A8764.planconnect.de)
  1243. # [12:43] * Joins: Nefzaoui (chatzilla@5C1D56B5.AC1DD713.80E43DAF.IP)
  1244. # [12:44] * Quits: mixedpuppy (mixedpuppy@moz-7B3CFB22.vc.shawcable.net) (Ping timeout)
  1245. # [12:45] * Joins: mixedpuppy (mixedpuppy@moz-7B3CFB22.vc.shawcable.net)
  1246. # [12:46] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1247. # [12:48] * Quits: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP) (Quit: This computer has gone to sleep)
  1248. # [12:49] * Joins: Ms2ger (Ms2ger@moz-F2143CCB.ugent.be)
  1249. # [12:53] * Quits: markh1 (Instantbir@CE947AE5.9D3E6021.78BA16EF.IP) (Connection reset by peer)
  1250. # [12:53] * Joins: markh1 (Instantbir@CE947AE5.9D3E6021.78BA16EF.IP)
  1251. # [12:54] * Joins: martyn (martyn@moz-57A66DEC.range81-154.btcentralplus.com)
  1252. # [12:54] * Joins: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP)
  1253. # [12:54] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  1254. # [12:57] * Joins: srishti (srishti@91BC8839.F442218F.88FACCAA.IP)
  1255. # [12:58] * Joins: sheppy (sheppy@moz-E826F7C2.dhcp.jcsn.tn.charter.com)
  1256. # [12:59] * Quits: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP) (Quit: This computer has gone to sleep)
  1257. # [12:59] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (No route to host)
  1258. # [13:00] <srishti> Hi bz can you take a look at the following code piece for me..http://pastebin.mozilla.org/2221244
  1259. # [13:00] * Joins: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net)
  1260. # [13:01] * Joins: danielapetrovici_ (danielapet@moz-ACDE7EEC.mozilla.com)
  1261. # [13:02] * Quits: danielapetrovici (danielapet@601F3B17.33662590.A5830293.IP) (Ping timeout)
  1262. # [13:03] * Quits: lerc (quassel@121.75.155.30) (Ping timeout)
  1263. # [13:04] * Joins: haunter (AndChat706@83FCEDBE.2029132E.6510C006.IP)
  1264. # [13:05] <Ms2ger> srishti, http://pastebin.mozilla.org/2221244 is empty
  1265. # [13:05] <Ms2ger> smaug, can you reply to ArtB? :)
  1266. # [13:09] * mgerva is now known as mgerva-lunch
  1267. # [13:11] * Joins: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP)
  1268. # [13:13] * Quits: surkov (surkov@511E724B.E00BF004.E17943EE.IP) (Quit: surkov)
  1269. # [13:14] * kmoir-afk is now known as kmoir
  1270. # [13:16] * Quits: srishti (srishti@91BC8839.F442218F.88FACCAA.IP) (Ping timeout)
  1271. # [13:17] * Quits: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP) (Quit: This computer has gone to sleep)
  1272. # [13:18] * Joins: Honza (chatzilla@5AD2A1B9.23B79DE4.D0083327.IP)
  1273. # [13:19] * bhearsum|afk is now known as bhearsum
  1274. # [13:19] * Joins: Pauly (paul@601F3B17.33662590.A5830293.IP)
  1275. # [13:20] * baku is now known as baku|away
  1276. # [13:21] * Joins: jcv (john@moz-9DD98F0F.cable.mindspring.com)
  1277. # [13:21] * glazou_afk is now known as glazou
  1278. # [13:22] * Joins: annevk (annevk@moz-34E5D44B.wireless.csail.mit.edu)
  1279. # [13:23] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  1280. # [13:23] * Quits: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com) (Ping timeout)
  1281. # [13:24] <glazou> do we have a non hierarchical prefixed :hover?
  1282. # [13:24] * Joins: janv (varga@8F54C722.EEBE6C9.FA2E5C2.IP)
  1283. # [13:24] * Quits: markh1 (Instantbir@CE947AE5.9D3E6021.78BA16EF.IP) (Ping timeout)
  1284. # [13:26] <glazou> hmm apparently not
  1285. # [13:26] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/509b300bda68 - Ed Morley - Bug 845190 - Disable test_645970.js on debug Linux for too many intermittent assertions
  1286. # [13:26] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b903c81b23eb - Ed Morley - Bug 754860 - Disable test_bug726904.html on OS X for too many intermittent failures
  1287. # [13:27] * pmoore|lunch is now known as pmoore
  1288. # [13:27] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  1289. # [13:27] * Quits: janv (varga@8F54C722.EEBE6C9.FA2E5C2.IP) (Quit: This computer has gone to sleep)
  1290. # [13:27] <padenot> Cwiiis: You might want to ask nical about that
  1291. # [13:28] * Quits: ErvisTusha (ErvisTusha@C99DF599.F69FB6EA.363D84A4.IP) (Client exited)
  1292. # [13:28] <padenot> Cwiiis: (who will be in the office in a couple hours)
  1293. # [13:30] * Joins: srishti (srishti@91BC8839.F442218F.88FACCAA.IP)
  1294. # [13:31] * mgerva-lunch is now known as mgerva
  1295. # [13:32] * baku|away is now known as baku
  1296. # [13:33] * Joins: hub (hub@F2D29657.F60B0462.67AC9B1.IP)
  1297. # [13:34] * Quits: gcp (gpascutto@moz-86A7852.access.telenet.be) (Quit: Make a new plan, Stan!)
  1298. # [13:35] * Joins: alice (alice@moz-A7C201EB.zone16.bethere.co.uk)
  1299. # [13:36] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  1300. # [13:36] * Joins: janv (varga@8F54C722.EEBE6C9.FA2E5C2.IP)
  1301. # [13:37] * Joins: vladan (vladan@moz-7C4433C1.inria.fr)
  1302. # [13:37] <srishti> the pastebin id num expired...can you refer to to the following..http://pastebin.mozilla.org/2225525
  1303. # [13:37] * Quits: haunter (AndChat706@83FCEDBE.2029132E.6510C006.IP) (Ping timeout)
  1304. # [13:39] * Quits: janv (varga@8F54C722.EEBE6C9.FA2E5C2.IP) (Quit: This computer has gone to sleep)
  1305. # [13:39] * rail_away is now known as rail
  1306. # [13:40] * Joins: pranavrc (pranavrc@F71341EC.E9DD3E4.520CDC98.IP)
  1307. # [13:41] * Quits: Mic (Mic@moz-C2F0C672.superkabel.de) (Connection reset by peer)
  1308. # [13:42] * Fallen is now known as Fallen|away
  1309. # [13:42] * Joins: sewardj_ (sewardj@moz-7C4433C1.inria.fr)
  1310. # [13:42] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/13ddefe3068a - Irving Reid - Bug 841028: Add last build ID to telemetry system info if build ID has changed. r=froydnj
  1311. # [13:42] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/4b69df3f802d - Irving Reid - Bug 768482: Add URI of resource to "file not found" exception in asyncFetch(). r=bz
  1312. # [13:43] * Quits: marcoz (marco.zehe@moz-B9E01AB9.dip.t-dialin.net) (Quit: Leaving.)
  1313. # [13:43] <@smaug> Ms2ger: where?
  1314. # [13:43] <@smaug> touchlist?
  1315. # [13:43] <Ms2ger> smaug, public-webevents, yeah
  1316. # [13:47] * Joins: RattyAway (Jim_diGriz@F5BDA4E7.740B6001.FB243CD8.IP)
  1317. # [13:47] <RattyAway> No rule to make target 'c:\t1\hg\objdir-sm\mozilla\dist\include\nsIDOMArchiveRequest.h' needed by ['
  1318. # [13:47] <RattyAway> <command-line>', 'c:\\t1\\hg\\objdir-sm\\mozilla\\dist\\include\\nsIDOMArchiveRequest.h']
  1319. # [13:47] <Cwiiis> padenot, okidokes - btw, I'm also told you're the layout guy in Paris - does the idea of hashing display items during building with a hash that varies depending on descendants to avoid having to process the items (which is coming up as a significant amount of work in some profiles) strike you as possible/reasonable/insane?
  1320. # [13:48] <RattyAway> is this a known problem with nsIDOMArchiveRequest?
  1321. # [13:48] <padenot> Cwiiis: I'm not the layout guy!
  1322. # [13:48] <padenot> Cwiiis: I'm the media guy
  1323. # [13:48] <padenot> but there is no layout guy here :-(
  1324. # [13:48] <srishti> Ms2ger: can you help me with the bug #433613
  1325. # [13:48] * Joins: ehsan (ehsan@moz-C48D29C4.cable.teksavvy.com)
  1326. # [13:48] * ChanServ sets mode: +o ehsan
  1327. # [13:49] <Ms2ger> srishti, not at the moment, sorry
  1328. # [13:49] <Ms2ger> RattyAway, just that I removed it, I think
  1329. # [13:50] <RattyAway> Ms2ger: ok I guess I need a clobber :P
  1330. # [13:50] * Quits: sheppy (sheppy@moz-E826F7C2.dhcp.jcsn.tn.charter.com) (Quit: Leaving)
  1331. # [13:51] * Joins: abhishekp (chatzilla@moz-BDF33BCA.mtnl.net.in)
  1332. # [13:51] * Quits: brambles (xymox@moz-969AAE9B.barwen.ch) (Ping timeout)
  1333. # [13:52] * Joins: brambles (xymox@moz-969AAE9B.barwen.ch)
  1334. # [13:52] * jmaher|afk is now known as jmaher
  1335. # [13:53] * Joins: sheeri (sheeri@3464EC4F.72B357BE.A35657C3.IP)
  1336. # [13:53] * Joins: RyanVM (chatzilla@moz-148999FE.phlapa.fios.verizon.net)
  1337. # [13:53] * Joins: marcoz (marco.zehe@moz-B9E01AB9.dip.t-dialin.net)
  1338. # [13:54] <Cwiiis> padenot, ah ok, never mind then :)
  1339. # [13:54] * Parts: bhearsum (bhearsum@moz-FBAE94.members.linode.com)
  1340. # [13:55] <Yoric> Cwiiis: He's lying, I have an inside source that tells me the layout guy is in the office.
  1341. # [13:55] <Yoric> Never mind the fact that the inside source is padenot and that the layout guy just arrived :)
  1342. # [13:55] * Quits: sewardj_ (sewardj@moz-7C4433C1.inria.fr) (Quit: Konversation terminated!)
  1343. # [13:56] <padenot> Yoric: layout != gfx
  1344. # [13:56] <Yoric> Mmmhhh...
  1345. # [13:56] <padenot> nical is a gfx guy
  1346. # [13:56] * Fallen|away is now known as Fallen
  1347. # [13:56] * Quits: gsvelto (gsvelto@moz-7D4D556D.cust.dsl.vodafone.it) (Ping timeout)
  1348. # [13:56] <Yoric> I had assumed that layers was part of layout.
  1349. # [13:57] <padenot> nope, layers code is in gfx/layers
  1350. # [13:57] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (Ping timeout)
  1351. # [13:57] * Joins: AaronMT (AaronMT@moz-9742BA59.cpe.net.cable.rogers.com)
  1352. # [13:58] * Joins: frogzilla (Mibbit@9B9315E1.A6025CA.1C37C358.IP)
  1353. # [13:58] * frogzilla is now known as Nikhar
  1354. # [13:59] * Quits: dao (dao@moz-281B0ACA.superkabel.de) (Quit: Leaving.)
  1355. # [13:59] * Fallen is now known as Fallen|away
  1356. # [14:00] * Joins: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk)
  1357. # [14:01] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  1358. # [14:01] * Quits: srishti (srishti@91BC8839.F442218F.88FACCAA.IP) (Ping timeout)
  1359. # [14:01] * Joins: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br)
  1360. # [14:02] * Quits: aklotz (Thunderbir@moz-7C4433C1.inria.fr) (Ping timeout)
  1361. # [14:02] * Quits: vladan (vladan@moz-7C4433C1.inria.fr) (Ping timeout)
  1362. # [14:02] * Quits: Nikhar (Mibbit@9B9315E1.A6025CA.1C37C358.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1363. # [14:02] * Quits: @smaug (chatzilla@moz-7C4433C1.inria.fr) (Ping timeout)
  1364. # [14:02] * Quits: Cwiiis (cwiiis@moz-7C4433C1.inria.fr) (Ping timeout)
  1365. # [14:02] * Quits: Bas (chatzilla@moz-7C4433C1.inria.fr) (Ping timeout)
  1366. # [14:02] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (No route to host)
  1367. # [14:03] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  1368. # [14:03] * Joins: sewardj_ (sewardj@moz-7C4433C1.inria.fr)
  1369. # [14:03] * Joins: Nikhar (Mibbit@9B9315E1.A6025CA.1C37C358.IP)
  1370. # [14:03] * Joins: Cwiiis (cwiiis@moz-7C4433C1.inria.fr)
  1371. # [14:03] * Joins: Bas (chatzilla@moz-7C4433C1.inria.fr)
  1372. # [14:03] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/21530ba4bd55 - Sebastian Hengst - Bug 845825 - [New tab page] Undo bar: Close button's tooltip not shown. r=ttaubert
  1373. # [14:03] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/83cb7a59803f - Ryan VanderMeulen - Merge m-c to inbound.
  1374. # [14:04] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a4d096b5a2f9 - Phil Ringnalda - Merge m-c to fx-team
  1375. # [14:04] * Quits: Nikhar (Mibbit@9B9315E1.A6025CA.1C37C358.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1376. # [14:04] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/7cc974e3a6a3 - Tim Taubert - Bug 841350 - Drag and drop a CTP tab in a new window makes the CTP icon disappear; r=gavin,ttaubert
  1377. # [14:04] * Quits: @ehsan (ehsan@moz-C48D29C4.cable.teksavvy.com) (Input/output error)
  1378. # [14:04] * Joins: vladan (vladan@moz-7C4433C1.inria.fr)
  1379. # [14:04] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/4b35a698dae2 - Eddy Bruel - Bug 808960 - Can't fetch sources packed in jar bundles when debugging chrome; r=past,vporof
  1380. # [14:04] * Joins: yzen (Adium@AA2C085E.10C8AEF8.9A8C35B4.IP)
  1381. # [14:04] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b832bfd6fc24 - Eddy Bruel - Bug 820012 - unable to debug scripts loaded via loadSubScript in Browser Debugger; r=past
  1382. # [14:04] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b03bb3ce8cee - Bobby Holley - Bug 851851 - Null check win. r=me
  1383. # [14:04] * Joins: lmandel (lmandel@moz-7C4433C1.inria.fr)
  1384. # [14:04] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b2636816c7fd - Tim Taubert - merge m-c to fx-team
  1385. # [14:04] * Joins: mib_sk9qhv (Mibbit@9B9315E1.A6025CA.1C37C358.IP)
  1386. # [14:04] * mib_sk9qhv is now known as Nikhar
  1387. # [14:05] * Quits: abhishekp (chatzilla@moz-BDF33BCA.mtnl.net.in) (Quit: ChatZilla 0.9.90 [Firefox 19.0.2/20130307122853])
  1388. # [14:05] * Joins: RealRaven (Thunderbir@764C216E.1ACDA296.C3498625.IP)
  1389. # [14:05] * Quits: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP) (Quit: ZNC - http://znc.in)
  1390. # [14:05] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  1391. # [14:05] * Joins: mak (mak@moz-7C4433C1.inria.fr)
  1392. # [14:06] * Joins: aklotz (Thunderbir@moz-7C4433C1.inria.fr)
  1393. # [14:07] * Joins: armenzg (armenzg@moz-600B22EA.home1.cgocable.net)
  1394. # [14:08] * Joins: smaug (chatzilla@moz-7C4433C1.inria.fr)
  1395. # [14:08] * ChanServ sets mode: +o smaug
  1396. # [14:08] * armenzg is now known as armenzg_buildduty
  1397. # [14:08] * Joins: nical (nico@moz-F8747CC6.dsl.ovh.fr)
  1398. # [14:09] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  1399. # [14:09] * Joins: sheppy (sheppy@moz-E826F7C2.dhcp.jcsn.tn.charter.com)
  1400. # [14:10] * Joins: davidb (davidb@F2D29657.F60B0462.67AC9B1.IP)
  1401. # [14:10] * Joins: mrordinaire (Mibbit@15377879.91E92340.FD383126.IP)
  1402. # [14:10] <mrordinaire> hi
  1403. # [14:11] <mrordinaire> I'm a newbie and want to contribute to the Mozilla project
  1404. # [14:11] <mrordinaire> can anyone give me a pointer?
  1405. # [14:11] <@smaug> mrordinaire: #introduction might be a good place to start
  1406. # [14:11] <jwir3> mrordinaire: Welcome. #introduction is probably the channel best suited for this type of discussion
  1407. # [14:11] <jwir3> smaug++
  1408. # [14:11] <jwir3> ;)
  1409. # [14:11] * Joins: andreasn (andreasn@4983546C.57AEB339.AA32EE5B.IP)
  1410. # [14:12] <mrordinaire> cool
  1411. # [14:12] <Nikhar> hi
  1412. # [14:12] <mrordinaire> smaug: thanks
  1413. # [14:12] <Nikhar> does anyone know Atul's IRC nick?
  1414. # [14:12] * Joins: gsvelto (gsvelto@moz-93652BB5.clienti.tiscali.it)
  1415. # [14:13] <Optimize1> RyanVM: like yours any better :P
  1416. # [14:13] * Quits: andreasn (andreasn@4983546C.57AEB339.AA32EE5B.IP) (Quit: Ex-Chat)
  1417. # [14:15] * Joins: lduros (user@moz-5D9ACE42.admin.upenn.edu)
  1418. # [14:15] * Joins: bbondy (bbondy@moz-D9C9B0F.home4.cgocable.net)
  1419. # [14:15] <AryehGregor> Oh, right, people don't work on Sunday outside Israel, and yesterday was Sunday.
  1420. # [14:15] <AryehGregor> That's why there are no responses to my bugs yet.
  1421. # [14:15] * Joins: srishti (srishti@91BC8839.F442218F.88FACCAA.IP)
  1422. # [14:15] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/cd0bb4cb792d - Mark Finkle - Bug 851920 - Resources removed from the pre-processing chain are still dependant on MOZ_PROFILING/MOZ_TELEMETRY* r=lucasr
  1423. # [14:16] * coop|afk is now known as coop
  1424. # [14:16] <Ms2ger> AryehGregor, I work on Sunday ;)
  1425. # [14:16] * Joins: jdm (jdm@DB05BBF2.BB1F48F2.971E19F6.IP)
  1426. # [14:16] <till> Nikhar: most likely "toolness". If he even is on IRC, which I don't know.
  1427. # [14:16] * Joins: humph (dave@moz-E0B198AD.senecac.on.ca)
  1428. # [14:17] * Joins: jet (junglecode@moz-7C4433C1.inria.fr)
  1429. # [14:17] * Quits: alice (alice@moz-A7C201EB.zone16.bethere.co.uk) (Client exited)
  1430. # [14:17] <jwir3> AryehGregor: It depends on the person. Many people will still work on Sundays
  1431. # [14:17] <AryehGregor> Well, yeah, I know *some* people will.
  1432. # [14:17] <Nikhar> till: Thanks. Could you then possibly give me his email id? Wanted to talk about GSOC.
  1433. # [14:17] * Joins: alice (alice@moz-A7C201EB.zone16.bethere.co.uk)
  1434. # [14:17] <RattyAway> AryehGregor: isn't Sunday a working day in Saudi?
  1435. # [14:17] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4a21247a08eb - Blake Kaplan - Bug 850676 - test_mixed_content_blocker_bug803225.html is causing docshell/test/navigation tests to fail. r=tanvi
  1436. # [14:17] * Joins: mdas (mdas@50AE257C.D30B51A1.412CF160.IP)
  1437. # [14:17] * Quits: alice (alice@moz-A7C201EB.zone16.bethere.co.uk) (Client exited)
  1438. # [14:18] * Joins: alice (alice@moz-A7C201EB.zone16.bethere.co.uk)
  1439. # [14:18] <AryehGregor> RattyAway, maybe, I dunno.
  1440. # [14:18] <till> Nikhar: atul@mozillafoundation.org
  1441. # [14:18] <Nikhar> till: Thanks :)
  1442. # [14:18] * Joins: mconley (mconley@F2D29657.F60B0462.67AC9B1.IP)
  1443. # [14:18] <till> np
  1444. # [14:18] * Joins: Alfredo (alfredoyan@moz-642F7354.dynamic.hinet.net)
  1445. # [14:18] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  1446. # [14:19] <Nikhar> also any idea when I could find jcranmer Mattn and aceman online? Have been tryng to get in touch with them since yesterday.
  1447. # [14:19] * Quits: alice (alice@moz-A7C201EB.zone16.bethere.co.uk) (Client exited)
  1448. # [14:19] * Joins: alice (alice@moz-A7C201EB.zone16.bethere.co.uk)
  1449. # [14:20] * Joins: wolfiR (wolfiR@moz-F4A4C27.dip0.t-ipconnect.de)
  1450. # [14:20] <RattyAway> Nikhar: in #maildev
  1451. # [14:20] <RyanVM> Optimize1: that's what happens when you don't give me anything to go off
  1452. # [14:21] <smontagu> I bet there is some wikipedia page that says which days are the weeekend everywhere in the world
  1453. # [14:21] <Optimize1> well, you have the bug summary :), but its my fault only
  1454. # [14:21] * Quits: alice (alice@moz-A7C201EB.zone16.bethere.co.uk) (Ping timeout)
  1455. # [14:22] <RyanVM> Optimize1: bug summary != a good commit message in many cases, that bug included
  1456. # [14:22] <RyanVM> Optimize1: your commit message should say what the patch is *doing*, not restating the bug summary
  1457. # [14:22] <Nikhar> RattyAway: Thanks. :) Though I tried there too...no response.
  1458. # [14:22] <Optimize1> not even like 'fixes <bug summary>'
  1459. # [14:22] <Ms2ger> No
  1460. # [14:23] <Optimize1> ok
  1461. # [14:23] * Joins: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP)
  1462. # [14:23] <Optimize1> generally , I have been following tha tonly
  1463. # [14:23] * catlee-away is now known as catlee
  1464. # [14:23] <RattyAway> Nikhar: aceman is somewhere in Europe and jcranmer is somewhere in the US. they might not be around at the moment.
  1465. # [14:23] <Ms2ger> firebot, bug 672190
  1466. # [14:23] <firebot> Bug https://bugzilla.mozilla.org/show_bug.cgi?id=672190 nor, --, mozilla21, gaurav.pruthi88, RESO FIXED, consider removing expandEntityReferences from NodeIterator and TreeWalker
  1467. # [14:24] <Ms2ger> Optimize1, take that, for example
  1468. # [14:24] <Ms2ger> Optimize1, if you just put "fixed" in front, I still don't know what happened
  1469. # [14:25] <Optimize1> heh
  1470. # [14:25] <RattyAway> Ms2ger: man oh man I guess I've been doing my commit messages wrong all these years
  1471. # [14:25] <Optimize1> okay, will keep in mind
  1472. # [14:25] * Ms2ger shakes his fist at RattyAway
  1473. # [14:25] * RattyAway hides
  1474. # [14:26] * Joins: beaufour (beaufour@moz-EA4226EF.nyc.biz.rr.com)
  1475. # [14:26] <Ms2ger> There are cases where the summary works fine, but also a lot where it doesn't :)
  1476. # [14:26] <Nikhar> RattyAway: oh..I see. Thanks for help. :) Just one more thing though...when do you think they might be online?
  1477. # [14:26] <AryehGregor> Ms2ger, is there a way to check the value of the stop (immediate) propagation flag on an event?
  1478. # [14:26] * Quits: Alfredo (alfredoyan@moz-642F7354.dynamic.hinet.net) (Ping timeout)
  1479. # [14:26] <AryehGregor> If so, it should be tested that initEvent() clears it . . . I think we don't, but we should.
  1480. # [14:27] <Ms2ger> AryehGregor, dunno, ask smaug?
  1481. # [14:27] <RattyAway> Nikhar: they are usually around now
  1482. # [14:27] <RattyAway> perhaps Monday is a bad day.
  1483. # [14:27] <edmorley> mfinkle: changes to the CLOBBER file require a clobber is requested at https://secure.pub.build.mozilla.org/clobberer/ -> inbound tip is burning, have just requested one
  1484. # [14:27] * Joins: gcp (gpascutto@moz-86A7852.access.telenet.be)
  1485. # [14:28] <@smaug> AryehGregor: JS or C++ ?
  1486. # [14:28] <AryehGregor> smaug, JS.
  1487. # [14:28] <RattyAway> or wait a couple of hours.
  1488. # [14:28] <@smaug> AryehGregor: I don't think there is any way
  1489. # [14:28] <AryehGregor> Hmm, interesting.
  1490. # [14:28] <AryehGregor> Not even indirect?
  1491. # [14:28] <mfinkle> edmorley, thanks - i assumed CLOBBER "just worked"
  1492. # [14:28] <AryehGregor> By observing behavior?
  1493. # [14:28] <@smaug> AryehGregor: you could try to re-dispatch after init
  1494. # [14:28] <Ms2ger> mfinkle, there's a bug on file :)
  1495. # [14:29] <@smaug> AryehGregor: yes
  1496. # [14:29] <jmaher> edmorley: my push to m-i has red OSX builds, does it need a clobber?
  1497. # [14:29] * Quits: vicamo (vicamo@moz-99690620.hinet-ip.hinet.net) (Quit: Konversation terminated!)
  1498. # [14:29] <AryehGregor> smaug, could you give me some sample code? It would probably be faster than me trying to decipher the spec by myself . . .
  1499. # [14:29] <edmorley> mfinkle: it will at some point (bug 837323), but still has benefits for now (namely warning people after merging to their project repo etc)
  1500. # [14:29] <edmorley> jmaher: starred and retriggered a few mins ago
  1501. # [14:30] <jmaher> edmorley: oh
  1502. # [14:30] <@smaug> AryehGregor: create a tiny DOM subtree and check whether listener is called in all the levels
  1503. # [14:30] <@smaug> when you dispatch the event
  1504. # [14:30] <AryehGregor> smaug, okay.
  1505. # [14:31] <edmorley> jmaher: ah I forget to press submit on the comment, but I had retirggered
  1506. # [14:31] <edmorley> starred now
  1507. # [14:31] <Nikhar> RattyAway: Thanks. :)
  1508. # [14:34] * cmcavoy-offline is now known as cmcavoy
  1509. # [14:35] * Joins: jimm (jmathies@moz-864CAA4E.pn.at.cox.net)
  1510. # [14:36] * Joins: Alfredo (alfredoyan@moz-642F7354.dynamic.hinet.net)
  1511. # [14:38] * Quits: sewardj_ (sewardj@moz-7C4433C1.inria.fr) (Ping timeout)
  1512. # [14:38] * Quits: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP) (Quit: This computer has gone to sleep)
  1513. # [14:39] * Joins: ahal (ahal@F2D29657.F60B0462.67AC9B1.IP)
  1514. # [14:41] * Quits: gsvelto (gsvelto@moz-93652BB5.clienti.tiscali.it) (Ping timeout)
  1515. # [14:41] * Joins: gsvelto (gsvelto@moz-4FF3F68A.clienti.tiscali.it)
  1516. # [14:41] * Quits: jet (junglecode@moz-7C4433C1.inria.fr) (Quit: jet)
  1517. # [14:43] * Joins: akeybl (akeybl@2557E599.66715431.D25A875A.IP)
  1518. # [14:43] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/77f321ed3d9e - Benoit Girard - Bug 851611 - Part 1: Refactor profiler interface. r=jrmuizel
  1519. # [14:43] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/c75481a07302 - Benoit Girard - Bug 851611 - Part 2: Update profiler calls. r=jrmuizel
  1520. # [14:43] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ecce21507ea0 - Benoit Girard - Bug 851611 - Part 4: Split out GeckoProfilerFunc.h & PseudoStack.h. r=jrmuizel
  1521. # [14:43] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/d195190adc48 - Benoit Girard - Bug 851611 - Part 3: Rename headers. r=jrmuizel
  1522. # [14:44] * armenzg_buildduty is now known as armenzg_brb
  1523. # [14:44] * Quits: Alfredo (alfredoyan@moz-642F7354.dynamic.hinet.net) (Ping timeout)
  1524. # [14:45] <Nikhar> Hi, could anyone here provide me with aceman's and MattN's email ID?
  1525. # [14:46] <Ms2ger> firebot, aceman?
  1526. # [14:47] <firebot> Ms2ger: Sorry, I've no idea what 'aceman' might be.
  1527. # [14:47] <Ms2ger> Boo
  1528. # [14:47] * Joins: sewardj_ (sewardj@moz-7C4433C1.inria.fr)
  1529. # [14:47] * Joins: danielapetrovici__ (danielapet@601F3B17.33662590.A5830293.IP)
  1530. # [14:47] <Nikhar> https://wiki.mozilla.org/Community:SummerOfCode13:Brainstorming#Thunderbird
  1531. # [14:48] <Nikhar> aceman is the reporter on a few of the Thunderbird ideas
  1532. # [14:48] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  1533. # [14:48] * Quits: danielapetrovici_ (danielapet@moz-ACDE7EEC.mozilla.com) (Ping timeout)
  1534. # [14:48] * Joins: Alfredo (alfredoyan@moz-642F7354.dynamic.hinet.net)
  1535. # [14:49] * Quits: sewardj_ (sewardj@moz-7C4433C1.inria.fr) (Ping timeout)
  1536. # [14:49] <RattyAway> acelists@atlas.sk
  1537. # [14:49] <Ms2ger> firebot, aceman is acelists@atlas.sk
  1538. # [14:49] <firebot> Ms2ger: ok
  1539. # [14:50] * Joins: overholt (overholt@F2D29657.F60B0462.67AC9B1.IP)
  1540. # [14:50] <RattyAway> jcranmer == Pidgeot18@gmail.com,
  1541. # [14:50] <AryehGregor> Ms2ger, what's the easiest way to remove a failures JSON file when all tests now pass for that file?
  1542. # [14:50] <AryehGregor> Manually remove the file and edit makefiles?
  1543. # [14:50] <Nikhar> Thanks for all the help. :)
  1544. # [14:50] <Ms2ger> AryehGregor, the script might handle the makefile edit
  1545. # [14:50] * armenzg_brb is now known as armenzg_buildduty
  1546. # [14:50] <AryehGregor> What script?
  1547. # [14:50] <Ms2ger> Mm
  1548. # [14:51] <Ms2ger> parseFailures.py?
  1549. # [14:51] <AryehGregor> Should I really run that to fix one expected fail?
  1550. # [14:51] <Ms2ger> Well, analyzing the cost/benefit is up to you :)
  1551. # [14:53] <KaiRo> wow, nspr and nss hosted on hg now, interesting...
  1552. # [14:54] <Ms2ger> KaiRo, we sure are living in the future :)
  1553. # [14:54] * Quits: Wusel_ (muench@moz-643A8764.planconnect.de) (Quit: Computer is going to sleep.)
  1554. # [14:54] <KaiRo> Ms2ger: true, didn't think they'd ever switch to a DVCS
  1555. # [14:56] <KaiRo> to think we could in the future merge in new versions of them and have somewhat reasonable blame... blows me away... (even though I still like bonsai blame over any hg stuff I've seen so far)
  1556. # [14:57] * armenzg_buildduty is now known as armenzg_brb
  1557. # [14:58] <RattyAway> KaiRo: IIRC they didn't want to make the move to Hg because they didn't have the resources to make the move. Then there was a face to face meeting with Mozilla IT (ServerOps?) and IT agreed to dedicate some manpower to help them make the move.
  1558. # [14:58] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  1559. # [14:58] * Joins: brade (chatzilla@B7AFC447.1E40B90B.300258A3.IP)
  1560. # [14:58] * glob|away is now known as glob
  1561. # [14:58] * Joins: hipokrit (hipokrit@1BF5DFDB.CA40E1F7.C558AD24.IP)
  1562. # [14:59] * Parts: brade (chatzilla@B7AFC447.1E40B90B.300258A3.IP)
  1563. # [14:59] * Quits: srishti (srishti@91BC8839.F442218F.88FACCAA.IP) (Ping timeout)
  1564. # [14:59] * Quits: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  1565. # [15:00] * Joins: b10n1k (j0ni@moz-F186F5CD.home.otenet.gr)
  1566. # [15:00] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/dadc8416f4df - Andrew Halberstadt - Bug 843296 - Check for crashes and minidump_stackwalk for b2g emulator unittests, r=jgriffin
  1567. # [15:00] * Joins: vicamo (vicamo@moz-F5DDFCCC.dynamic.hinet.net)
  1568. # [15:01] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  1569. # [15:02] * Quits: ctyler (chris@moz-A54458EA.proximity.on.ca) (Ping timeout)
  1570. # [15:02] <KaiRo> RattyAway: ah
  1571. # [15:03] * Joins: JosiahOne (josiahbrun@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  1572. # [15:07] * Quits: jhorak (jhorak@moz-107AD163.redhat.com) (Client exited)
  1573. # [15:07] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  1574. # [15:08] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/74795c6fd7d6 - Ed Morley - Backed out changeset ecce21507ea0 (bug 851611)
  1575. # [15:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/e23e43a2c14e - Ed Morley - Backed out changeset 77f321ed3d9e (bug 851611) for breaking the build; CLOSED TREE
  1576. # [15:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/be8691daf71e - Ed Morley - Backed out changeset d195190adc48 (bug 851611)
  1577. # [15:08] * Parts: Nikhar (Mibbit@9B9315E1.A6025CA.1C37C358.IP)
  1578. # [15:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/1bed4fd2b0fa - Ed Morley - Backed out changeset c75481a07302 (bug 851611)
  1579. # [15:09] <BenWa> edmorley: *sigh*. I was pushing my bustage fix
  1580. # [15:10] * Joins: mshal (mshal@moz-D5CACB19.washdc.fios.verizon.net)
  1581. # [15:10] <edmorley> for bustage I generally prefer to backout rather than fix in place, since prior history shows it often doesn't work (and umpteen more changesets land on top)
  1582. # [15:10] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (Connection reset by peer)
  1583. # [15:10] <edmorley> particularly for bustage where it didn't compile on any platform, which means that there is quite possibly more things wrong with the landing, given that it wasn't tested locally/on try
  1584. # [15:11] * Joins: abhishekp (chatzilla@moz-BDF33BCA.mtnl.net.in)
  1585. # [15:11] <edmorley> (other than a few edge cases such as not qrefreshing etc)
  1586. # [15:12] <BenWa> edmorley: I normally prefer that too but in this case my patch change a SAMPLE_LABEL so it missed a few cases in the tree that changed in the past 2 days
  1587. # [15:12] * Joins: gustavold (gustavold@9C7112F4.61D1FB4D.FBFF2E6D.IP)
  1588. # [15:12] * jchen|away is now known as jchen
  1589. # [15:13] * RyanVM is now known as RyanVM|away
  1590. # [15:13] * Joins: alice (alice@moz-A7C201EB.zone16.bethere.co.uk)
  1591. # [15:13] * Joins: srishti (srishti@91BC8839.F442218F.88FACCAA.IP)
  1592. # [15:13] <edmorley> the problem is that for me to know that requires keeping the tree closed for longer whilst I wait for a response from a dev / inspect the changesets / read the bug, which is unfair on the other devs and means I get even less time to work on the tbpl starring improvements that are so desperately needed with our orangefactor of over 10
  1593. # [15:13] * Quits: alice (alice@moz-A7C201EB.zone16.bethere.co.uk) (Client exited)
  1594. # [15:13] * Joins: alice (alice@moz-A7C201EB.zone16.bethere.co.uk)
  1595. # [15:14] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  1596. # [15:14] * Joins: jesup|laptop (chatzilla@EAD4CC8E.81F0BF77.FB8DBAA3.IP)
  1597. # [15:14] * Quits: Alfredo (alfredoyan@moz-642F7354.dynamic.hinet.net) (Ping timeout)
  1598. # [15:15] * Quits: Asa (asa@363AA1C0.A1EC5031.204CA821.IP) (Ping timeout)
  1599. # [15:16] * Joins: ehsan (ehsan@F2D29657.F60B0462.67AC9B1.IP)
  1600. # [15:16] * ChanServ sets mode: +o ehsan
  1601. # [15:17] * Quits: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Ping timeout)
  1602. # [15:17] * armenzg_brb is now known as armenzg
  1603. # [15:17] * Quits: jesup|laptop (chatzilla@EAD4CC8E.81F0BF77.FB8DBAA3.IP) (Ping timeout)
  1604. # [15:17] * armenzg is now known as armenzg_buildduty
  1605. # [15:17] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr)
  1606. # [15:18] * Joins: Alfredo (alfredoyan@moz-642F7354.dynamic.hinet.net)
  1607. # [15:20] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (Ping timeout)
  1608. # [15:20] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f029edccac09 - Josh Matthews - Bug 847971 - Make openURL select recent windows that match the current privacy state. r=dolske
  1609. # [15:20] * Joins: jib (Jan-Ivar@moz-875D780C.hsd1.pa.comcast.net)
  1610. # [15:20] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  1611. # [15:23] * mcote|afk is now known as mcote
  1612. # [15:24] * Quits: sheppy (sheppy@moz-E826F7C2.dhcp.jcsn.tn.charter.com) (Quit: NO CARRIER)
  1613. # [15:25] * Joins: jhorak (jhorak@moz-107AD163.redhat.com)
  1614. # [15:25] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d4b5921c8a42 - Kartikaya Gupta - Bug 852070 - Update ANRReporter to use ThreadUtils. r=jchen
  1615. # [15:26] * Quits: Alfredo (alfredoyan@moz-642F7354.dynamic.hinet.net) (Ping timeout)
  1616. # [15:26] * Joins: jhopkins (jhopkins@moz-216F9986.tb.shawcable.net)
  1617. # [15:27] * Quits: abhishekp (chatzilla@moz-BDF33BCA.mtnl.net.in) (Quit: ChatZilla 0.9.90 [Firefox 19.0.2/20130307122853])
  1618. # [15:27] * Joins: Alfredo (alfredoyan@moz-642F7354.dynamic.hinet.net)
  1619. # [15:27] <AryehGregor> Wait, do we currently pass all five tests here? http://w3c-test.org/webapps/DOMCore/tests/submissions/AryehGregor/Event-propagation.html
  1620. # [15:27] <AryehGregor> I don't see why, from the source code . . .
  1621. # [15:28] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (Ping timeout)
  1622. # [15:28] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  1623. # [15:28] * Quits: srishti (srishti@91BC8839.F442218F.88FACCAA.IP) (Quit: Leaving)
  1624. # [15:29] * coop is now known as coop|mtg
  1625. # [15:30] * Quits: tomer (tomer@A79E5D33.221D8A7C.C328D627.IP) (Quit: Leaving.)
  1626. # [15:30] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  1627. # [15:31] <@ehsan> jlebar: ping
  1628. # [15:31] <jlebar> ehsan: hey
  1629. # [15:31] * Quits: Mathnerd314 (quassel@moz-195E87F.rh.uchicago.edu) (Connection reset by peer)
  1630. # [15:32] <@ehsan> jlebar: how much work do you think it would be to support nsAutoTArray<T,0>?
  1631. # [15:32] <@ehsan> to make it nsTArray<T>
  1632. # [15:32] <jlebar> ehsan: I thought we already supported that.
  1633. # [15:32] * jcranmer|away is now known as jcranmer
  1634. # [15:32] <@ehsan> oh we do?
  1635. # [15:32] * Joins: Mathnerd314 (quassel@moz-195E87F.rh.uchicago.edu)
  1636. # [15:32] <@ehsan> jlebar: I can't find anything in nsTArray.h which suggests that
  1637. # [15:32] <jlebar> hm, we used to have an explicit typecast of nsAutoTArray<T, 0> to nsTArray<T>, but it's not there anymore.
  1638. # [15:32] <jlebar> I probably removed it. :)
  1639. # [15:33] <@ehsan> jlebar: oh, why? :(
  1640. # [15:33] * Quits: jhopkins (jhopkins@moz-216F9986.tb.shawcable.net) (Quit: jhopkins)
  1641. # [15:33] <@ehsan> I need to do something like that
  1642. # [15:33] <jlebar> ehsan: Does nsAutoTArray<T, 0> not work? Or do you want it to be a subclass of nsTArray?
  1643. # [15:33] <@ehsan> jlebar: I am wary of what a char[0] array would do to its storage!
  1644. # [15:33] <jlebar> s/a subclass of/type-equivalent to/
  1645. # [15:33] <@ehsan> I don't care much about the type hierarchy
  1646. # [15:33] <@ehsan> I just want something that works ;)
  1647. # [15:34] <@ehsan> I guess I should just try it and hope for the best?
  1648. # [15:34] <jlebar> ehsan: I'd try it. I think it should probably work, and if it doesn't, we can fix it.
  1649. # [15:34] <jcranmer> the easiest way to do it is to partially specialize nsAutoTArray
  1650. # [15:34] <@ehsan> ok
  1651. # [15:34] <jcranmer> template <typename T> class nsAutoTArray<T, 0> : public nsTArray<T> {};
  1652. # [15:35] <jlebar> jcranmer: yeah, we had that before. I'm just not sure it's necessary.
  1653. # [15:35] <jlebar> But we can add it back it if is.
  1654. # [15:35] <jcranmer> that guarantees tha sizeof(nsAutoTArray<T, 0> == nsArray<T>)
  1655. # [15:36] <jcranmer> a char[0] array *might* make the size grow
  1656. # [15:36] * Quits: alice (alice@moz-A7C201EB.zone16.bethere.co.uk) (Client exited)
  1657. # [15:37] <@ehsan> jlebar: so first step... it compiles ;)
  1658. # [15:37] <@ehsan> let's see
  1659. # [15:37] <jlebar> That means it passes my static asserts, too, which is good.
  1660. # [15:37] <@ehsan> yeah
  1661. # [15:38] * Joins: ctyler (chris@moz-A54458EA.proximity.on.ca)
  1662. # [15:38] * Joins: jhopkins (jhopkins@moz-216F9986.tb.shawcable.net)
  1663. # [15:40] * Quits: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net) (Input/output error)
  1664. # [15:40] <@ehsan> jlebar: cool, everything seems to work perfectly
  1665. # [15:40] <jlebar> ehsan: happy to help. :)
  1666. # [15:40] * coop|mtg is now known as coop
  1667. # [15:40] <Jesse> bz: is there a bug for https://bugzilla.mozilla.org/show_bug.cgi?id=851851#c4
  1668. # [15:42] <@bz> jesse: yes
  1669. # [15:42] <@bz> jesse: https://bugzilla.mozilla.org/show_bug.cgi?id=851924
  1670. # [15:44] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  1671. # [15:44] <@ted> gotta love when someone fixes a race condition deep in our code and it fixes a bunch of intermittent orange
  1672. # [15:44] <Ms2ger> \o/
  1673. # [15:44] <@ted> bug 684887 FWIW
  1674. # [15:44] <froydnj> ted: which bug is that?
  1675. # [15:44] * Joins: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk)
  1676. # [15:45] * Joins: sewardj_ (sewardj@moz-7C4433C1.inria.fr)
  1677. # [15:46] * Joins: Edgar (Thunderbir@moz-8488825B.dynamic.hinet.net)
  1678. # [15:46] <davidb> sewardj_: can you contact hillzy? (on irc)
  1679. # [15:47] <davidb> (also hi!)
  1680. # [15:47] * Quits: gsvelto (gsvelto@moz-4FF3F68A.clienti.tiscali.it) (Ping timeout)
  1681. # [15:47] * Joins: gsvelto (gsvelto@moz-762AF743.clienti.tiscali.it)
  1682. # [15:47] * Quits: Edgar (Thunderbir@moz-8488825B.dynamic.hinet.net) (Quit: Edgar)
  1683. # [15:47] <Jesse> ted: lots of "different" oranges, or one frequent orange?
  1684. # [15:48] * Quits: danielapetrovici__ (danielapet@601F3B17.33662590.A5830293.IP) (Ping timeout)
  1685. # [15:48] * Quits: sewardj_ (sewardj@moz-7C4433C1.inria.fr) (Ping timeout)
  1686. # [15:49] * Quits: fabrice (fabrice@moz-94F028C6.hsd1.ca.comcast.net) (Quit: Leaving.)
  1687. # [15:49] * Joins: sewardj_ (sewardj@moz-7C4433C1.inria.fr)
  1688. # [15:50] <@ted> Jesse: seems like perhaps at least two different oranges
  1689. # [15:50] <@ted> a leak and an assertion
  1690. # [15:50] * sewardj_ is now known as sewardj
  1691. # [15:51] <Jesse> oh man https://bugzilla.mozilla.org/show_bug.cgi?id=833349#c3
  1692. # [15:51] * @ted wonders if http://paulrouget.com/e/devtoolsnext/ "A python library to interact with Firefox" differs significantly from Marionette
  1693. # [15:52] <AutomatedTester> paul: ^ ?
  1694. # [15:52] * Quits: jhorak (jhorak@moz-107AD163.redhat.com) (Client exited)
  1695. # [15:52] <AutomatedTester> ted: looks the same in my opinion
  1696. # [15:52] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (No route to host)
  1697. # [15:53] * Joins: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  1698. # [15:53] <@ted> AutomatedTester: hard to say without seeing the actual API
  1699. # [15:53] <@ted> but it sounds disturbingly similar :)
  1700. # [15:53] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/e9904afcea7d - Aryeh Gregor - Bug 851911 - Unused variable rv in MakeOrSetMinidumpPath() in nsAppRunner.cpp; r=bsmedberg
  1701. # [15:53] <edmorley> yey for our reinventing the wheel again! :-)
  1702. # [15:54] <AutomatedTester> edmorley: we cant stop until we get a round one
  1703. # [15:54] <AutomatedTester> with spikes
  1704. # [15:54] <edmorley> lol
  1705. # [15:55] * Quits: Alfredo (alfredoyan@moz-642F7354.dynamic.hinet.net) (Ping timeout)
  1706. # [15:55] * Joins: gwagner (Gregor@moz-B8B530C2.hsd1.ca.comcast.net)
  1707. # [15:55] * Joins: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net)
  1708. # [15:56] * Quits: mrordinaire (Mibbit@15377879.91E92340.FD383126.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1709. # [15:56] * Quits: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br) (Connection reset by peer)
  1710. # [15:56] * Joins: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br)
  1711. # [15:56] <AryehGregor> Ms2ger, does this test file look good to you? http://w3c-test.org/webapps/DOMCore/tests/submissions/AryehGregor/Event-propagation.html
  1712. # [15:56] <AryehGregor> If so, I'll approve it.
  1713. # [15:56] * Quits: Optimize1 (Instantbir@4F3E1057.A6DE773B.88FACCAA.IP) (Ping timeout)
  1714. # [15:57] * Joins: ekr (ekr@moz-D7997EC8.rtfm.com)
  1715. # [15:57] * Joins: Waldo (waldo@2557E599.66715431.D25A875A.IP)
  1716. # [15:57] * Quits: ekr (ekr@moz-D7997EC8.rtfm.com) (Quit: ekr)
  1717. # [15:58] * Joins: tchevalier (Thunderbir@8CFEF1F5.1D4354C6.96B18764.IP)
  1718. # [15:59] <Ms2ger> AryehGregor, sorry, trying to pay attention to class
  1719. # [15:59] * Quits: Waldo (waldo@2557E599.66715431.D25A875A.IP) (Ping timeout)
  1720. # [15:59] <AryehGregor> Heh, no problem.
  1721. # [16:00] * Joins: wlach (wlach@moz-A1116E53.sdsl.bell.ca)
  1722. # [16:00] * Fallen|away is now known as Fallen
  1723. # [16:00] * Quits: dcamp (uid6663@moz-C944F5EC.irccloud.com) (Quit: )
  1724. # [16:00] * Joins: dcamp (dcamp@moz-930D5B64.hsd1.wa.comcast.net)
  1725. # [16:01] * Joins: Asa (asa@2557E599.66715431.D25A875A.IP)
  1726. # [16:02] * Quits: tchevalier (Thunderbir@8CFEF1F5.1D4354C6.96B18764.IP) (Ping timeout)
  1727. # [16:02] <AryehGregor> Ms2ger, what should I do if I find a bug in a test of yours?
  1728. # [16:02] <AryehGregor> Anyplace I should file it?
  1729. # [16:02] * capella is now known as capella|zzz
  1730. # [16:02] <Ms2ger> AryehGregor, feel free to fix it / ping me on irc / send me email, as you like :
  1731. # [16:03] <Ms2ger> )
  1732. # [16:03] * Joins: danielapetrovici__ (danielapet@A5A0595A.66715431.D25A875A.IP)
  1733. # [16:03] <paul> ted: it's based on marionnete
  1734. # [16:03] * Quits: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Ping timeout)
  1735. # [16:03] <@ted> paul: excellent :)
  1736. # [16:03] * Quits: jib (Jan-Ivar@moz-875D780C.hsd1.pa.comcast.net) (Quit: jib)
  1737. # [16:03] <hub> do we have a way to test for the OS version in mochitests?
  1738. # [16:04] * Quits: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de) (Input/output error)
  1739. # [16:04] * Joins: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  1740. # [16:04] <Ms2ger> hub, navigator.platform?
  1741. # [16:04] * Joins: josh (josh@moz-61186829.hsd1.mn.comcast.net)
  1742. # [16:04] * Joins: Waldo (waldo@2557E599.66715431.D25A875A.IP)
  1743. # [16:05] <tbsaunde> hub: you have to use navigator.oscpu if you care about version afaik
  1744. # [16:05] <hub> Ms2ger: ah. ok.
  1745. # [16:05] * Joins: GinaYeh-laptop (GinaYeh@moz-3BC722CB.hfc.comcastbusiness.net)
  1746. # [16:05] <tbsaunde> Ms2ger: I thought platform was just like intel mac or Win32 (atleast from reading the code)
  1747. # [16:05] <Ms2ger> tbsaunde, could be, I dunno
  1748. # [16:06] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/5e9fe5a74270 - Marco Bonardo - Bug 830423 part 2 - Avoid history view refreshes when onvisit falls into the Today bucket.
  1749. # [16:06] * Joins: tchevalier (Thunderbir@8CFEF1F5.1D4354C6.96B18764.IP)
  1750. # [16:06] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b6ea788e50f6 - Marco Bonardo - Bug 830423 part 1 - Avoid repeated execution of daysOfHistory query.
  1751. # [16:06] <Ms2ger> tbsaunde, looks like you're right
  1752. # [16:06] * hwine-zzz is now known as hwine
  1753. # [16:06] <@ted> we should expose mozinfo in JS
  1754. # [16:06] <@ted> jmaher: ^^
  1755. # [16:06] <@ted> (for mochitests et. al.)
  1756. # [16:07] <jmaher> ted: that would be nice- could we generate a .json object that we load up by default in mochitest ?
  1757. # [16:07] * Quits: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Quit: masayuki)
  1758. # [16:07] <tbsaunde> ted: mozinfo?
  1759. # [16:08] <tbsaunde> ted: if its heres soom stuff like actual platform and is this a debug build then yes please :)
  1760. # [16:08] <hub> I found a const isOSXLion = navigator.userAgent.indexOf("Mac OS X 10.7") != -1;
  1761. # [16:08] <hub> I'm gonna use something like that I think
  1762. # [16:08] * Quits: tchevalier (Thunderbir@8CFEF1F5.1D4354C6.96B18764.IP) (Ping timeout)
  1763. # [16:08] * Fallen is now known as Fallen|away
  1764. # [16:08] * Quits: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net) (Ping timeout)
  1765. # [16:09] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  1766. # [16:10] * Quits: danielapetrovici__ (danielapet@A5A0595A.66715431.D25A875A.IP) (Ping timeout)
  1767. # [16:10] * Joins: ekr (ekr@moz-D7997EC8.rtfm.com)
  1768. # [16:11] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (Ping timeout)
  1769. # [16:11] <@ted> jmaher: sounds reasonable
  1770. # [16:11] * Joins: dao (dao@moz-281B0ACA.superkabel.de)
  1771. # [16:11] <@ted> tbsaunde: yeah, we have a "mozinfo" Python module that contains exactly that
  1772. # [16:11] * Joins: tchevalier (Thunderbir@8CFEF1F5.1D4354C6.96B18764.IP)
  1773. # [16:11] <@ted> tbsaunde: look in $objdir/mozinfo.json
  1774. # [16:11] <@ted> jmaher: we already have it in json, heh
  1775. # [16:12] <@ted> just need to expose it to content
  1776. # [16:13] * geekboy|afk is now known as geekboy
  1777. # [16:13] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  1778. # [16:13] <jmaher> ted: oh yeah- that should be fairly easy to do
  1779. # [16:15] * Quits: gsvelto (gsvelto@moz-762AF743.clienti.tiscali.it) (Quit: Leaving)
  1780. # [16:15] <tbsaunde> ted: I see, wouldn't we need to add the running OS version to that somehow, or do we just not put that in there for linux or mingw builds?
  1781. # [16:15] * Joins: bmoss (bmoss@2557E599.66715431.D25A875A.IP)
  1782. # [16:16] * coop is now known as coop|afk
  1783. # [16:16] <@ted> tbsaunde: yeah, we'd probably need slightly more info
  1784. # [16:16] * Joins: bsmedberg (bsmedberg@moz-7C4433C1.inria.fr)
  1785. # [16:16] * ChanServ sets mode: +o bsmedberg
  1786. # [16:16] * Joins: gsvelto (gsvelto@moz-762AF743.clienti.tiscali.it)
  1787. # [16:16] <@ted> tbsaunde: all that info comes from the build system currently
  1788. # [16:16] * Quits: tchevalier (Thunderbir@8CFEF1F5.1D4354C6.96B18764.IP) (Ping timeout)
  1789. # [16:16] <@ted> so if you want os version etc, we'd need to dynamically detect that
  1790. # [16:16] <@ted> doesn't seem hard
  1791. # [16:16] <tbsaunde> ted: yeah, it really shouldn't be
  1792. # [16:17] <@ted> tbsaunde: file a bug?
  1793. # [16:17] <@bsmedberg> johns: does the patch in bug 851378 move the proto-unhooking *earlier* in the case of a delayed-stop?
  1794. # [16:19] <RattyAway> Ms2ger: I seem to be stuck in an infinite loop :P
  1795. # [16:19] <RattyAway> make.py[6]: Leaving directory 'c:\t1\hg\objdir-sm\mozilla\dom\bindings\test\..'
  1796. # [16:19] <RattyAway> make.py[6]: Leaving directory 'c:\t1\hg\objdir-sm\mozilla\dom\bindings\test\..'
  1797. # [16:19] <RattyAway> make.py[6]: Entering directory 'c:\t1\hg\objdir-sm\mozilla\dom\bindings\test\..'
  1798. # [16:19] <RattyAway> make.py[6]: Entering directory 'c:\t1\hg\objdir-sm\mozilla\dom\bindings\test\..'
  1799. # [16:19] <RattyAway> make.py[6]: Entering directory 'c:\t1\hg\objdir-sm\mozilla\dom\bindings\test\..'
  1800. # [16:19] <Ms2ger> Oh dear
  1801. # [16:20] <Ms2ger> No idea, sorry
  1802. # [16:20] * Quits: yzen (Adium@AA2C085E.10C8AEF8.9A8C35B4.IP) (Quit: Leaving.)
  1803. # [16:20] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  1804. # [16:20] <RattyAway> dao: https://bugzilla.mozilla.org/show_bug.cgi?id=752376#c22
  1805. # [16:20] <RattyAway> According to the IDL ensureElementIsVisible() takes only one parameter.
  1806. # [16:21] <RattyAway> http://mxr.mozilla.org/seamonkey/source/layout/xul/base/public/nsIScrollBoxObject.idl#74
  1807. # [16:22] <dao> RattyAway: that's a different ensureElementIsVisible
  1808. # [16:22] * Joins: kanru` (kanru@moz-DB9AE380.dynamic.hinet.net)
  1809. # [16:22] <RattyAway> dao: Hrm ok.
  1810. # [16:23] <tbsaunde> ted: for which mozinfo in general or adding stuff to it?
  1811. # [16:23] <@ted> tbsaunde: at least the former
  1812. # [16:24] <tbsaunde> ted: ok
  1813. # [16:24] <evilpie> !seen benoit
  1814. # [16:24] <firebot> benoit was last seen 6 weeks, 4 days, 4 minutes and 16 seconds ago, saying 'pascalc: oui, stas, arky et matjaz arrivent déjà ce soir normalement' in #frenchmoz.
  1815. # [16:24] <evilpie> ?!
  1816. # [16:24] <Ms2ger> Yes, stas, arky & matjaz already arrive tonight, normally
  1817. # [16:24] * Joins: pnkfelix (pnkfelix@moz-A9854E00.hsd1.ma.comcast.net)
  1818. # [16:25] * Joins: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net)
  1819. # [16:25] <jcranmer> that's an interesting tense compared to English usage
  1820. # [16:25] <jcranmer> the English variant is "would have normally arrived by now"
  1821. # [16:26] <paul> ted: there's still some limitation with marionnete (not asynchronous for example)
  1822. # [16:26] <jcranmer> which is a past conditional instead of a present indicative
  1823. # [16:26] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  1824. # [16:27] <@ted> paul: as long as you're not reinventing the wheel i'm happy :)
  1825. # [16:27] * Joins: jet (junglecode@moz-7C4433C1.inria.fr)
  1826. # [16:27] * Joins: sankha94 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  1827. # [16:28] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  1828. # [16:28] * Joins: danielapetrovici__ (danielapet@601F3B17.33662590.A5830293.IP)
  1829. # [16:28] * Quits: GinaYeh-laptop (GinaYeh@moz-3BC722CB.hfc.comcastbusiness.net) (Ping timeout)
  1830. # [16:28] * sankha94 is now known as sankha93
  1831. # [16:28] <Ms2ger> Might be will arrive
  1832. # [16:28] <Ms2ger> My French tenses are quite rusty
  1833. # [16:28] * Joins: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com)
  1834. # [16:29] * Joins: kdcw (kdcw@moz-F7413045.pk.shawcable.net)
  1835. # [16:29] * Joins: dbaron (dbaron@moz-E0DDE997.dsl.dynamic.sonic.net)
  1836. # [16:29] * ChanServ sets mode: +o dbaron
  1837. # [16:30] <Waldo> evilpie: you're looking for BenWa or bjacob probably
  1838. # [16:30] * Parts: cmcavoy (cmcavoy@moz-7E27296B.members.linode.com) (Leaving)
  1839. # [16:31] <evilpie> Waldo: thanks, i need to ask something about the profiler
  1840. # [16:31] * Quits: Hendikins (wolfox@moz-13914647.hhui4.ken.bigpond.net.au) (Ping timeout)
  1841. # [16:31] <padenot> Ms2ger, jcranmer: are going to arrive
  1842. # [16:31] * Joins: Hendikins (wolfox@moz-13914647.hhui4.ken.bigpond.net.au)
  1843. # [16:32] <jimm> jmaher: ping
  1844. # [16:32] * Joins: mbrubeck (mbrub_000@moz-45568FC0.hsd1.wa.comcast.net)
  1845. # [16:32] * pmoore is now known as pmoore|time-for-a-nice-cup-of-
  1846. # [16:32] * Joins: SDUP (chatzilla@moz-4ED12852.w2-11.abo.wanadoo.fr)
  1847. # [16:32] * pmoore|time-for-a-nice-cup-of- is now known as pmoore|time-4-a-nice-cuppa-t
  1848. # [16:33] <firebot> Check-in:
  1849. # [16:33] <jmaher> jimm: pong
  1850. # [16:33] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/9c6474e8d3c8 - Benjamin Smedberg - Bug 831768 - Delay async painting calls so that they never nest within RPC calls. The Adobe Flash implementation doesn't expect this reentry and sometimes deadlocks.
  1851. # [16:33] <firebot> The Apple Java stub doesn't expect this reentry and corrupts NPRuntime objects. r=gfritzsche
  1852. # [16:33] * Joins: sankha94 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  1853. # [16:33] <jimm> jmaher: hey, just checking, did you get my response to your email?
  1854. # [16:33] <jmaher> jimm: no, I did not
  1855. # [16:33] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  1856. # [16:33] <jimm> ok that is weird. I'm emailing jmaher@mozilla.com
  1857. # [16:34] <jimm> responded twice
  1858. # [16:34] <jmaher> jimm: odd, I wouldn't have accidentally deleted it twice
  1859. # [16:34] * Joins: abhishekp (chatzilla@moz-910593CC.mtnl.net.in)
  1860. # [16:34] <Ms2ger> padenot, looks like an indicatif présent on first sight
  1861. # [16:34] <jimm> jmaher: just sent you a test email
  1862. # [16:34] <RattyAway> gps: you're the moz.build expert aren't you?
  1863. # [16:34] <jmaher> jimm: I got that
  1864. # [16:35] <jimm> ok, lets try the original
  1865. # [16:35] <Ms2ger> RattyAway, he totally is, though I could try? :)
  1866. # [16:35] <jimm> jmaher: sent
  1867. # [16:35] <evilpie> I though about translating that sentence into german and came to the conclusion that there are to many nearly correct ways
  1868. # [16:35] <jmaher> jimm: nothing yet
  1869. # [16:35] <jimm> hrm
  1870. # [16:35] * Joins: nhirata (anonymous@moz-1A50F7F8.hsd1.ca.comcast.net)
  1871. # [16:35] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Ping timeout)
  1872. # [16:35] <jimm> jmaher
  1873. # [16:35] <jmaher> jimm: are you sending a .exe file or something?
  1874. # [16:35] <jimm> jmaher: it had a text attachement
  1875. # [16:35] <jimm> just .txt
  1876. # [16:36] <jimm> a patch basically
  1877. # [16:36] <RattyAway> Ms2ger: it's that infinite loop thing I posted earlier.
  1878. # [16:36] <jmaher> jimm: still nothing, and I wouldn't think a .txt file would be blocked
  1879. # [16:36] * Joins: automata (automata@moz-1CE7A56D.ifsc.usp.br)
  1880. # [16:36] * Quits: automata (automata@moz-1CE7A56D.ifsc.usp.br) (Client exited)
  1881. # [16:36] <padenot> Ms2ger: yes, but in fact it means something that will happen
  1882. # [16:36] * Joins: mkaply (mkaply@moz-E77BA452.gtwncmta01.grtntx.tl.dh.suddenlink.net)
  1883. # [16:36] <Ms2ger> padenot, you're weird :)
  1884. # [16:36] * Joins: fabrice (fabrice@2557E599.66715431.D25A875A.IP)
  1885. # [16:37] * jmaher wonders how many other emails he is missing
  1886. # [16:37] <jimm> jmaher: sent another as plain text
  1887. # [16:37] <padenot> Ms2ger: I'm french for the cheese, not for the language :-)
  1888. # [16:37] <jimm> might get through, otherwise I'll try a zip
  1889. # [16:37] <@ted> RattyAway: gps is west coast, so he may not be around yet
  1890. # [16:37] * Joins: knelson (Adium@2557E599.66715431.D25A875A.IP)
  1891. # [16:37] <RattyAway> ted: ok
  1892. # [16:38] * Parts: knelson (Adium@2557E599.66715431.D25A875A.IP)
  1893. # [16:38] <jmaher> jimm: no email yet
  1894. # [16:38] <jmaher> jimm: just send it to my gmail: joel.maher@
  1895. # [16:38] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a7ea5daa2dc9 - Hannes Verschore - Bug 850534: Various Yarr performance improvements, r=dmandelin
  1896. # [16:38] <jimm> will send to gmail from another account.
  1897. # [16:38] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (Ping timeout)
  1898. # [16:38] <jmaher> jimm: cool
  1899. # [16:39] <RattyAway> gps in case you read scrollback here is the generated dom/bindings/test/Makefile http://pastebin.mozilla.org/2225816
  1900. # [16:39] * philor|away is now known as philor
  1901. # [16:39] * Joins: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP)
  1902. # [16:40] * Joins: automata (automata@moz-1CE7A56D.ifsc.usp.br)
  1903. # [16:40] <jmaher> jimm: got your email
  1904. # [16:40] <jimm> jmaher: sent. might be something on my side with my isp. let me know if you don't get anything at your gmail address.
  1905. # [16:40] <jimm> ah cool
  1906. # [16:40] * Joins: [1]kdcw (kdcw@moz-F7413045.pk.shawcable.net)
  1907. # [16:40] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/e581d54aa570 - Chris Lord - Bug 850889 - Fix animation conflict with overscroll and dynamic toolbar. r=kats
  1908. # [16:40] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/bee24b51a1a9 - Chris Lord - Bug 850889 - Fix jank when animating dynamic toolbar. r=kats
  1909. # [16:40] * pmoore|time-4-a-nice-cuppa-t is now known as pmoore
  1910. # [16:40] * Quits: dao (dao@moz-281B0ACA.superkabel.de) (Quit: Leaving.)
  1911. # [16:40] * Joins: cviecco (cviecco@2557E599.66715431.D25A875A.IP)
  1912. # [16:41] * Quits: kdcw (kdcw@moz-F7413045.pk.shawcable.net) (Ping timeout)
  1913. # [16:41] * [1]kdcw is now known as kdcw
  1914. # [16:41] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/240dc14b1b87 - Brian R. Bondy - Bug 851897 - Fix crash in mozilla::widget::nsWinMetroUtils::GetActivationURI. r=jimm
  1915. # [16:41] * Quits: cabanier (cabanier@moz-6A1F2F2C.hsd1.wa.comcast.net) (Quit: Leaving.)
  1916. # [16:42] * Quits: kdcw (kdcw@moz-F7413045.pk.shawcable.net) (Connection reset by peer)
  1917. # [16:43] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/6678ea192a6c - Dão Gottwald - Backed out changeset f029edccac09
  1918. # [16:43] * Joins: jryans (jryans@moz-37FA908D.sub-70-195-194.myvzw.com)
  1919. # [16:43] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/867475abb894 - Dão Gottwald - merge backout
  1920. # [16:43] * khuey|away is now known as khuey
  1921. # [16:43] * Quits: Gentlecat_ (Roman@8942624D.7D1F96C3.8FB52CB8.IP) (Ping timeout)
  1922. # [16:44] * Quits: jryans (jryans@moz-37FA908D.sub-70-195-194.myvzw.com) (Quit: Linkinus - http://linkinus.com)
  1923. # [16:45] * Quits: @bsmedberg (bsmedberg@moz-7C4433C1.inria.fr) (Quit: bsmedberg)
  1924. # [16:45] * Joins: mccr8 (mccr8@2557E599.66715431.D25A875A.IP)
  1925. # [16:45] * Quits: pnkfelix (pnkfelix@moz-A9854E00.hsd1.ma.comcast.net) (Ping timeout)
  1926. # [16:45] * Joins: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  1927. # [16:46] * Joins: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net)
  1928. # [16:46] * Quits: Kabaka (Kabaka@moz-D04FAA10.stl1cmta01.stwrok.ok.dh.suddenlink.net) (Quit: s/Kabaka//)
  1929. # [16:46] * Joins: jhammel (jhammel@moz-14240F1C.hsd1.ca.comcast.net)
  1930. # [16:47] * Joins: dao (dao@moz-281B0ACA.superkabel.de)
  1931. # [16:47] * Quits: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net) (Connection reset by peer)
  1932. # [16:47] * Joins: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net)
  1933. # [16:48] * Joins: ErvisTusha (ErvisTusha@C99DF599.F69FB6EA.363D84A4.IP)
  1934. # [16:48] * Parts: Pauly (paul@601F3B17.33662590.A5830293.IP)
  1935. # [16:49] * Joins: mmc|laptop (mmc@moz-BBC0C7F1.hsd1.ca.comcast.net)
  1936. # [16:49] * Quits: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net) (Ping timeout)
  1937. # [16:49] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/ee2e53392df1 - Olli Pettay - Bug 851996, Simplify MessageEvent's jsval handling, r=mccr8
  1938. # [16:49] * Joins: sheppy (sheppy@moz-E826F7C2.dhcp.jcsn.tn.charter.com)
  1939. # [16:49] * Joins: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  1940. # [16:50] * Joins: myk (myk@moz-BE33DA21.fw1.sfo1.mozilla.net)
  1941. # [16:50] <evilpie> bjacob: ping
  1942. # [16:50] * Joins: GinaYeh-laptop (GinaYeh@moz-A2F054F5.hfc.comcastbusiness.net)
  1943. # [16:51] * Quits: romaxa (romaxa@670ACB81.66590CC0.4A6948F8.IP) (Max SendQ exceeded)
  1944. # [16:51] * Joins: romaxa (romaxa@670ACB81.66590CC0.4A6948F8.IP)
  1945. # [16:52] <@ted> josh: thanks for poking your team about that orange bug
  1946. # [16:52] <@ted> sorry you probably got a pile of bugmail about it in the interim :)
  1947. # [16:52] * Joins: nmatsakis (nmatsakis@moz-6EBF7608.hsd1.ma.comcast.net)
  1948. # [16:53] <@ted> BenWa: do we have a way to generate a profile from outside the running app?
  1949. # [16:53] * Quits: mak (mak@moz-7C4433C1.inria.fr) (Input/output error)
  1950. # [16:53] * Joins: jryans (jryans@moz-37FA908D.sub-70-195-194.myvzw.com)
  1951. # [16:54] * Joins: mak (mak@moz-7C4433C1.inria.fr)
  1952. # [16:55] * Quits: abhishekp (chatzilla@moz-910593CC.mtnl.net.in) (Quit: ChatZilla 0.9.90 [Firefox 19.0.2/20130307023931])
  1953. # [16:55] * Quits: tchevalier (Thunderbir@26DF2FEE.76D180ED.C47D5415.IP) (Quit: tchevalier)
  1954. # [16:56] * mmc|laptop is now known as mmc
  1955. # [16:56] * Joins: victorporof (victorporo@DC82DE00.39508509.6A4F8DA2.IP)
  1956. # [16:56] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  1957. # [16:56] * Quits: jryans (jryans@moz-37FA908D.sub-70-195-194.myvzw.com) (Ping timeout)
  1958. # [16:57] * Joins: jryans (jryans@moz-945C5CA4.massrel.com)
  1959. # [16:57] * Quits: jryans (jryans@moz-945C5CA4.massrel.com) (Client exited)
  1960. # [16:57] * Joins: jryans (jryans@moz-945C5CA4.massrel.com)
  1961. # [16:57] <sawrubh> ehsan: ping
  1962. # [16:57] * Quits: myk (myk@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: Instantbird 1.4a1pre -- http://www.instantbird.com)
  1963. # [16:57] * Joins: myk (myk@moz-BE33DA21.fw1.sfo1.mozilla.net)
  1964. # [16:57] <@ehsan> sawrubh: hi
  1965. # [16:57] * Joins: clee (clee@2557E599.66715431.D25A875A.IP)
  1966. # [16:58] <bjacob> evilpie: pong
  1967. # [16:58] * catlee is now known as catlee-lunch
  1968. # [16:58] <evilpie> bjacob: you know about the profiler setup right?
  1969. # [16:58] * Joins: Pike (Pike@2557E599.66715431.D25A875A.IP)
  1970. # [16:58] <bjacob> evilpie: you want BenWa
  1971. # [16:58] <evilpie> bjacob: okay, thanks
  1972. # [16:59] * Quits: mak (mak@moz-7C4433C1.inria.fr) (Ping timeout)
  1973. # [16:59] <bjacob> evilpie: BenWa and me only differ by opposite spin, it's tricky
  1974. # [16:59] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  1975. # [16:59] <evilpie> :O
  1976. # [16:59] * Ms2ger spins bjacob around some more
  1977. # [16:59] <evilpie> Up & Down?
  1978. # [16:59] <bjacob> exactly
  1979. # [17:00] * Quits: sankha94 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  1980. # [17:00] <Ms2ger> What flavour are you?
  1981. # [17:00] <froydnj> right round?
  1982. # [17:01] * Joins: mayhemer (Miranda@moz-415580BA.broadband17.iol.cz)
  1983. # [17:01] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  1984. # [17:01] * Quits: gwagner (Gregor@moz-B8B530C2.hsd1.ca.comcast.net) (Quit: gwagner)
  1985. # [17:01] * Quits: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr_)
  1986. # [17:02] * Quits: nical (nico@moz-F8747CC6.dsl.ovh.fr) (Ping timeout)
  1987. # [17:02] * Joins: bdahl (bdahl@moz-BE33DA21.fw1.sfo1.mozilla.net)
  1988. # [17:03] * Joins: bajaj (Adium@2557E599.66715431.D25A875A.IP)
  1989. # [17:04] <Waldo> Ms2ger: you're strange
  1990. # [17:04] <Ms2ger> Waldo, :)
  1991. # [17:04] * kmoir is now known as kmoir-afk
  1992. # [17:04] * ctalbert|afk is now known as ctalbert
  1993. # [17:04] * Quits: SDUP (chatzilla@moz-4ED12852.w2-11.abo.wanadoo.fr) (Quit: ChatZilla 0.9.90 [Firefox 19.0.2/20130307023931])
  1994. # [17:05] * ctalbert is now known as ctalbert|mtg
  1995. # [17:05] * Joins: vladan1 (vladan@moz-B273C121.inria.fr)
  1996. # [17:05] * ahal is now known as ahal|lunch
  1997. # [17:05] * Joins: alice (alice@moz-A7C201EB.zone16.bethere.co.uk)
  1998. # [17:06] * Quits: vladan (vladan@moz-7C4433C1.inria.fr) (Ping timeout)
  1999. # [17:06] <philor> you have a certain charm, though
  2000. # [17:07] <jcranmer> only if you're on top
  2001. # [17:08] * Quits: Hughman (Mibbit@DF0C90CA.D2C20E22.A3B82EC7.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2002. # [17:08] * Quits: Ms2ger (Ms2ger@moz-F2143CCB.ugent.be) (Quit: bbl)
  2003. # [17:08] * Joins: jammink (textual@2557E599.66715431.D25A875A.IP)
  2004. # [17:08] * armenzg_buildduty is now known as armenzg_lunch
  2005. # [17:09] * Joins: keret (Mibbit@9B9315E1.A6025CA.1C37C358.IP)
  2006. # [17:09] * jimm is now known as jimm-lunch
  2007. # [17:09] * keret is now known as Nikhar
  2008. # [17:09] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  2009. # [17:09] * Joins: gandalf (zbraniecki@2557E599.66715431.D25A875A.IP)
  2010. # [17:09] <luke> vlad, ehsan: that's not the one to comment out, rather TriggerOperationCallbackFromAsmJSCode
  2011. # [17:10] * Joins: kdcw (kdcw@moz-F7413045.pk.shawcable.net)
  2012. # [17:10] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  2013. # [17:11] * Joins: jhorak (jhorak@moz-107AD163.redhat.com)
  2014. # [17:11] <@ehsan> luke: can you please document that in the header/cpp file?
  2015. # [17:12] <evilpie> BenWa: ping
  2016. # [17:12] <vlad> luke: so OSX
  2017. # [17:12] * Quits: gsvelto (gsvelto@moz-762AF743.clienti.tiscali.it) (Quit: Leaving)
  2018. # [17:12] * Joins: jedp (jedp@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2019. # [17:13] * Joins: cabanier (cabanier@89803C3C.27D0C967.A0B21F13.IP)
  2020. # [17:13] * Joins: tzimmermann (tzimmerman@moz-A2F054F5.hfc.comcastbusiness.net)
  2021. # [17:13] * JosiahOne is now known as JosiahOne_Lunch
  2022. # [17:13] * Joins: gsvelto (gsvelto@moz-762AF743.clienti.tiscali.it)
  2023. # [17:14] * Joins: arky (arky@2557E599.66715431.D25A875A.IP)
  2024. # [17:15] * Quits: ErvisTusha (ErvisTusha@C99DF599.F69FB6EA.363D84A4.IP) (Client exited)
  2025. # [17:15] * Quits: pranavrc (pranavrc@F71341EC.E9DD3E4.520CDC98.IP) (Ping timeout)
  2026. # [17:16] * Joins: pranavrc (pranavrc@CC333A9.ECFABD4C.520CDC98.IP)
  2027. # [17:16] * Quits: bmoss (bmoss@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2028. # [17:16] * Joins: ErvisTusha (ErvisTusha@C99DF599.F69FB6EA.363D84A4.IP)
  2029. # [17:17] * Quits: jhorak (jhorak@moz-107AD163.redhat.com) (Quit: Leaving)
  2030. # [17:17] <@ehsan> luke: where is TriggerOperationCallbackFromAsmJSCode?
  2031. # [17:17] * Joins: mwobensmith (Adium@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2032. # [17:17] <@ehsan> I cannot find it
  2033. # [17:17] * Joins: bholley (anonymous@moz-FCAF9AAB.hsd1.ca.comcast.net)
  2034. # [17:17] * Quits: gsvelto (gsvelto@moz-762AF743.clienti.tiscali.it) (Ping timeout)
  2035. # [17:17] * Joins: nical (nico@moz-F8747CC6.dsl.ovh.fr)
  2036. # [17:17] * Joins: digitsm (digitsm@EE6D2481.AEA810F0.6FBA63F7.IP)
  2037. # [17:17] * Joins: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net)
  2038. # [17:18] <@ehsan> luke: ah, found it (TriggerOperationCallbackForAsmJSCode)
  2039. # [17:19] <BenWa> evilpie: ping
  2040. # [17:19] * Quits: stransky (stransky@moz-107AD163.redhat.com) (Quit: Connection reset by beer)
  2041. # [17:20] <BenWa> bjacob: benwa and anti-benwa. We annihilate when we collide.
  2042. # [17:20] * vladan1 is now known as vladan
  2043. # [17:20] <BenWa> re: opposite spin comments
  2044. # [17:21] <evilpie> BenWa: when I have the profiler running and than click on an downloaded file to open this happens: http://www.pastebin.mozilla.org/2225890
  2045. # [17:21] <evilpie> a hang
  2046. # [17:22] * Joins: gsvelto (gsvelto@moz-9D3D654F.clienti.tiscali.it)
  2047. # [17:22] * Quits: JeroenDeDauw (j@moz-121E1E3B.dip.t-dialin.net) (Quit: Leaving.)
  2048. # [17:22] <BenWa> evilpie: That's bug 757186. You should had your info there
  2049. # [17:24] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/62512f057d58 - Jim Chen - Bug 845416 - Detect mangled package name in ANR reporter; r=blassey
  2050. # [17:24] * coop|afk is now known as coop
  2051. # [17:25] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/16f7a494895b - Jim Chen - Bug 845416 - Limit ANR stack to Fennec stack; r=blassey
  2052. # [17:25] <@ehsan> luke: that did not help :(
  2053. # [17:25] * Quits: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net) (Ping timeout)
  2054. # [17:25] <@ehsan> luke: I just need to build in js/src, right?
  2055. # [17:25] * mdas is now known as mdas|lunch
  2056. # [17:26] <luke> ehsan: and toolkit/library
  2057. # [17:26] * Quits: aklotz (Thunderbir@moz-7C4433C1.inria.fr) (Quit: aklotz)
  2058. # [17:26] <luke> ehsan: oh, unless this is just windows
  2059. # [17:26] <luke> ehsan: if you are still getting faults with the operation-callback commented out, that means the JS code is doing out-of-bounds heap access...
  2060. # [17:26] <@ehsan> it's mac
  2061. # [17:27] <@ehsan> luke: is there any way to get odinmonkey to just never segfault, no matter what?
  2062. # [17:27] <@bz> We have the performance and safety of C now?
  2063. # [17:28] <@ehsan> bz: and the debug experience of android, 3 years ago!
  2064. # [17:28] <@bz> heh
  2065. # [17:28] <evilpie> BenWa: added my stacktrace
  2066. # [17:29] <BenWa> evilpie: We're trying to reproduce the problem now
  2067. # [17:29] * danielapetrovici__ is now known as Daniela|away
  2068. # [17:29] <evilpie> BenWa: ping me when i can help
  2069. # [17:29] * Joins: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net)
  2070. # [17:30] <BenWa> evilpie: You downloaded a file, did it hang on openning the file?
  2071. # [17:30] <evilpie> Yeah, when clicking on it
  2072. # [17:30] <evilpie> which should open an external viewer
  2073. # [17:31] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/196693568165 - Sam Foster - Bug 851443 - Tests for richgrid/richgriditem bindings + stubMethod test helper. r=jimm
  2074. # [17:31] <BenWa> ok trying to reproduce
  2075. # [17:32] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f7208a072eb7 - Alessandro Decina - Bug 851906 - Restore compatibility with older GStreamer versions. r=doublec
  2076. # [17:33] <luke> ehsan: sure, use x86, it does dynamic bounds checks (and turn off TriggerOperationCallback)
  2077. # [17:33] <@ehsan> luke: hmm, let me see if building toolkit/library helps
  2078. # [17:34] <@ehsan> luke: this testcase can't be run in x86 unfortunately :(
  2079. # [17:34] * Joins: tchevalier (Thunderbir@moz-A71C3DD0.w109-210.abo.wanadoo.fr)
  2080. # [17:35] <gps> RattyAway: what's up?
  2081. # [17:35] * Joins: jgriffin (jgriffin@moz-DD9CBA45.hsd1.wa.comcast.net)
  2082. # [17:35] * Quits: TheOne (TheOne@moz-D58488C3.dfki.uni-kl.de) (Ping timeout)
  2083. # [17:36] * Joins: aklotz (Thunderbir@moz-7C4433C1.inria.fr)
  2084. # [17:37] * Joins: jorendorff (jorendorff@43CB6079.66715431.D25A875A.IP)
  2085. # [17:37] <till> Good Guy Waldo
  2086. # [17:37] <mbrubeck> edmorley++ for bug 850670
  2087. # [17:38] <edmorley> mbrubeck: thank you :-)
  2088. # [17:38] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  2089. # [17:38] <Waldo> till: hm?
  2090. # [17:39] <RattyAway> gps: I seem to be stuck in an infinite loop :P
  2091. # [17:39] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/22d16e3d3ea1 - Kartikaya Gupta - Bug 852163 - Unregister pref observer on activity destroy so that it doesn't leak the activity. r=Cwiiis
  2092. # [17:39] <RattyAway> make.py[6]: Leaving directory 'c:\t1\hg\objdir-sm\mozilla\dom\bindings\test\..'
  2093. # [17:39] <RattyAway> make.py[6]: Leaving directory 'c:\t1\hg\objdir-sm\mozilla\dom\bindings\test\..'
  2094. # [17:39] <RattyAway> make.py[6]: Entering directory 'c:\t1\hg\objdir-sm\mozilla\dom\bindings\test\..'
  2095. # [17:39] <RattyAway> make.py[6]: Entering directory 'c:\t1\hg\objdir-sm\mozilla\dom\bindings\test\..'
  2096. # [17:39] <edmorley> mbrubeck: the more annoying part was 850681, but that's ready to land now :-)
  2097. # [17:39] <RattyAway> make.py[6]: Entering directory 'c:\t1\hg\objdir-sm\mozilla\dom\bindings\test\..'
  2098. # [17:39] * Joins: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP)
  2099. # [17:39] <till> Waldo: offering to fix formatting nits in the Intl patches
  2100. # [17:39] <gsvelto> What are the current best practices for declaring 64-bit constants? AFAIK we shouldn't use PR_INT64()/PR_UINT64() anymore
  2101. # [17:39] * Quits: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net) (Input/output error)
  2102. # [17:39] <gps> RattyAway: I think khuey was mumbling about that in #build. I think it's related to a mkdepend.pl patch and said patch is going to be backed out
  2103. # [17:40] <@bz> gsvelto: just use ll or ull directly?
  2104. # [17:40] <RattyAway> gps: oh goodo it's not just me then?
  2105. # [17:40] * Joins: mak (mak@moz-B273C121.inria.fr)
  2106. # [17:40] <RattyAway> gps: any bug #?
  2107. # [17:40] <Waldo> till: oh; that's perhaps not so much Good Guy as figuring that for someone only doing this temporarily, after style-nitting long enough maybe that's just less hassle for everyone
  2108. # [17:40] <gsvelto> bz: Does that work on Windows too? I've come across Win-specific code that uses LL and i64 depending if __GNUC__ is declared or not
  2109. # [17:40] * @bz notes that searching for those is .... hard
  2110. # [17:40] * Joins: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net)
  2111. # [17:40] * Joins: marco (Thunderbir@moz-A4B1DF20.cust.dsl.teletu.it)
  2112. # [17:40] <Waldo> Scumbag Waldo disses Good Guy Waldo
  2113. # [17:41] * rail is now known as rail-lunch
  2114. # [17:41] <@bz> gsvelto: I would expect it to work as long as you assign to a int64_t as needed
  2115. # [17:41] <@bz> gsvelto: let me see if I can find some examples
  2116. # [17:41] <till> Waldo: I think your explanation kinda proves my point ...
  2117. # [17:41] <Waldo> gsvelto: I have patches which would add UINT64_C, but a prerequisite to them breaks on Windows PGO, and I have had no time to debug :-(
  2118. # [17:41] <@bz> line 294 -- static const uint64_t DoubleNegMask = 0x8000000000000000ULL;
  2119. # [17:41] <@bz> That's in our js engine
  2120. # [17:41] <@bz> in code that's cross-platform
  2121. # [17:41] <Waldo> and all the other macros from stdint.h
  2122. # [17:42] <gsvelto> bz: OK, I'll just go with *LL then, I'm assigning to 64-bit ints anyway. That'll clean up some old cruft too.
  2123. # [17:42] * till might just have met too many people who would not've done that based on principle
  2124. # [17:42] <@bz> line 1594 -- const int64_t kVeryLargeNegativeNumber = 0xffff000000000000ll;
  2125. # [17:42] <@bz> That's in nsRegion
  2126. # [17:42] <@bz> again, pretty cross-platform.
  2127. # [17:43] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Client exited)
  2128. # [17:43] <gsvelto> bz: Alright, I wanted to do that but was unsure due to the old bits still present in some sources
  2129. # [17:43] <@bz> old bits are just low priority to modernize, yeah
  2130. # [17:43] <gsvelto> Waldo: Can you point me to the bug?
  2131. # [17:44] <gsvelto> bz: Yeah, I'm cleaning up nsAppStartup.cpp as part of bug 793735 and I'm doing some code laundry in the process
  2132. # [17:44] * ahal|lunch is now known as ahal
  2133. # [17:45] <hub> how can I select "mac os 10.6" in try build? it only seem to have 10.7
  2134. # [17:45] <Waldo> gsvelto: bug 730805 has the patches; bug 812218 is the prerequisite that founders on Windows PGO
  2135. # [17:45] <gsvelto> Waldo: thanks
  2136. # [17:45] * jimm-lunch is now known as jimm
  2137. # [17:46] * Quits: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net) (Connection reset by peer)
  2138. # [17:46] * Joins: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net)
  2139. # [17:47] * Joins: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com)
  2140. # [17:48] <mbrubeck> hub: We build on 10.7 and then run tests on all versions
  2141. # [17:48] * Joins: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  2142. # [17:48] * Joins: jib (Jan-Ivar@moz-875D780C.hsd1.pa.comcast.net)
  2143. # [17:48] <mbrubeck> hub: So it's actually all-or-nothing; if you choose the 10.7 option then you will get tests on all our Mac versions.
  2144. # [17:48] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  2145. # [17:49] <@bz> gsvelto: Much appreciated. nsAppStartup is likely to need some laundering, for sure. ;)
  2146. # [17:49] * catlee-lunch is now known as catlee
  2147. # [17:49] * Quits: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net) (Connection reset by peer)
  2148. # [17:49] * Quits: ddahl_ (ddahl@C261DB39.6E5482D7.8DDCAE07.IP) (Connection reset by peer)
  2149. # [17:49] * Joins: ddahl__ (ddahl@C261DB39.6E5482D7.8DDCAE07.IP)
  2150. # [17:49] * Joins: Mook_as (mook@moz-1FCC0032.activestate.com)
  2151. # [17:49] * Joins: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net)
  2152. # [17:50] * gregglind_away is now known as gregglind
  2153. # [17:51] * Quits: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr_)
  2154. # [17:51] * Joins: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net)
  2155. # [17:51] * Quits: mak (mak@moz-B273C121.inria.fr) (Input/output error)
  2156. # [17:51] * Quits: ggp (ggp@moz-CF8BEBEF.dia.static.qwest.net) (Ping timeout)
  2157. # [17:51] * rail-lunch is now known as rail-lunch-for-reals
  2158. # [17:51] * Joins: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2159. # [17:51] <gsvelto> bz: I'm doing what an old colleague of mine called a "machete attack": I'm chopping out lots of code and moving all the timestamping related stuff under xpcom/ds/TimeStamp* where it should belong
  2160. # [17:51] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  2161. # [17:52] <gsvelto> bz: That should help fix a few oranges we came across recently
  2162. # [17:52] * Joins: erikvold (erikvold@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2163. # [17:52] * Joins: sworkman (sworkman@2557E599.66715431.D25A875A.IP)
  2164. # [17:53] * joduinn-home is now known as joduinn-mtg
  2165. # [17:53] * mdas|lunch is now known as mdas
  2166. # [17:53] * Joins: juanb (jbecerra@2557E599.66715431.D25A875A.IP)
  2167. # [17:54] * Quits: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: sicking)
  2168. # [17:54] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  2169. # [17:54] * kmoir-afk is now known as kmoir
  2170. # [17:55] * Joins: gwagner (Gregor@moz-A2F054F5.hfc.comcastbusiness.net)
  2171. # [17:55] * Joins: jimb (user@9E727688.17C2F9C.163DC5C6.IP)
  2172. # [17:56] * coop is now known as coop|mtg
  2173. # [17:58] * Joins: bent (chatzilla@moz-C4A3BD78.hsd1.ca.comcast.net)
  2174. # [17:58] * Joins: rstrong (rstrong@moz-217F02CE.lightspeed.sntcca.sbcglobal.net)
  2175. # [17:58] * Quits: Asa (asa@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2176. # [17:58] * Joins: bajaj1 (Adium@2557E599.66715431.D25A875A.IP)
  2177. # [17:58] * Quits: bajaj (Adium@2557E599.66715431.D25A875A.IP) (Connection reset by peer)
  2178. # [17:59] * Joins: Asa (asa@2557E599.66715431.D25A875A.IP)
  2179. # [17:59] * Joins: pnkfelix (pnkfelix@moz-A9854E00.hsd1.ma.comcast.net)
  2180. # [17:59] * armenzg_lunch is now known as armenzg_brb
  2181. # [18:00] * Joins: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net)
  2182. # [18:00] * Quits: glazou (glazou@moz-204094DD.disruptive-innovations.fr) (Quit: bbl)
  2183. # [18:01] * Joins: vladan1 (vladan@moz-7C4433C1.inria.fr)
  2184. # [18:01] * Joins: wolfiR_ (wolfiR@moz-F4A4C27.dip0.t-ipconnect.de)
  2185. # [18:01] * Quits: sheeri (sheeri@3464EC4F.72B357BE.A35657C3.IP) (Quit: sheeri)
  2186. # [18:01] * Quits: vladan (vladan@moz-B273C121.inria.fr) (Ping timeout)
  2187. # [18:04] * Joins: terrence (terrence@2557E599.66715431.D25A875A.IP)
  2188. # [18:05] * Joins: Boriss_ (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net)
  2189. # [18:05] * Quits: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net) (Ping timeout)
  2190. # [18:05] * Boriss_ is now known as Boriss
  2191. # [18:05] * Joins: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2192. # [18:05] * Joins: msucan (mihai@A5A0595A.66715431.D25A875A.IP)
  2193. # [18:05] * Quits: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net) (Ping timeout)
  2194. # [18:05] * Quits: logbot (logbot@moz-58CB32ED.glob.com.au) (Ping timeout)
  2195. # [18:07] * Quits: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP) (Quit: This computer has gone to sleep)
  2196. # [18:07] * Joins: dherman (dherman@moz-6CA476B1.hsd1.ca.comcast.net)
  2197. # [18:08] * Quits: ekr (ekr@moz-D7997EC8.rtfm.com) (Ping timeout)
  2198. # [18:09] * Quits: marcoz (marco.zehe@moz-B9E01AB9.dip.t-dialin.net) (Quit: Leaving.)
  2199. # [18:10] * Quits: pranavrc (pranavrc@CC333A9.ECFABD4C.520CDC98.IP) (Quit: Ping timeout: ∞)
  2200. # [18:11] * Joins: mak (mak@moz-7C4433C1.inria.fr)
  2201. # [18:11] * Joins: logbot (logbot@moz-58CB32ED.glob.com.au)
  2202. # [18:11] * Joins: bsmedberg (bsmedberg@moz-B5499ED5.rev.sfr.net)
  2203. # [18:11] * ChanServ sets mode: +o bsmedberg
  2204. # [18:12] * Quits: @bsmedberg (bsmedberg@moz-B5499ED5.rev.sfr.net) (Quit: bsmedberg)
  2205. # [18:12] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  2206. # [18:12] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  2207. # [18:12] * Joins: stransky (stransky@moz-3C58453D.net.upcbroadband.cz)
  2208. # [18:12] * Quits: lmandel (lmandel@moz-7C4433C1.inria.fr) (Quit: lmandel)
  2209. # [18:13] * Joins: smooney_ (smooney@2557E599.66715431.D25A875A.IP)
  2210. # [18:13] * Joins: dveditz (dveditz@2557E599.66715431.D25A875A.IP)
  2211. # [18:13] * Quits: dveditz (dveditz@2557E599.66715431.D25A875A.IP) (Max SendQ exceeded)
  2212. # [18:14] * Joins: dveditz (dveditz@2557E599.66715431.D25A875A.IP)
  2213. # [18:14] * Quits: dveditz (dveditz@2557E599.66715431.D25A875A.IP) (Max SendQ exceeded)
  2214. # [18:14] * Joins: dveditz (dveditz@2557E599.66715431.D25A875A.IP)
  2215. # [18:14] * Quits: dveditz (dveditz@2557E599.66715431.D25A875A.IP) (Max SendQ exceeded)
  2216. # [18:14] * Joins: dveditz (dveditz@2557E599.66715431.D25A875A.IP)
  2217. # [18:14] * Quits: dveditz (dveditz@2557E599.66715431.D25A875A.IP) (Max SendQ exceeded)
  2218. # [18:14] * Joins: dveditz (dveditz@2557E599.66715431.D25A875A.IP)
  2219. # [18:14] * Quits: dveditz (dveditz@2557E599.66715431.D25A875A.IP) (Max SendQ exceeded)
  2220. # [18:14] * Joins: dveditz (dveditz@2557E599.66715431.D25A875A.IP)
  2221. # [18:14] * Quits: dveditz (dveditz@2557E599.66715431.D25A875A.IP) (Max SendQ exceeded)
  2222. # [18:14] * Joins: dveditz (dveditz@2557E599.66715431.D25A875A.IP)
  2223. # [18:14] * Quits: dveditz (dveditz@2557E599.66715431.D25A875A.IP) (Max SendQ exceeded)
  2224. # [18:14] * Joins: dveditz (dveditz@2557E599.66715431.D25A875A.IP)
  2225. # [18:14] * Quits: dveditz (dveditz@2557E599.66715431.D25A875A.IP) (Max SendQ exceeded)
  2226. # [18:14] * Quits: Boriss (FlyingToas@moz-3C817AF9.hsd1.ca.comcast.net) (Ping timeout)
  2227. # [18:14] * Joins: dveditz (dveditz@2557E599.66715431.D25A875A.IP)
  2228. # [18:14] * Quits: dveditz (dveditz@2557E599.66715431.D25A875A.IP) (Max SendQ exceeded)
  2229. # [18:15] * Joins: dveditz (dveditz@2557E599.66715431.D25A875A.IP)
  2230. # [18:15] * Quits: dveditz (dveditz@2557E599.66715431.D25A875A.IP) (Max SendQ exceeded)
  2231. # [18:15] * jcranmer is now known as jcranmer|away
  2232. # [18:16] * Joins: dveditz (dveditz@2557E599.66715431.D25A875A.IP)
  2233. # [18:16] * ChanServ sets mode: +o dveditz
  2234. # [18:16] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2490b7e423d6 - Andrew McCreight - Bug 827486, part 7 - add basic code gen test. r=bz
  2235. # [18:16] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/9abdb274d5c8 - Andrew McCreight - Bug 827486, part 5: add the main JS impl code gen. r=bz
  2236. # [18:16] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/07c51bdbd801 - Andrew McCreight - Bug 827486, part 6 - generate headers and code for JS implemented WebIDL classes. r=bz
  2237. # [18:16] * Joins: ggp (ggp@2557E599.66715431.D25A875A.IP)
  2238. # [18:16] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/32851c16ed45 - Andrew McCreight - Bug 827486, part 2 - Refactor example class codegen into common base class. r=bz
  2239. # [18:16] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/8d31fbd56129 - Andrew McCreight - Bug 827486, part 3 - add dependencies for CGBindingImplClass. r=bz
  2240. # [18:16] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b8e85d11e93d - Andrew McCreight - Bug 827486, part 4: copy parts of example generator to JS impl generator. r=bz
  2241. # [18:17] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/e4a689014130 - Andrew McCreight - Bug 827486, part 1: add JSImplementation extended attribute. r=bz
  2242. # [18:18] * Quits: bholley (anonymous@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  2243. # [18:18] * Quits: wolfiR_ (wolfiR@moz-F4A4C27.dip0.t-ipconnect.de) (Ping timeout)
  2244. # [18:18] * Quits: jacek (jacek@moz-5D707D3B.psi.wroc.pl) (Quit: Konversation terminated!)
  2245. # [18:19] * Joins: rniwa (rniwa@5FEFE500.BA327C77.775DF071.IP)
  2246. # [18:19] * Quits: sewardj (sewardj@moz-7C4433C1.inria.fr) (Ping timeout)
  2247. # [18:19] * JosiahOne_Lunch is now known as JosiahOne
  2248. # [18:20] <mounir> froydnj: ping
  2249. # [18:20] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a365ad559c45 - Nathan Froyd - Bug 824647 - delete histograms when StatisticsRecorder is deleted; r=jlebar
  2250. # [18:21] <froydnj> mounir: pong
  2251. # [18:21] * Joins: azakai (alon@2557E599.66715431.D25A875A.IP)
  2252. # [18:21] <philor> edmorley: you probably won't be around long enough to see it, but I triggered PGO on 2490b7e423d6 expecting Win to die
  2253. # [18:21] <edmorley> ah, thx
  2254. # [18:22] <edmorley> sheppy: how do I watch a page on MDN? I can;t find the option now
  2255. # [18:22] * Joins: jduell_ (jduell@moz-E765EB2E.hsd1.wa.comcast.net)
  2256. # [18:22] <mounir> froydnj: regarding bug 771331, I am not sure I understand why you are only firing events when there is an element being added
  2257. # [18:22] <mounir> froydnj: and why does the event need to be async?
  2258. # [18:22] <sheppy> edmorley: There is not currently a way to do it. It's high on our priority list to implement.
  2259. # [18:22] <Waldo> edmorley: functionality doesn't exist now; we've told them it's important, so it's probably a priority for kuma people to implement
  2260. # [18:22] <edmorley> oh
  2261. # [18:22] <edmorley> thank you
  2262. # [18:22] <edmorley> :-)
  2263. # [18:22] <mounir> froydnj: wouldn't that work to fire a simple event when something changes (added or removed)
  2264. # [18:23] * Joins: pcwalton (pcwalton@43CB6079.66715431.D25A875A.IP)
  2265. # [18:23] <sheppy> Waldo: Yeah - we didn't really use it on the writing team, so it simply never occurred to us that it was a big deal for anyone else. In retrospect, it totally makes sense, but hindsight etc etc.
  2266. # [18:23] <froydnj> mounir: AFAIK, the pw manager doesn't need to know about removed, so I didn't see why it would be needed
  2267. # [18:23] * Waldo remembers using it in the past, but it's been quite awhile for him personally
  2268. # [18:24] <froydnj> mounir: and if the pw manager doesn't need to know when things are removed, it seems better to make them separate events
  2269. # [18:24] * Quits: kanru` (kanru@moz-DB9AE380.dynamic.hinet.net) (Ping timeout)
  2270. # [18:24] * Joins: lmandel (lmandel@moz-B5499ED5.rev.sfr.net)
  2271. # [18:25] <mounir> froydnj: so, the password manager will consider a particular element to be the password of a form even if the element is no longer in the form?
  2272. # [18:25] <froydnj> mounir: the async-ness (partially) addresses dolske's concerns about only getting one event per form
  2273. # [18:26] <froydnj> mounir: I do not know the answer to that question
  2274. # [18:26] * Quits: ddahl__ (ddahl@C261DB39.6E5482D7.8DDCAE07.IP) (Quit: Adios Amigos)
  2275. # [18:27] <mounir> froydnj: FWIW, I'm pretty sure that dolske's concerns are premature optimization, it seems unlikely that the password manager will be flooded with events
  2276. # [18:27] <@dolske> ...yeah, we don't care about removals. We only fill forms, never unfill forms. :)
  2277. # [18:27] * Yoric wonders how password-related events would impact Session Restore.
  2278. # [18:27] * Quits: Cwiiis (cwiiis@moz-7C4433C1.inria.fr) (Quit: Leaving)
  2279. # [18:28] <mounir> dolske: that's only for auto-filling, not for password saving?
  2280. # [18:28] <@dolske> mounir: we currently basically do 1 SQL query (synchronous, main-thread) per page load. That will become per-event with this.
  2281. # [18:28] * Joins: yzen (Adium@AA2C085E.10C8AEF8.9A8C35B4.IP)
  2282. # [18:28] <@dolske> password saving is done from a form-submit event.
  2283. # [18:28] * Quits: cdiehl (cdiehl@moz-2234D6A5.pool.mediaways.net) (Connection reset by peer)
  2284. # [18:28] <froydnj> I think trying to do one event per form per event loop seems easy enough, even if it is a little premature optimization
  2285. # [18:28] * Quits: dherman (dherman@moz-6CA476B1.hsd1.ca.comcast.net) (Quit: dherman)
  2286. # [18:29] * Joins: cdiehl (cdiehl@moz-84EEF128.pool.mediaways.net)
  2287. # [18:29] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  2288. # [18:30] * Quits: vladan1 (vladan@moz-7C4433C1.inria.fr) (Quit: Leaving.)
  2289. # [18:30] * Joins: vladan (vladan@moz-7C4433C1.inria.fr)
  2290. # [18:30] <mounir> dolske: I'm not sure I understand, are you guys going to keep doing sync main thread IO?
  2291. # [18:30] * Joins: ekr (ekr@moz-D7997EC8.rtfm.com)
  2292. # [18:30] <@dolske> we'd sure like to get rid of it!
  2293. # [18:31] <@dolske> I note that in addition to the reasons I've already said a couple times in the bug.
  2294. # [18:31] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/7268c16cad16 - James Willcox - Bug 829747 - Update WebGL canvases asynchronously r=jgilbert,bgirard
  2295. # [18:32] <mounir> dolske, froydnj: I cancelled the review request, I do not agree with your approach but smaug's review is enough to land your patch
  2296. # [18:32] * Quits: vladan (vladan@moz-7C4433C1.inria.fr) (Ping timeout)
  2297. # [18:33] * Quits: pnemsak (Miranda@moz-BE85878E.citicom.sk) (Quit: pnemsak)
  2298. # [18:33] * Quits: marco (Thunderbir@moz-A4B1DF20.cust.dsl.teletu.it) (Quit: marco)
  2299. # [18:33] * Quits: aklotz (Thunderbir@moz-7C4433C1.inria.fr) (Quit: aklotz)
  2300. # [18:33] * jwir3 is now known as jwir3|lunch
  2301. # [18:33] <@smaug> mounir: well, what should be done then?
  2302. # [18:37] * dholbert|afk is now known as dholbert
  2303. # [18:37] * Quits: shorlander (shorlander@moz-230AEA61.dhcp.insightbb.com) (Input/output error)
  2304. # [18:37] * Quits: @smaug (chatzilla@moz-7C4433C1.inria.fr) (Ping timeout)
  2305. # [18:37] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/dc796f4da835 - Brad Lassey - bug 851224 - make install should ignore version downgrades r=mfinkle
  2306. # [18:37] * Quits: jet (junglecode@moz-7C4433C1.inria.fr) (Ping timeout)
  2307. # [18:37] * Quits: Bas (chatzilla@moz-7C4433C1.inria.fr) (Ping timeout)
  2308. # [18:37] * Quits: mak (mak@moz-7C4433C1.inria.fr) (Ping timeout)
  2309. # [18:37] * Joins: bnicholson (bnicholson@2557E599.66715431.D25A875A.IP)
  2310. # [18:38] * Quits: Matt (matthewger@F5505435.26EDE4E7.25874CBB.IP) (Quit: Matt)
  2311. # [18:39] * joduinn-mtg is now known as joduinn
  2312. # [18:39] * Quits: Nikhar (Mibbit@9B9315E1.A6025CA.1C37C358.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2313. # [18:41] * Quits: sworkman (sworkman@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2314. # [18:41] * Quits: pnkfelix (pnkfelix@moz-A9854E00.hsd1.ma.comcast.net) (Quit: Leaving.)
  2315. # [18:42] * Joins: sworkman (sworkman@2557E599.66715431.D25A875A.IP)
  2316. # [18:43] * Quits: dao (dao@moz-281B0ACA.superkabel.de) (Quit: Leaving.)
  2317. # [18:43] * Quits: myk (myk@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  2318. # [18:45] * armenzg_brb is now known as armenzg_buildduty
  2319. # [18:46] * Joins: bholley (anonymous@2557E599.66715431.D25A875A.IP)
  2320. # [18:46] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/e8909e54a20d - David Zbarsky - [Bug 851972] Remove XPIDL for ComponentTransferFunctionElement r=Ms2ger
  2321. # [18:46] * Quits: Mathnerd314 (quassel@moz-195E87F.rh.uchicago.edu) (Connection reset by peer)
  2322. # [18:47] * Joins: Mathnerd314 (quassel@moz-195E87F.rh.uchicago.edu)
  2323. # [18:47] * Joins: shorlander (shorlander@moz-230AEA61.dhcp.insightbb.com)
  2324. # [18:47] <@dolske> yay, we removed XPIDL! ...oh.
  2325. # [18:48] <@khuey> nice try
  2326. # [18:48] * Joins: TheOne (one@moz-9F722E86.dip.t-dialin.net)
  2327. # [18:48] * Quits: @dbaron (dbaron@moz-E0DDE997.dsl.dynamic.sonic.net) (Ping timeout)
  2328. # [18:49] * Quits: gsvelto (gsvelto@moz-9D3D654F.clienti.tiscali.it) (Quit: Leaving)
  2329. # [18:50] <tbsaunde> jhammel: ted bug 852207
  2330. # [18:50] * Quits: sworkman (sworkman@2557E599.66715431.D25A875A.IP) (Quit: sworkman)
  2331. # [18:50] <@ted> cool
  2332. # [18:50] <jhammel> tbsaunde: thanks, will respond soonish
  2333. # [18:50] * Joins: myk (myk@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2334. # [18:50] <jhammel> tbsaunde: there are a few other bugs on the subject, which are related(ish)
  2335. # [18:51] <tbsaunde> jhammel: sure
  2336. # [18:52] * Joins: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  2337. # [18:52] * Joins: dherman (dherman@moz-6CA476B1.hsd1.ca.comcast.net)
  2338. # [18:52] * Joins: sworkman (sworkman@2557E599.66715431.D25A875A.IP)
  2339. # [18:52] * Quits: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr_)
  2340. # [18:53] * Joins: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  2341. # [18:54] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Input/output error)
  2342. # [18:55] * Quits: gandalf (zbraniecki@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2343. # [18:55] * geekboy is now known as geekboy|afk
  2344. # [18:55] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/8696e0523772 - Daniel Holbert - Bug 851981: Make loop iterator in mozalloc_handle_oom a size_t instead of an int, to fix build warning for signed/unsigned comparison. r=bsmedberg
  2345. # [18:56] * Joins: gandalf (zbraniecki@2557E599.66715431.D25A875A.IP)
  2346. # [18:57] * Quits: stransky (stransky@moz-3C58453D.net.upcbroadband.cz) (Quit: Connection reset by beer)
  2347. # [18:58] * Joins: tantek (tantek@moz-45485333.dsl.dynamic.sonic.net)
  2348. # [18:58] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  2349. # [18:58] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Input/output error)
  2350. # [18:58] * Quits: jib (Jan-Ivar@moz-875D780C.hsd1.pa.comcast.net) (Quit: jib)
  2351. # [18:58] * Joins: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP)
  2352. # [18:58] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/bdfac277d15f - Jonathan Griffin - Bug 845785 - re-exclude test_Range-mutations.html for frequent crashes, a=test-only
  2353. # [18:58] * Quits: till (till@moz-3493B177.superkabel.de) (Client exited)
  2354. # [18:59] * Joins: WeirdAl (chatzilla@moz-D461843.ask.info)
  2355. # [19:00] * Quits: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP) (Quit: This computer has gone to sleep)
  2356. # [19:00] * Joins: jib (Jan-Ivar@moz-875D780C.hsd1.pa.comcast.net)
  2357. # [19:00] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f1fd4792d0bc - Bobby Holley - Bug 848538 - Push a cx before calling into ctypes callbacks. r=jorendorff
  2358. # [19:00] * Quits: lmandel (lmandel@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  2359. # [19:01] * Joins: past (Instantbir@moz-F5BBC6AC.dsl.dyn.forthnet.gr)
  2360. # [19:01] <davidb> Yoric: maybe we should add yzen as friend of the tree
  2361. # [19:02] <davidb> sorta last minute :)
  2362. # [19:02] * Joins: aklotz (Thunderbir@moz-83399C40.rev.sfr.net)
  2363. # [19:02] * Parts: aklotz (Thunderbir@moz-83399C40.rev.sfr.net)
  2364. # [19:02] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  2365. # [19:02] * Joins: jet (junglecode@moz-83399C40.rev.sfr.net)
  2366. # [19:04] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Input/output error)
  2367. # [19:04] * Quits: akeybl (akeybl@2557E599.66715431.D25A875A.IP) (Connection reset by peer)
  2368. # [19:04] * Joins: fs (Elchi3@B9C9103E.56629902.2EC4CA51.IP)
  2369. # [19:05] * mdas is now known as mdas|afk
  2370. # [19:05] * Quits: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  2371. # [19:05] * Joins: cpearce (chatzilla@moz-FC66E8A9.xdsl.xnet.co.nz)
  2372. # [19:06] * Joins: espadrine (thaddee_ty@moz-B582BE1.dclient.lsne.ch)
  2373. # [19:07] * Joins: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  2374. # [19:08] * Quits: erikvold (erikvold@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: erikvold)
  2375. # [19:09] <rillian> why does the web console not support command-line editing? :(
  2376. # [19:09] * Joins: KWierso|V (chatzilla@moz-39E2648C.hsd1.ca.comcast.net)
  2377. # [19:10] * Quits: jet (junglecode@moz-83399C40.rev.sfr.net) (Quit: jet)
  2378. # [19:13] * Joins: tanvi (tanvi@moz-9440AA69.hsd1.ca.comcast.net)
  2379. # [19:13] * Quits: RattyAway (Jim_diGriz@F5BDA4E7.740B6001.FB243CD8.IP) (Ping timeout)
  2380. # [19:14] * Joins: dzbarsky (Adium@B306E5E1.8B6734FF.959FD87C.IP)
  2381. # [19:16] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  2382. # [19:16] * Joins: Boriss (FlyingToas@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2383. # [19:17] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/7e13a94a3f3b - Luke Wagner - Fix OdinMonkey when --disable-ion (no bug, r=me)
  2384. # [19:18] * Joins: seth (seth@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2385. # [19:19] * Parts: nical (nico@moz-F8747CC6.dsl.ovh.fr)
  2386. # [19:20] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  2387. # [19:21] * Joins: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  2388. # [19:21] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  2389. # [19:21] * Quits: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net) (Ping timeout)
  2390. # [19:21] * Joins: dbaron (dbaron@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2391. # [19:21] * ChanServ sets mode: +o dbaron
  2392. # [19:22] * Quits: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Quit: masayuki)
  2393. # [19:22] * Joins: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  2394. # [19:22] * Joins: Ameya (chatzilla@BC4366CF.98A4DA8C.4A5F0685.IP)
  2395. # [19:25] * Quits: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: sicking)
  2396. # [19:25] * Joins: erikvold (erikvold@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2397. # [19:25] * Quits: jedp (jedp@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: Computer has gone to sleep.)
  2398. # [19:26] * hwine is now known as hwine|afk
  2399. # [19:27] * juanb is now known as juanb|afk
  2400. # [19:28] * Joins: Ann_Yiming (Ann_Yiming@moz-161994B5.dia.static.qwest.net)
  2401. # [19:28] * mdas|afk is now known as mdas
  2402. # [19:28] * rail-lunch-for-reals is now known as rail
  2403. # [19:28] * jhammel is now known as jhammel|lunch
  2404. # [19:29] * hwine|afk is now known as hwine
  2405. # [19:29] * glob is now known as glob|away
  2406. # [19:30] * Joins: mgahlot (mgahlot@316A221D.B7BBAA21.85BF2EFC.IP)
  2407. # [19:31] * Joins: bajaj (Adium@2557E599.66715431.D25A875A.IP)
  2408. # [19:31] <evilpie> tbsaunde: grghuwnk
  2409. # [19:31] * Quits: bajaj1 (Adium@2557E599.66715431.D25A875A.IP) (Connection reset by peer)
  2410. # [19:31] <evilpie> Sorry
  2411. # [19:32] <tbsaunde> np
  2412. # [19:32] <evilpie> My sister ^^
  2413. # [19:33] <tbsaunde> heh
  2414. # [19:34] * Joins: mwobensmith1 (Adium@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2415. # [19:34] * Quits: mwobensmith (Adium@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2416. # [19:34] * Quits: pcwalton (pcwalton@43CB6079.66715431.D25A875A.IP) (Ping timeout)
  2417. # [19:35] * Quits: vicamo (vicamo@moz-F5DDFCCC.dynamic.hinet.net) (Quit: Konversation terminated!)
  2418. # [19:35] * Joins: nsm (nikhil@2557E599.66715431.D25A875A.IP)
  2419. # [19:37] * Quits: mixedpuppy (mixedpuppy@moz-7B3CFB22.vc.shawcable.net) (Quit: mixedpuppy)
  2420. # [19:38] * Joins: JaneBush (gegeg@moz-5EA6AD8D.adsl.alicedsl.de)
  2421. # [19:38] * Quits: jimb (user@9E727688.17C2F9C.163DC5C6.IP) (Ping timeout)
  2422. # [19:40] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Client exited)
  2423. # [19:41] * Joins: till (till@moz-3493B177.superkabel.de)
  2424. # [19:41] * Quits: bajaj (Adium@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2425. # [19:42] * Joins: bajaj (Adium@2557E599.66715431.D25A875A.IP)
  2426. # [19:42] * Quits: seth (seth@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: seth)
  2427. # [19:45] * Quits: martyn (martyn@moz-57A66DEC.range81-154.btcentralplus.com) (Quit: Ex-Chat)
  2428. # [19:45] * Joins: JonathanS (JonathanS@74338381.87D4EDDB.521902B0.IP)
  2429. # [19:45] * Joins: pcwalton (pcwalton@2557E599.66715431.D25A875A.IP)
  2430. # [19:46] * Joins: jimb (user@9E727688.17C2F9C.163DC5C6.IP)
  2431. # [19:46] * Joins: squib (squib@moz-B01B5D55.dhcp.mdsn.wi.charter.com)
  2432. # [19:46] * Joins: knelson (Adium@2557E599.66715431.D25A875A.IP)
  2433. # [19:46] * Quits: clee (clee@2557E599.66715431.D25A875A.IP) (Quit: clee)
  2434. # [19:47] * mgerva is now known as mgerva-afk
  2435. # [19:47] * Quits: dzbarsky (Adium@B306E5E1.8B6734FF.959FD87C.IP) (Quit: Leaving.)
  2436. # [19:48] * Quits: till (till@moz-3493B177.superkabel.de) (Client exited)
  2437. # [19:48] * Quits: gkw (fuzz2lin@2557E599.66715431.D25A875A.IP) (Quit: leaving)
  2438. # [19:49] * Quits: smooney_ (smooney@2557E599.66715431.D25A875A.IP) (Quit: smooney_)
  2439. # [19:50] * Joins: ddahl (ddahl@C261DB39.6E5482D7.8DDCAE07.IP)
  2440. # [19:51] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  2441. # [19:51] * Joins: smooney_ (smooney@2557E599.66715431.D25A875A.IP)
  2442. # [19:53] * Joins: clee (clee@2557E599.66715431.D25A875A.IP)
  2443. # [19:53] * Parts: mbrubeck (mbrub_000@moz-45568FC0.hsd1.wa.comcast.net)
  2444. # [19:53] * Joins: mbrubeck (mbrub_000@moz-45568FC0.hsd1.wa.comcast.net)
  2445. # [19:53] * Joins: jedp (jedp@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2446. # [19:53] <mbrubeck> The Metro team is planning to erase khuey's childhood^H^H^H^H^H^H^H^H^H internship: https://bugzilla.mozilla.org/show_bug.cgi?id=795630#c4
  2447. # [19:53] * geekboy|afk is now known as geekboy
  2448. # [19:54] * Quits: ericjung (ericjung@moz-FC76CC78.bstnma.fios.verizon.net) (Input/output error)
  2449. # [19:54] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Client exited)
  2450. # [19:54] * Joins: bajaj1 (Adium@2557E599.66715431.D25A875A.IP)
  2451. # [19:54] * Quits: mwobensmith1 (Adium@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: Leaving.)
  2452. # [19:54] * Quits: bajaj (Adium@2557E599.66715431.D25A875A.IP) (Connection reset by peer)
  2453. # [19:54] * Parts: knelson (Adium@2557E599.66715431.D25A875A.IP)
  2454. # [19:54] * Quits: sworkman (sworkman@2557E599.66715431.D25A875A.IP) (Quit: sworkman)
  2455. # [19:54] <davidb> khuey is not an intern?
  2456. # [19:55] <@bz> he was once
  2457. # [19:55] <@bz> mbrubeck: if it makes you feel better, my internship got nuked sometime back... ;)
  2458. # [19:55] <davidb> ;)
  2459. # [19:55] <@khuey> what?
  2460. # [19:55] * Quits: b10n1k (j0ni@moz-F186F5CD.home.otenet.gr) (Connection reset by peer)
  2461. # [19:55] <davidb> khuey: your camera code
  2462. # [19:55] <@khuey> ah
  2463. # [19:56] <@khuey> we threw most of that away anyways
  2464. # [19:56] * Joins: sheeri (sheeri@moz-5E1F6454.hsd1.ma.comcast.net)
  2465. # [19:56] <mbrubeck> Yeah, looks like the only vestiges are now in /browser/metro by way of the late /mobile/xul
  2466. # [19:56] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b7f53f9b0205 - Ed Morley - Backed out changeset 7268c16cad16 (bug 829747) for causing B2G test timeouts; CLOSED TREE
  2467. # [19:56] <jduell_> ahal: ping
  2468. # [19:56] * Quits: clee (clee@2557E599.66715431.D25A875A.IP) (Quit: clee)
  2469. # [19:57] <@bz> hrm
  2470. # [19:57] <@bz> what killed bfcache on bugzilla?
  2471. # [19:57] * Quits: jedp (jedp@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: Computer has gone to sleep.)
  2472. # [19:58] <ahal> jduell_: pong
  2473. # [19:58] * Joins: bsmith (bsmith@C11351D5.AC8EC7EA.B4C748B5.IP)
  2474. # [19:58] <@bz> And is there a bug on this already?
  2475. # [19:59] * @bz is not seeing one...
  2476. # [19:59] <jduell_> ahal: hey, finally getting back to trying to run xpcshell on my phone. Switched to inbound--that got me past last problem.
  2477. # [19:59] <jduell_> ahal: but now I'm getting "Exception: head file does not exist: /data/local/tests/xpcshell/../../../../hg/18b2g/t/netwerk/test/unit/head_channels.js"
  2478. # [20:00] <jduell_> ahal: looks like the big file copy that gets done doesn't include head_ files listed in xpcshell.ini?
  2479. # [20:00] * geekboy is now known as geekboy|afk
  2480. # [20:00] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  2481. # [20:00] * Quits: tantek (tantek@moz-45485333.dsl.dynamic.sonic.net) (Quit: tantek)
  2482. # [20:01] * Joins: ericjung (ericjung@moz-FC76CC78.bstnma.fios.verizon.net)
  2483. # [20:02] * Joins: clee (clee@2557E599.66715431.D25A875A.IP)
  2484. # [20:02] * Quits: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  2485. # [20:02] * mjschranz is now known as mjschranz_away
  2486. # [20:03] * Joins: Ms2ger (Ms2ger@B7B2FF50.C60A97A6.F9FB0584.IP)
  2487. # [20:03] <nrc> firebot: uuid
  2488. # [20:03] <firebot> 04429978-3417-411b-882b-81cd5cec5ecd (/msg firebot cid for CID form)
  2489. # [20:04] * Joins: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  2490. # [20:05] * Matti is now known as Matti_away
  2491. # [20:05] * Joins: mwobensmith (Adium@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2492. # [20:05] * Joins: sankha94 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  2493. # [20:05] * Quits: gandalf (zbraniecki@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2494. # [20:05] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  2495. # [20:06] * Joins: gandalf (zbraniecki@2557E599.66715431.D25A875A.IP)
  2496. # [20:06] <ahal> jduell_: (side tip, if you pass in --busybox the copy will take 2-3 minutes instead of 20)
  2497. # [20:07] <jduell_> ahal: that's a very good tip :)
  2498. # [20:07] <jhammel|lunch> (there may/may not be a bug on the head_ issue)
  2499. # [20:07] * Quits: alice (alice@moz-A7C201EB.zone16.bethere.co.uk) (Client exited)
  2500. # [20:07] <jduell_> ahal: is there a way to incrementally run (i.e. not copy all the files each time, just the actual test itself?)
  2501. # [20:08] * Quits: jib (Jan-Ivar@moz-875D780C.hsd1.pa.comcast.net) (Quit: jib)
  2502. # [20:08] <ahal> jduell_: I'm not really sure why you would be seeing that, maybe past knows?
  2503. # [20:08] * coop|mtg is now known as coop
  2504. # [20:08] <ahal> jduell: nope, sorry
  2505. # [20:08] <ahal> jduell_: if you don't need that file, maybe just try disabling that section of tests?
  2506. # [20:08] <ahal> *if you don't need to run those tests
  2507. # [20:08] <jduell_> ahal: there's gotta be a way we can split out the file copying from the actual test run?
  2508. # [20:09] <jduell_> ahal: can I just cook up my own xpcshell.ini file that has just one test in it and no head files?
  2509. # [20:09] <jhammel|lunch> (if not, there should be a way to do so)
  2510. # [20:09] * jhammel|lunch is now known as jhammel
  2511. # [20:10] <ahal> jduell_: the automation was designed for emulators which get wiped each run (so that's why it isn't separated)
  2512. # [20:10] <jhammel> where should=="file a bug + fix"
  2513. # [20:10] <ahal> shouldn't be hard to separate though
  2514. # [20:10] * Joins: Mic (Mic@moz-C2F0C672.superkabel.de)
  2515. # [20:11] <ahal> jduell_: but yes, you can pass in your own manifest/test
  2516. # [20:11] <jduell_> ahal: right, but the full file copy each time will drive developers insane.
  2517. # [20:11] <ahal> and it should only copy that
  2518. # [20:11] <@bz> Hmm
  2519. # [20:11] <@bz> https://bugzilla.mozilla.org/show_bug.cgi?id=851278
  2520. # [20:11] <ahal> just modify the command line
  2521. # [20:11] <jduell_> ahal: ok, I'll try that. Maybe I'll see if I can tweak things to add a --nocopy flag too
  2522. # [20:11] <@bz> So some checkins to gaia show up on all our trees immediately?
  2523. # [20:11] <@bz> but some don't?
  2524. # [20:12] <ahal> jduell_: well with busybox it's much much better
  2525. # [20:12] <ahal> but yes, it should be fixed
  2526. # [20:12] <jduell_> ahal: can we make busybox the default?
  2527. # [20:12] * Quits: GinaYeh-laptop (GinaYeh@moz-A2F054F5.hfc.comcastbusiness.net) (Ping timeout)
  2528. # [20:12] <jduell_> even a couple minutes of latency for simple debugging cycle is a lot
  2529. # [20:13] <ahal> jduell_: we've been toying with it, but would need to check the binary into the tree somewhere
  2530. # [20:13] <jduell_> ahal: do I need to install busybox I assume? Got a URI?
  2531. # [20:14] <ahal> jduell_: http://busybox.net/downloads/binaries/latest/
  2532. # [20:14] * Quits: erikvold (erikvold@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: erikvold)
  2533. # [20:15] * Joins: mixedpuppy (mixedpuppy@A5087023.2354C43D.D8E68FF6.IP)
  2534. # [20:15] * Quits: jalcine (mozilla@moz-47347779.me) (Quit: ZNC - http://znc.in)
  2535. # [20:16] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Quit: lizzard)
  2536. # [20:19] * Joins: pnkfelix (pnkfelix@moz-A9854E00.hsd1.ma.comcast.net)
  2537. # [20:20] * Quits: @roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP) (Ping timeout)
  2538. # [20:20] * @bz is getting super-UI-lag in Firefox like he hasn't seen in months. :(
  2539. # [20:21] * Quits: pnkfelix (pnkfelix@moz-A9854E00.hsd1.ma.comcast.net) (Quit: Leaving.)
  2540. # [20:22] * Joins: kentuckyfriedtakahe (kentuckyfr@538BABFE.A073F3E.97BBD552.IP)
  2541. # [20:22] * Joins: sworkman (sworkman@2557E599.66715431.D25A875A.IP)
  2542. # [20:23] * hwine is now known as hwine-food
  2543. # [20:24] * Quits: sankha94 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  2544. # [20:24] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  2545. # [20:25] * Joins: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP)
  2546. # [20:25] * Joins: victsou (victsou@A46765EE.5FC3C47A.C55BF118.IP)
  2547. # [20:27] * Joins: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net)
  2548. # [20:29] * Quits: bsmith (bsmith@C11351D5.AC8EC7EA.B4C748B5.IP) (Quit: Leaving)
  2549. # [20:29] * Quits: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr_)
  2550. # [20:29] * Quits: RealRaven (Thunderbir@764C216E.1ACDA296.C3498625.IP) (Ping timeout)
  2551. # [20:29] * Quits: jorendorff (jorendorff@43CB6079.66715431.D25A875A.IP) (Quit: jorendorff)
  2552. # [20:30] * Joins: jalcine (mozilla@moz-47347779.me)
  2553. # [20:32] * Joins: erikvold (erikvold@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2554. # [20:33] * mdas is now known as mdas|afk
  2555. # [20:33] * Joins: tantek_ (tantek@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2556. # [20:33] * Quits: clee (clee@2557E599.66715431.D25A875A.IP) (Quit: clee)
  2557. # [20:34] * Joins: we11ington (msu-cse498@moz-600949B7.cse.msu.edu)
  2558. # [20:35] * Quits: jandem (jandem@66C76B89.FB8EABAE.DF9376EA.IP) (Quit: Bye)
  2559. # [20:35] * Quits: tantek_ (tantek@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: tantek_)
  2560. # [20:35] <philor> oh, look, there's a red Win PGO on mccr8's push, imagine that
  2561. # [20:35] <mccr8> yarr
  2562. # [20:35] <edmorley> Mossop: did you file a bug to turn on jetpack for all trunk trees (context the dev.platform thread), or would you like me to file it now?
  2563. # [20:35] <philor> those coincidences are just crazy, aren't they?
  2564. # [20:36] <edmorley> nicely predicted :-)
  2565. # [20:36] * Joins: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  2566. # [20:36] <@ted> woo, i filed a palindrome bug number
  2567. # [20:36] <@ted> 852258
  2568. # [20:36] <Mossop> edmorley: I want to check that some fixes have landed so we get good output then I'll file it
  2569. # [20:36] * armenzg_buildduty is now known as armenzg_brb
  2570. # [20:36] <edmorley> Mossop: great :-)
  2571. # [20:37] * Joins: RattyAway (Jim_diGriz@CE22F37F.24A5F4E8.2CD1CC0D.IP)
  2572. # [20:37] <@bz> philor: that makes no friggin' sense
  2573. # [20:37] <@bz> philor: can you link me to the log, please?
  2574. # [20:37] * geekboy|afk is now known as geekboy
  2575. # [20:37] <philor> bz: https://tbpl.mozilla.org/php/getParsedLog.php?id=20788155&tree=Mozilla-Inbound
  2576. # [20:38] <@khuey> looks like pymake OOMed
  2577. # [20:38] * Quits: smooney_ (smooney@2557E599.66715431.D25A875A.IP) (Quit: smooney_)
  2578. # [20:39] * Joins: clee (clee@2557E599.66715431.D25A875A.IP)
  2579. # [20:40] * Joins: jorendorff (jorendorff@43CB6079.66715431.D25A875A.IP)
  2580. # [20:40] <philor> edmorley: gaia-caused device build bustage is cleared, not sure how many other things we have holding us closed
  2581. # [20:40] * Joins: tallowen (tallowen@moz-BBE5F8A7.baf.movistar.cl)
  2582. # [20:40] <philor> bholley's busted, I think
  2583. # [20:41] <bholley> philor: which push?
  2584. # [20:41] <philor> mccr8's busted
  2585. # [20:41] <philor> bholley: oth in https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=f1fd4792d0bc
  2586. # [20:41] <bholley> philor: ah, yeah
  2587. # [20:42] * Quits: arky (arky@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2588. # [20:43] * Quits: Ameya (chatzilla@BC4366CF.98A4DA8C.4A5F0685.IP) (Ping timeout)
  2589. # [20:43] * Joins: smooney (smooney@2557E599.66715431.D25A875A.IP)
  2590. # [20:43] * capella|zzz is now known as capella
  2591. # [20:43] <bholley> philor: that's an annoying perennial source of bustage in the ctypes test
  2592. # [20:44] <bholley> philor: the fact that they get pulled in and run as on workers with a separate XUL test
  2593. # [20:44] * Quits: cpearce (chatzilla@moz-FC66E8A9.xdsl.xnet.co.nz) (Ping timeout)
  2594. # [20:44] <bholley> philor: and workers don't have Components
  2595. # [20:44] * baku is now known as baku|away
  2596. # [20:44] <bholley> philor: prefer a backout or an in-place fix?
  2597. # [20:44] * Joins: aceman (inet@moz-BE873B4B.dynamic.nextra.sk)
  2598. # [20:44] * hwine-food is now known as hwine
  2599. # [20:44] <aceman> hi
  2600. # [20:45] <aceman> I get this error: "RangeError: arguments array passed to Function.prototype.apply is too large"
  2601. # [20:45] <aceman> what is the limit?
  2602. # [20:45] * mdas|afk is now known as mdas
  2603. # [20:45] <@bz> So I'm trying to understand the gaia thing
  2604. # [20:45] <philor> bholley: just fix it, the tree's going to be in an evil state for quite a while anyway :)
  2605. # [20:45] <edmorley> bholley: I think a backout since there is pgo bustage on inbound, and we're just recovering from b2g/gaia breakage too
  2606. # [20:46] * jwir3|lunch is now known as jwir3
  2607. # [20:46] <philor> heh
  2608. # [20:46] <edmorley> heh
  2609. # [20:46] <@bz> aceman: did you get an answer?
  2610. # [20:46] <edmorley> :P
  2611. # [20:46] <@bz> 1537 static const unsigned ARGS_LENGTH_MAX = CAPACITY_VALS - (2 * BUFFER_VALS);
  2612. # [20:46] <aceman> bz: no
  2613. # [20:46] <edmorley> bholley: cool, fix it
  2614. # [20:46] <bholley> edmorley: ok :-)
  2615. # [20:46] * Joins: AndreeaM (Thunderbir@75E23F77.EEAF7EB8.CD219C36.IP)
  2616. # [20:46] <@bz> line 1489 -- static const size_t CAPACITY_VALS = 512 * 1024;
  2617. # [20:46] <@bz> line 1497 -- static const size_t BUFFER_VALS = 16 * 1024;
  2618. # [20:46] <@bz> aceman: ^
  2619. # [20:46] <@bz> aceman: so 480*1024 sounds like to me
  2620. # [20:46] <mbrubeck> http://mozillamemes.tumblr.com/image/28636713771
  2621. # [20:47] <aceman> bz: 480*1024 of what? chars?
  2622. # [20:47] <@bz> aceman: arguments
  2623. # [20:47] <philor> bz: the gaia tree bustage? we have builds which pull the tip of a totally unrelated repo, you know, like the tree rules have always said that we would not have
  2624. # [20:47] <edmorley> bholley: are you pushing in the next 2-3 mins? (if so will wait; am pushing a backout of something else shortly)
  2625. # [20:47] * Quits: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP) (Quit: This computer has gone to sleep)
  2626. # [20:47] * Joins: jedp (jedp@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2627. # [20:47] <bholley> edmorley: yes, I think so
  2628. # [20:47] <edmorley> ok :-)
  2629. # [20:48] <@bz> aceman: as in, the arguments array can't be longer than that
  2630. # [20:48] <@bz> philor: ok
  2631. # [20:48] * Joins: seth (seth@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2632. # [20:48] <@bz> philor: so there's some separate tbpl tree that pulls tip gaia?
  2633. # [20:48] <@bz> philor: because I was told neither try nor inbound nor m-c do that....
  2634. # [20:48] <philor> bz: no, every trunk tree pulls tip gaia
  2635. # [20:48] <edmorley> bz: all trunk trees that have b2g builds/tests pull gaia tip
  2636. # [20:48] <@bz> philor: really????
  2637. # [20:49] * Quits: davidb (davidb@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  2638. # [20:49] * Joins: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP)
  2639. # [20:49] * @bz was totally told that the emulator tests on try did not pull tip gaia
  2640. # [20:49] <philor> once upon a time, there was a gaia-nightly repo that we pulled
  2641. # [20:49] <edmorley> bz: it used to be a nightly cset rather than tip
  2642. # [20:49] <@bz> hrm
  2643. # [20:49] <philor> emulator tests are different
  2644. # [20:49] * @bz pushes his patch to try to verify this claim
  2645. # [20:49] * Joins: davidb (davidb@F2D29657.F60B0462.67AC9B1.IP)
  2646. # [20:49] <aceman> bz: ok, thanks.
  2647. # [20:49] <@bz> oh
  2648. # [20:49] <edmorley> philor: heh, I should leave you to the explanations and grab dinner :-)
  2649. # [20:49] <@bz> so we have some stuff running on tip gaia and some on non-tip, on the same tree?
  2650. # [20:49] <philor> device builds pull gaia, emulator builds do... something
  2651. # [20:50] * Quits: Jesse (jruderman@moz-537BCF9.hsd1.ca.comcast.net) (Quit: Jesse)
  2652. # [20:50] <@bz> And we run tests on both? :(
  2653. # [20:50] <philor> don't involve gaia, have gaia in the occassional emulator build, that's never been clear to me
  2654. # [20:50] <philor> no, we run no tests on device builds
  2655. # [20:50] <@bz> ok
  2656. # [20:50] <aceman> bz: can I overcome that by just calling apply multiple times on the same variable?
  2657. # [20:50] <philor> but we're required to not break them
  2658. # [20:50] * @bz pushes his patch to try
  2659. # [20:50] * mgerva-afk is now known as mgerva
  2660. # [20:50] <philor> we're not allowed to look at them, but we're required to not break them
  2661. # [20:50] <@bz> so wait
  2662. # [20:51] * Joins: vtmarvin (Thunderbir@9D75911A.1239134F.E4B2C495.IP)
  2663. # [20:51] <@bz> we run tests on the emulator builds
  2664. # [20:51] <jhammel> it is a policy worthy of Kafka himself
  2665. # [20:51] <bholley> edmorley: pushed
  2666. # [20:51] <bholley> edmorley: er, doh
  2667. # [20:51] <edmorley> bholley: hook
  2668. # [20:51] <edmorley> :-)
  2669. # [20:51] <philor> and bounced off the CLOSED TREE hook
  2670. # [20:51] <@bz> I guess I'm confused agout the current gaia bustage
  2671. # [20:52] <@bz> is it a bustage on non-test stuff?
  2672. # [20:52] <@bz> since we run tests on emulator only?
  2673. # [20:52] <bholley> edmorley: pushed for real
  2674. # [20:52] <philor> right, it's bustage in their build system
  2675. # [20:52] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/ef711d90e7b7 - Bobby Holley - Bug 848538 - Followup test bustage fix on a CLOSED TREE. r=me
  2676. # [20:53] <@khuey> ugh wtf
  2677. # [20:53] <@khuey> I lost a push race on a CLOSED TREE
  2678. # [20:53] * Quits: armenzg_brb (armenzg@moz-600B22EA.home1.cgocable.net) (Ping timeout)
  2679. # [20:53] <edmorley> khuey: for the pgo issue?
  2680. # [20:53] * Joins: armenzg_brb (armenzg@moz-600B22EA.home1.cgocable.net)
  2681. # [20:53] <@khuey> edmorley: yes
  2682. # [20:53] * Joins: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2683. # [20:53] <edmorley> khuey: nice; thank you :-)
  2684. # [20:54] * Quits: erikvold (erikvold@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: erikvold)
  2685. # [20:54] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d764382ed4cf - Kyle Huey - Back out Bug 462463 for massively regressing pymake depend build speed. CLOSED TREE
  2686. # [20:55] * Quits: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr_)
  2687. # [20:55] * Quits: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP) (Quit: This computer has gone to sleep)
  2688. # [20:56] * armenzg_brb is now known as armenzg_mtg
  2689. # [20:56] * Quits: RattyAway (Jim_diGriz@CE22F37F.24A5F4E8.2CD1CC0D.IP) (Connection reset by peer)
  2690. # [20:56] * nthomas|away is now known as nthomas
  2691. # [20:56] * coop is now known as coop|mtg
  2692. # [20:56] * hwine is now known as hwine|mtg
  2693. # [20:57] * Quits: digitsm (digitsm@EE6D2481.AEA810F0.6FBA63F7.IP) (Ping timeout)
  2694. # [20:57] * Quits: we11ington (msu-cse498@moz-600949B7.cse.msu.edu) (Quit: we11ington)
  2695. # [20:57] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/20152b50f68a - Kyle Huey - Back out Bug 827486 for PGO bustage. CLOSED TREE
  2696. # [20:58] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/75b300cd1c3d - Kyle Huey - Merge backout on a CLOSED TREE.
  2697. # [20:58] <@khuey> edmorley: ^
  2698. # [20:58] * Joins: we11ington (msu-cse498@moz-600949B7.cse.msu.edu)
  2699. # [20:58] <@khuey> mccr8: ^
  2700. # [20:58] <@khuey> mccr8: you should trigger PGO builds on my first backout
  2701. # [20:58] * Joins: till (till@moz-3493B177.superkabel.de)
  2702. # [20:58] * Parts: aceman (inet@moz-BE873B4B.dynamic.nextra.sk)
  2703. # [20:59] * Quits: we11ington (msu-cse498@moz-600949B7.cse.msu.edu) (Quit: we11ington)
  2704. # [21:00] * Quits: till (till@moz-3493B177.superkabel.de) (Ping timeout)
  2705. # [21:00] * Joins: akeybl (akeybl@2557E599.66715431.D25A875A.IP)
  2706. # [21:00] * Quits: sheppy (sheppy@moz-E826F7C2.dhcp.jcsn.tn.charter.com) (Quit: NO CARRIER)
  2707. # [21:01] * Quits: Hendikins (wolfox@moz-13914647.hhui4.ken.bigpond.net.au) (Ping timeout)
  2708. # [21:01] <mccr8> khuey: okay
  2709. # [21:01] * Quits: @dbaron (dbaron@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  2710. # [21:01] * Joins: Hendikins (wolfox@moz-13914647.hhui4.ken.bigpond.net.au)
  2711. # [21:01] * Joins: dbaron (dbaron@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2712. # [21:01] * ChanServ sets mode: +o dbaron
  2713. # [21:01] * Joins: armenzg (armenzg@moz-600B22EA.home1.cgocable.net)
  2714. # [21:01] <tbsaunde> mccr8: did your printfs tell you anything about bug 694254?
  2715. # [21:01] * Quits: armenzg_mtg (armenzg@moz-600B22EA.home1.cgocable.net) (Connection reset by peer)
  2716. # [21:02] * armenzg is now known as armenzg_mtg
  2717. # [21:02] <mccr8> khuey: okay I think I did...
  2718. # [21:02] <tbsaunde> mccr8: I'm sort of tempted to see if I can bisect a part of the test that causes the leak, but I'm not sure if that'd actually help
  2719. # [21:02] * Quits: mayhemer (Miranda@moz-415580BA.broadband17.iol.cz) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
  2720. # [21:03] <@bz> khuey: so I don't need to worry about this win pgo fail on mccr8's stuff?
  2721. # [21:03] <@bz> khuey: in that we "understand" it
  2722. # [21:03] <@bz> khuey: right?
  2723. # [21:03] <@khuey> bz: we believe we understand it
  2724. # [21:03] <@khuey> don't worry about it for now
  2725. # [21:03] <@bz> ok, cool
  2726. # [21:03] * @bz goes back to reviewing
  2727. # [21:04] * Waldo has no idea how bz is talking on IRC, and reviewing, while seemingly in the midst of a vidyo conference
  2728. # [21:04] * Quits: Boriss (FlyingToas@moz-BE33DA21.fw1.sfo1.mozilla.net) (Client exited)
  2729. # [21:05] * Joins: Boriss (FlyingToas@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2730. # [21:05] <@khuey> vidyo conference is over
  2731. # [21:05] * Quits: jorendorff (jorendorff@43CB6079.66715431.D25A875A.IP) (Quit: jorendorff)
  2732. # [21:05] * Joins: jib (Jan-Ivar@moz-875D780C.hsd1.pa.comcast.net)
  2733. # [21:07] <Ms2ger> Not that he wasn't doing all that during the call
  2734. # [21:07] <mccr8> edmorley philor: I triggered PGO rebuilds on the two backouts, so we'll see if my patch works with khuey's build system backout
  2735. # [21:07] <edmorley> sgtm :-)
  2736. # [21:08] <mccr8> tbsaunde: no, my printfs were only for generic factory. and from something philor was saying, it sometimes really just does fail that much, so maybe nothing to do with my prinfts.
  2737. # [21:09] <philor> sweet, just need a few emulator tests to run without crashing on edmorley's backout, and we're good
  2738. # [21:09] <edmorley> 'just' :-)
  2739. # [21:10] * Quits: past (Instantbir@moz-F5BBC6AC.dsl.dyn.forthnet.gr) (Quit: past)
  2740. # [21:10] <@bz> During the conference I did no reviewing, and minimal irc
  2741. # [21:11] <@bz> I think,
  2742. # [21:11] <derf> You're not sure?
  2743. # [21:11] <derf> Like maybe you accidentally reviewed something?
  2744. # [21:13] <nemo> say, will pointer-events: painted; ever be supported for HTML
  2745. # [21:13] <@bz> derf: Yes. ;)
  2746. # [21:13] <nemo> This is really just idle curiosity based on a question someone had asked in #css that I decided to try my hand at
  2747. # [21:13] <edmorley> philor: ryan had to take the afternoon off unexpectedly; if you got bored of manually starring the leaks I won't mind if you steal the review of bug 850670 from him :-)
  2748. # [21:13] <nemo> http://m8y.org/tmp/testcase333.xhtml
  2749. # [21:13] <nemo> at least, I'm guess "painted" is what would be needed
  2750. # [21:13] <@bz> derf: I had the windows all on the same desktop, so it's not impossible that I paged down once or twice in the window with the patch I was reviewing before the vidyo conference started
  2751. # [21:14] <nemo> hmmm
  2752. # [21:14] * nemo has a new idea
  2753. # [21:14] * Joins: longsonr (chatzilla@moz-D18B3DFF.zone14.bethere.co.uk)
  2754. # [21:16] * Joins: cpearce (chatzilla@538BABFE.A073F3E.97BBD552.IP)
  2755. # [21:16] * mattwoodrow|away is now known as mattwoodrow
  2756. # [21:17] * jammink is now known as jammink|afk
  2757. # [21:17] <philor> edmorley: so, what about aurora/beta/esr17?
  2758. # [21:18] * Quits: tanvi (tanvi@moz-9440AA69.hsd1.ca.comcast.net) (Quit: Leaving.)
  2759. # [21:19] * Joins: Matt (matthewger@E05025B2.7102BCB6.B7C3970A.IP)
  2760. # [21:19] * Quits: davidb (davidb@F2D29657.F60B0462.67AC9B1.IP) (Quit: davidb)
  2761. # [21:19] <edmorley> philor: oh treestatus restore worked well :/
  2762. # [21:20] * Joins: dzbarsky (Adium@moz-F359F79.wireless-pennnet.upenn.edu)
  2763. # [21:20] * Joins: till (till@moz-3493B177.superkabel.de)
  2764. # [21:21] * Quits: till (till@moz-3493B177.superkabel.de) (Client exited)
  2765. # [21:21] <nemo> http://m8y.org/tmp/testcase334.xhtml hm. close. but now there's this mysterious dead zone in half of the lime green section
  2766. # [21:21] * nemo hmmms
  2767. # [21:21] <philor> oh, "// Some other leakcheck error, fall back to searching for the whole line." was the actual answer to my underasked question
  2768. # [21:22] <edmorley> philor: in fact restore worked fine, they were just on thw wrong state beforehand
  2769. # [21:22] * Quits: victorporof (victorporo@DC82DE00.39508509.6A4F8DA2.IP) (Quit: victorporof)
  2770. # [21:22] <edmorley> philor: ah you're talking about the patch, sorry
  2771. # [21:23] <philor> nice, *I* left aurora OPEN
  2772. # [21:23] <edmorley> philor: aurora/beta won't match "leakcheck"; we'll lose "leak analysis" due to no hasLeak, but since broken anyway...
  2773. # [21:23] <edmorley> and we could always backport the automationutils.py change
  2774. # [21:24] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Connection reset by peer)
  2775. # [21:24] * Joins: karl (karl@moz-C433B975.jetstream.xtra.co.nz)
  2776. # [21:24] <philor> hmm
  2777. # [21:24] * Joins: victorporof (victorporo@DC82DE00.39508509.6A4F8DA2.IP)
  2778. # [21:24] * juanb|afk is now known as juanb
  2779. # [21:25] * Joins: Jesse (jruderman@2557E599.66715431.D25A875A.IP)
  2780. # [21:25] * Joins: cpeterson (cpeterson@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2781. # [21:25] * Joins: jbalogh (jbalogh@moz-5D2708AA.hsd1.ca.comcast.net)
  2782. # [21:25] * Quits: jbalogh (jbalogh@moz-5D2708AA.hsd1.ca.comcast.net) (Input/output error)
  2783. # [21:26] <edmorley> philor: in fact I'll definitely backport
  2784. # [21:26] * Quits: dzbarsky (Adium@moz-F359F79.wireless-pennnet.upenn.edu) (Quit: Leaving.)
  2785. # [21:26] * Joins: bsmith (bsmith@C11351D5.AC8EC7EA.B4C748B5.IP)
  2786. # [21:27] * Joins: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net)
  2787. # [21:28] * Joins: digitsm (digitsm@EE6D2481.AEA810F0.6FBA63F7.IP)
  2788. # [21:29] * Joins: GinaYeh-laptop (GinaYeh@moz-A2F054F5.hfc.comcastbusiness.net)
  2789. # [21:30] * armenzg_mtg is now known as armenzg_dinner
  2790. # [21:30] * Joins: dao (dao@moz-281B0ACA.superkabel.de)
  2791. # [21:30] * Quits: dcamp (dcamp@moz-930D5B64.hsd1.wa.comcast.net) (Quit: Leaving...)
  2792. # [21:31] * Quits: digitsm (digitsm@EE6D2481.AEA810F0.6FBA63F7.IP) (Ping timeout)
  2793. # [21:31] * Joins: jorendorff (jorendorff@43CB6079.66715431.D25A875A.IP)
  2794. # [21:31] * hwine|mtg is now known as hwine
  2795. # [21:32] * Joins: roc (chatzilla@E2F7352.56080C53.97BBD552.IP)
  2796. # [21:32] * ChanServ sets mode: +o roc
  2797. # [21:33] * Joins: erikvold (erikvold@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2798. # [21:33] <philor> you know, I wouldn't have any idea if we broke tbpl and starring didn't stick
  2799. # [21:34] * Quits: msucan (mihai@A5A0595A.66715431.D25A875A.IP) (Quit: Leaving.)
  2800. # [21:34] <philor> I cuoldn't tell you whether I'm starring the same failures 30 times a day, or the same instance 30 times
  2801. # [21:35] * jmaher is now known as jmaher|afk
  2802. # [21:35] * coop|mtg is now known as coop
  2803. # [21:37] * Quits: jdm (jdm@DB05BBF2.BB1F48F2.971E19F6.IP) (Quit: Lost terminal)
  2804. # [21:37] <@bz> dammit
  2805. # [21:37] <@bz> bugzilla is using unload listeners _again_?
  2806. # [21:37] <@bz> Is there a bug on this already?
  2807. # [21:38] * Quits: kentuckyfriedtakahe (kentuckyfr@538BABFE.A073F3E.97BBD552.IP) (Quit: kentuckyfriedtakahe)
  2808. # [21:39] * timeless chuckles
  2809. # [21:39] <@bz> YUI
  2810. # [21:40] <philor> just reopen the one from the last time
  2811. # [21:40] <@bz> philor: got a bug# offhand, or should I just query?
  2812. # [21:40] <nemo> hm
  2813. # [21:40] <nemo> So. Got that silliness to work w/ pointer-events
  2814. # [21:40] <nemo> http://m8y.org/tmp/testcase334.xhtml
  2815. # [21:40] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Quit: lizzard)
  2816. # [21:41] <philor> bz: way too long ago to have stuck in my memory
  2817. # [21:41] <nemo> aaand, Mardeg in #css pointed out that there is a small clickable portion outside the circle in the light blue upper left portion
  2818. # [21:41] <@bz> philor: makes sense.
  2819. # [21:41] <nemo> which. I can't see a reason for. makes me think bug
  2820. # [21:41] <nemo> not a major bug, but...
  2821. # [21:41] * Quits: erick (erick@E1304535.2A7189BF.BE19388.IP) (Ping timeout)
  2822. # [21:43] * Joins: gkw (fuzz2lin@2557E599.66715431.D25A875A.IP)
  2823. # [21:45] * Joins: dzbarsky (Adium@moz-59812CB1.hsd1.pa.comcast.net)
  2824. # [21:45] * Quits: Ms2ger (Ms2ger@B7B2FF50.C60A97A6.F9FB0584.IP) (Quit: nn)
  2825. # [21:46] * Joins: erick (erick@E1304535.2A7189BF.BE19388.IP)
  2826. # [21:46] * Quits: gandalf (zbraniecki@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2827. # [21:46] <philor> edmorley: okay, only 18 unstarred! does that look good to reopen?
  2828. # [21:47] * Joins: gandalf (zbraniecki@2557E599.66715431.D25A875A.IP)
  2829. # [21:48] <edmorley> philor: presuming we're happy about that fixing the pgo issues
  2830. # [21:48] <edmorley> then yeah
  2831. # [21:48] <philor> the backout did, whether or not the backout did
  2832. # [21:48] <philor> as in, tip will be fine whether or not tip-1 is
  2833. # [21:49] <@khuey> yep, that was the idea
  2834. # [21:49] * Joins: mcsmurf (mcsmurf@moz-7103AAA7.dip.t-dialin.net)
  2835. # [21:49] * Quits: mixedpuppy (mixedpuppy@A5087023.2354C43D.D8E68FF6.IP) (Ping timeout)
  2836. # [21:49] <philor> okay, inbound's open for the next load of bustage, get in quick because it won't last long
  2837. # [21:50] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  2838. # [21:50] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  2839. # [21:51] <@bz> lol
  2840. # [21:51] <longsonr> haha
  2841. # [21:51] * timeless rotfl
  2842. # [21:51] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/284df6d78bc5 - Yiming Yang - Bug 841101 - Add support for multi touch action chains in marionette, r=mdas
  2843. # [21:52] * Joins: tomer (tomer@moz-F45DAEFD.static.012.net.il)
  2844. # [21:52] <mbrubeck> mdas is too fast for me
  2845. # [21:53] * RyanVM|away is now known as RyanVM
  2846. # [21:53] * Quits: RyanVM (chatzilla@moz-148999FE.phlapa.fios.verizon.net) (Quit: ChatZilla 0.9.90 [Firefox 22.0a1/20130317180843])
  2847. # [21:53] <mdas> muhuahaha.
  2848. # [21:53] <jhammel> s/me/everyone/ :)
  2849. # [21:53] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/8da24aaaaa26 - Matt Brubeck - Bug 852183 - Remove unused testpilot extension and removed-files from /mobile/android [r=mfinkle]
  2850. # [21:53] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b10a9f0e0a76 - Matt Brubeck - Bug 852046 - Hide the Close Tab button label in the Metro tab bar [r=jimm]
  2851. # [21:53] * armenzg_dinner is now known as armenzg
  2852. # [21:54] * Quits: ErvisTusha (ErvisTusha@C99DF599.F69FB6EA.363D84A4.IP) (Client exited)
  2853. # [21:54] * Joins: lizzard (ehenry@moz-605588F2.tmodns.net)
  2854. # [21:55] <firebot> Check-in:
  2855. # [21:55] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/baa90816699d - Ian Melven - Bug 846458 - intermittent TEST-UNEXPECTED-PASS | /tests/content/base/test/test_bug548193.html | Assertion count 0 is less than expected range 1-1 assertions. (r=sstamm)
  2856. # [21:55] * Joins: jlevesy (jlevesy@C06827CD.5E4F36AE.8D2D772A.IP)
  2857. # [21:56] * Quits: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: sicking)
  2858. # [21:57] * Joins: gal (gal@2557E599.66715431.D25A875A.IP)
  2859. # [21:57] * Quits: victorporof (victorporo@DC82DE00.39508509.6A4F8DA2.IP) (Quit: victorporof)
  2860. # [21:57] * Joins: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP)
  2861. # [21:58] * Joins: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2862. # [21:58] * Quits: longsonr (chatzilla@moz-D18B3DFF.zone14.bethere.co.uk) (Quit: ChatZilla 0.9.90 [Firefox 19.0.2/20130307023931])
  2863. # [21:58] * Joins: Wusel_ (muench@moz-30E0439A.adsl.alicedsl.de)
  2864. # [21:59] * Quits: nmatsakis (nmatsakis@moz-6EBF7608.hsd1.ma.comcast.net) (Quit: Computer has gone to sleep.)
  2865. # [22:01] * Quits: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: sicking)
  2866. # [22:01] * Quits: mkaply (mkaply@moz-E77BA452.gtwncmta01.grtntx.tl.dh.suddenlink.net) (Ping timeout)
  2867. # [22:01] * Quits: sworkman (sworkman@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2868. # [22:01] * Quits: mwobensmith (Adium@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: Leaving.)
  2869. # [22:01] * Quits: bbondy (bbondy@moz-D9C9B0F.home4.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  2870. # [22:02] * Joins: sworkman (sworkman@2557E599.66715431.D25A875A.IP)
  2871. # [22:02] * Quits: lduros (user@moz-5D9ACE42.admin.upenn.edu) (Client exited)
  2872. # [22:02] <sfink> |git init; git log| => fatal: bad default revision 'HEAD'
  2873. # [22:02] <sfink> L(
  2874. # [22:02] <sfink> :(
  2875. # [22:02] * Quits: gal (gal@2557E599.66715431.D25A875A.IP) (Quit: gal)
  2876. # [22:03] * Quits: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP) (Quit: This computer has gone to sleep)
  2877. # [22:03] * pmoore is now known as pmoore|sleeping
  2878. # [22:04] <mbrubeck> |hg init; hg log| -> silently exits no matter what options you pass to "hg log" :P
  2879. # [22:04] <tbsaunde> sfink: don't you need to have commits before log makes ny sense? :-p
  2880. # [22:05] <sfink> tbsaunde: yes. I don't mind git log failing in some way. It's more the user-hostile error message I'm objecting to.
  2881. # [22:05] * Joins: gal (gal@2557E599.66715431.D25A875A.IP)
  2882. # [22:05] <sfink> mbrubeck: at least it's accurate and not scary
  2883. # [22:05] <mbrubeck> sfink: Kind of, I guess? Normally something like "hg log non-existant-file.txt -r non-existant-changeset" would fail
  2884. # [22:06] <mbrubeck> but with commits, it exits succesfully with no error message or warning.
  2885. # [22:06] <mbrubeck> s/with/without/
  2886. # [22:06] <sfink> ok, some amount of fail there
  2887. # [22:06] * Joins: lerc (quassel@5EE6AB9F.BEFA2430.788638A4.IP)
  2888. # [22:06] <sfink> I'd prefer both git and hg to say "this is an empty repo, you idiot"
  2889. # [22:06] * KaiRo is now known as KaiRo_away
  2890. # [22:07] <johns> That's pretty user hostile!
  2891. # [22:07] <@ehsan> sfink: this is an empty repo, you idiot
  2892. # [22:07] <@ehsan> there, I said it :P
  2893. # [22:07] <sfink> ehsan: which makes you the git :)
  2894. # [22:07] * Quits: mdas (mdas@50AE257C.D30B51A1.412CF160.IP) (Quit: )
  2895. # [22:07] <@ehsan> ouch
  2896. # [22:07] <johns> zing.
  2897. # [22:07] <@ehsan> that was mean!
  2898. # [22:07] <johns> This whole conversation was just a setup for that wasn't it
  2899. # [22:07] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/9502b3cccfe3 - Timothy Nikkel - Bug 851785. Stop expecting the image to be decoded in async_load_tests.js because it never does anything that would require a decode to happen. r=joe
  2900. # [22:07] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/25c76053d44a - Timothy Nikkel - Bug 851785. Stop RasterImage::FrameRect from initiating a decode. r=joe
  2901. # [22:07] <@ehsan> I'm sure it was
  2902. # [22:07] <@ehsan> oh wait
  2903. # [22:08] <@ehsan> the tree's open?!
  2904. # [22:08] * @ehsan goes to break it
  2905. # [22:08] <johns> !! Quick close it
  2906. # [22:08] * armenzg is now known as armenzg_brb
  2907. # [22:08] * Joins: mwobensmith (Adium@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2908. # [22:09] * rail is now known as rail_away
  2909. # [22:09] <tn> johns, did anything change in the past ~week with plugin destruction? i'm seeing a crash where we run script on plugin destruction on a page that didn't have any problems about a week ago
  2910. # [22:09] * Quits: annevk (annevk@moz-34E5D44B.wireless.csail.mit.edu) (Input/output error)
  2911. # [22:09] * AaronMT is now known as AaronMT|away
  2912. # [22:10] * Quits: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  2913. # [22:10] <johns> tn: hmm, we webidl-ified the embed tag I think
  2914. # [22:10] <johns> Which could affect teardown ordering maybe
  2915. # [22:10] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/865a2157b608 - Ed Morley - Bug 851842 - Make jit-tests log output more suited to TBPL bug suggestions; r=terrence
  2916. # [22:10] * Quits: yzen (Adium@AA2C085E.10C8AEF8.9A8C35B4.IP) (Quit: Leaving.)
  2917. # [22:11] <tn> johns, hmm, do you have a bug or revision id?
  2918. # [22:11] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/3e36f2240825 - Ehsan Akhgari - Bug 852017 - Clean up the private browsing browser-chrome tests; jdm
  2919. # [22:11] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/2cc397611921 - Ehsan Akhgari - Bug 852011 - Reserve 5 elements in MediaStream::mBlocked in order to avoid excessive cost when dealing with removals from it; r=roc
  2920. # [22:12] <johns> tn: Bug 843627, but it only landed today
  2921. # [22:12] <johns> tn: There was also bug 827158 which landed a few weeks ago
  2922. # [22:13] <nemo> hm. one more reason to think maybe there's some kind of odd firefox bug
  2923. # [22:13] * Quits: gerv (Instantbir@moz-8E68CF56.in-addr.arpa) (Ping timeout)
  2924. # [22:13] <nemo> so. the two segments w/ ghost anchor areas also have extra ghost label text if I select all
  2925. # [22:13] * Quits: seth (seth@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: seth)
  2926. # [22:13] * Joins: jfkthame (jfkthame@A75DDB88.C145D0FE.8D534776.IP)
  2927. # [22:13] <nemo> ("yep" and "bar"
  2928. # [22:13] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/411fd163b845 - Hubert Figuière - Bug 845095 - Disable test only on MacOS 10.6. r=
  2929. # [22:13] * Quits: bent (chatzilla@moz-C4A3BD78.hsd1.ca.comcast.net) (Ping timeout)
  2930. # [22:14] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  2931. # [22:14] <hub> f*** I forgot to add the r=
  2932. # [22:14] <tn> johns, i don't have 843627, so it can't be that.
  2933. # [22:15] <johns> tn: There's bug 851378 and bug 843671 that will be landing soon to fix some existing teardown issues, if you accidentally pulled from the future :-P
  2934. # [22:15] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  2935. # [22:16] <tn> johns, and bug 827158 seems to old (don't remember exactly)
  2936. # [22:16] <dholbert> hub, if you like, you can backout and re-land in a DONTBUILD push.
  2937. # [22:16] <tn> johns, hmm, perhaps it could be the page changed
  2938. # [22:16] * Quits: ahal (ahal@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  2939. # [22:16] <jhammel> hub: or get the reviewer to change their id to ''
  2940. # [22:16] <dholbert> hub, (though you don't necessarily need to, since it's a pretty minor change and no one's gonna be like "OMG who reviewed this!" and if they are, they can visit the bug)
  2941. # [22:16] <dholbert> jhammel++
  2942. # [22:16] <johns> tn: If it's a reproducible crash, file a bug!
  2943. # [22:16] <edmorley> hub: I wouldn't worry about the r= in the commit message, it's not hugely important (the bug number being the correct one, however...)
  2944. # [22:17] * edmorley is now known as edmorley|away
  2945. # [22:17] * Joins: kentuckyfriedtakahe (kentuckyfr@538BABFE.A073F3E.97BBD552.IP)
  2946. # [22:17] <tn> johns, ok, i'll try in a nightly instead of my own build to confirm
  2947. # [22:17] * Quits: @dveditz (dveditz@2557E599.66715431.D25A875A.IP) (Ping timeout)
  2948. # [22:17] * Joins: seth (seth@moz-BE33DA21.fw1.sfo1.mozilla.net)
  2949. # [22:17] * Joins: mayhemer (Miranda@moz-415580BA.broadband17.iol.cz)
  2950. # [22:17] * Joins: IanN (chatzilla@moz-C2F768A9.perr.cable.virginmedia.com)
  2951. # [22:17] <johns> tn: You could also try the try build here to see if I presciently fixed it: https://tbpl.mozilla.org/?tree=Try&rev=dea28098a353
  2952. # [22:18] * Joins: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  2953. # [22:18] * Quits: wolfiR (wolfiR@moz-F4A4C27.dip0.t-ipconnect.de) (Quit: Leaving)
  2954. # [22:18] <hub> bug # was correct.
  2955. # [22:20] <edmorley|away> hub: yup, meant generally :-)
  2956. # [22:20] * Quits: ericjung (ericjung@moz-FC76CC78.bstnma.fios.verizon.net) (Quit: Leaving)
  2957. # [22:20] * Quits: mgahlot (mgahlot@316A221D.B7BBAA21.85BF2EFC.IP) (Quit: )
  2958. # [22:21] * Quits: victsou (victsou@A46765EE.5FC3C47A.C55BF118.IP) (Client exited)
  2959. # [22:21] <JosiahOne> Where did tabs.inc go?
  2960. # [22:22] <tn> is there a reason why not-up-to-date nightlies are claiming they are up to date?
  2961. # [22:22] <Mossop> Updates are turned off right now
  2962. # [22:23] * mgerva is now known as mgerva-afk
  2963. # [22:24] <JosiahOne> Nevermind
  2964. # [22:25] * Joins: atuljangra (Mibbit@C3156593.6FA0BAB0.110F01C1.IP)
  2965. # [22:25] * Quits: rniwa (rniwa@5FEFE500.BA327C77.775DF071.IP) (Quit: rniwa)
  2966. # [22:25] * Joins: rniwa (rniwa@5FEFE500.BA327C77.775DF071.IP)
  2967. # [22:26] <atuljangra> Hey, can someone point me to Firefox OS mailing list.
  2968. # [22:26] <atuljangra> ?
  2969. # [22:26] <atuljangra> dev list, I want to keep updated about what is going on there :)
  2970. # [22:26] <edmorley|away> atuljangra: https://groups.google.com/forum/?fromgroups#!forum/mozilla.dev.b2g / https://lists.mozilla.org/listinfo/dev-b2g
  2971. # [22:27] * armenzg_brb is now known as armenzg_buildduty
  2972. # [22:27] <atuljangra> edmorley|away: Thanks :-)
  2973. # [22:27] * Quits: atuljangra (Mibbit@C3156593.6FA0BAB0.110F01C1.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2974. # [22:27] <edmorley|away> atuljangra: np :-)
  2975. # [22:27] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/632ec7d6a9ae - Bobby Holley - Bug 851987 - QI to nsPIDOMWindow instead of nsIDOMWindow in XPCWrappedJS. r=bz
  2976. # [22:28] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a1f3efbbe97a - Bobby Holley - Bug 851418 - Unscope the pusher in CompileEventHandlerInternal. r=mrbkap
  2977. # [22:28] * Joins: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  2978. # [22:31] * Quits: overholt (overholt@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  2979. # [22:31] <JosiahOne> jaws: Ping.
  2980. # [22:31] <JosiahOne> jaws: Whoops. Unping.
  2981. # [22:31] <JosiahOne> MattN: Ping.
  2982. # [22:32] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/56aa0efd1144 - Jim Mathies - Bug 850457 - Fix for reftest 759036-1.html Win8 failure. r=mbrubeck
  2983. # [22:32] * armenzg_buildduty is now known as armenzg_dinner
  2984. # [22:32] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/eee0650e0d5a - Jim Mathies - Bug 851271 - Follow up for scale3d-all.html and scale3d-all-separate.html, reorder annotation rules. r=mbrubeck
  2985. # [22:32] * Joins: sewardj (sewardj@moz-B5499ED5.rev.sfr.net)
  2986. # [22:32] * Quits: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com) (Ping timeout)
  2987. # [22:32] <MattN> JosiahOne: pong
  2988. # [22:32] <gps> ehsan: your Python is busted!
  2989. # [22:32] <@ehsan> gps: this is the python.org package...
  2990. # [22:33] <mbrubeck> where have all the windows builders gone..?
  2991. # [22:33] <JosiahOne> MattN: Not really important, and I'm sure you don't have time for this now, but is there a chance you could fix the patches on bug 738491 for the current trunk. I need then to test my patch with. (I made the mistake of updating)
  2992. # [22:33] * Joins: ericjung (ericjung@moz-FC76CC78.bstnma.fios.verizon.net)
  2993. # [22:33] <gps> ehsan: the problem you are seeing is likely caused by a different toolchain compiling python and extensions: you need to compile python locally
  2994. # [22:33] <@ehsan> gps: could it be that you're relying something which only works in homebrew python and nowhere else?
  2995. # [22:33] <@ehsan> gps: that seems quite unreasonable
  2996. # [22:34] <MattN> JosiahOne: I'm going to update them today to address Dao's comments
  2997. # [22:34] <gps> I doubt it. nobody else has seen this bug
  2998. # [22:34] <jhammel> that would be *very* strange, considering the bug
  2999. # [22:34] <@ehsan> gps: I have seen it with *both* the system python and the python.org python
  3000. # [22:34] <JosiahOne> MattN: Wow, what are the chances of that. Okay, thanks! :)
  3001. # [22:34] <gps> ehsan: build python from source and I bet it will work
  3002. # [22:35] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f7e1b97dcc73 - Jan de Mooij - Bug 851109 - Add NAME IC for invoking getters on the global object. r=djvj
  3003. # [22:35] <@ehsan> gps: well, I already had one python replacement disaster last night
  3004. # [22:35] <gps> you know how finicky linking and runtime libraries are!
  3005. # [22:35] <@ehsan> gps: I'm not in a rush to go through that pain again
  3006. # [22:35] <MattN> JosiahOne: you may be able to apply the version on UX: hg qimport https://hg.mozilla.org/projects/ux/rev/1613b2ea7249
  3007. # [22:35] <gps> ehsan: from the logs you posted in this channel last night, it appeared you had moz py packages in /Library. that's not good
  3008. # [22:35] <MattN> JosiahOne: and same for the next part. (see https://etherpad.mozilla.org/ux-branch for the changesets)
  3009. # [22:35] <@ehsan> gps: can that patch simply be rewritten to check whether the .noindex file exists in the objdir?
  3010. # [22:36] <gps> don't use sudo to install python packages :)
  3011. # [22:36] <@ehsan> ok I won't in the future
  3012. # [22:36] <@ehsan> but I can't dig myself out of this whole for now
  3013. # [22:36] <@ehsan> cause I don't know how to
  3014. # [22:36] <jhammel> gps: indeed; do sudo find / -exec 'chown $(whoami)'
  3015. # [22:36] <@ehsan> besides fixing our build system to not trigger this, of course ;)
  3016. # [22:37] * Quits: jlevesy (jlevesy@C06827CD.5E4F36AE.8D2D772A.IP) (Client exited)
  3017. # [22:37] <JosiahOne> MattN: But I would need the UX trunk for that right?
  3018. # [22:37] * Joins: sheppy (sheppy@moz-E826F7C2.dhcp.jcsn.tn.charter.com)
  3019. # [22:38] * Quits: sewardj (sewardj@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  3020. # [22:38] <gps> ehsan: the problem is Python is throwing an error is C land. we can't even trap it in Python!
  3021. # [22:39] <@ehsan> gps: that doesn't answer my question... could we not just check for the existence of .noindex
  3022. # [22:39] <@ehsan> and avoid this whole mess?
  3023. # [22:39] <gps> we were thinking about changing the default objdir name on OS X to contain .noindex
  3024. # [22:39] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  3025. # [22:39] <gps> I'm pretty sure it has to be in the directory name
  3026. # [22:39] <gps> if we can add a .noindex file to objdir, that would be dandy
  3027. # [22:39] <gps> easy enough to test...
  3028. # [22:39] * Quits: smontagu (chatzilla@486D173B.828D6921.E9C721AF.IP) (Ping timeout)
  3029. # [22:40] <JosiahOne> MattN: If not than those are broken as well. Or maybe I am completely confused. :)
  3030. # [22:40] <@ehsan> gps: ok, my mistake
  3031. # [22:40] <@ehsan> gps: I actually don't care about the noindex thing itself!
  3032. # [22:40] <@ehsan> I just want to be able to use mach again
  3033. # [22:40] <gps> ehsan: long term, I want to use psutil for more though
  3034. # [22:40] <MattN> JosiahOne: no, you wouldn't but I guess they also have conflicts then
  3035. # [22:40] <gps> it's a better way to measure linker memory usage, for example
  3036. # [22:40] <jhammel> gps: oh lord, when i read things like that about OSX it sure makes me glad i use linux
  3037. # [22:41] <@ehsan> gps: psutil usage doesn't have to be part of the build process, does it?
  3038. # [22:41] <gps> I also want the build system to record more resource usage when building
  3039. # [22:41] <JosiahOne> MattN: Yeah, the patches there fail as well.
  3040. # [22:41] <@ehsan> gps: can that be opt-in or opt-out?
  3041. # [22:41] <jhammel> (and yes that's both a expletive and a use of gps' proper title)
  3042. # [22:41] * Joins: jdm (jdm@CAB30FBD.8F96AEA7.2D179A7D.IP)
  3043. # [22:41] * Joins: sewardj (sewardj@moz-B5499ED5.rev.sfr.net)
  3044. # [22:41] <gps> well, adding a .noindex file to a directory does *not* stop Finder from spazzing out
  3045. # [22:42] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/fbef0319725b - Sriram Ramasubramanian - Bug 852237: Tabs button pressed state with neutral highlight color. [r=mfinkle]
  3046. # [22:42] * Quits: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr_)
  3047. # [22:42] <@ehsan> gps: hmm, not sure how I should phrase this... my only concern is to be able to build!
  3048. # [22:42] <tn> johns, doesn't seem to reproduce in a nightly, so something more complicated is going on
  3049. # [22:43] <gps> ehsan: psutil is already optional in terms of the build system
  3050. # [22:43] * Quits: lizzard (ehenry@moz-605588F2.tmodns.net) (Ping timeout)
  3051. # [22:43] <@ehsan> no it's not!
  3052. # [22:43] * Quits: sworkman (sworkman@2557E599.66715431.D25A875A.IP) (Quit: sworkman)
  3053. # [22:43] <gps> if you don't have the Python development headers, it won't build
  3054. # [22:43] * jcranmer|away is now known as jcranmer
  3055. # [22:43] <gps> your problem is it's building then crashing
  3056. # [22:43] <gps> maybe we should add a configure check that it actually works
  3057. # [22:43] <@ehsan> wait
  3058. # [22:43] * Quits: gal (gal@2557E599.66715431.D25A875A.IP) (Quit: gal)
  3059. # [22:43] <@ehsan> do we build psutil ourselves?
  3060. # [22:44] <gps> as part of virtualenv population
  3061. # [22:44] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/e83371a150ef - Lucas Rocha - Bug 844959 - Set an explicit height for horizontal tabs tray (r=mfinkle)
  3062. # [22:44] <@ehsan> omg
  3063. # [22:44] * Quits: JaneBush (gegeg@moz-5EA6AD8D.adsl.alicedsl.de) (Connection reset by peer)
  3064. # [22:44] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/86ff51b2a3c8 - Lucas Rocha - Bug 842621 - Gap between horizontal tab thumbnails should be narrower (r=mfinkle)
  3065. # [22:44] <gps> psutil is a binary python extension
  3066. # [22:44] <@ehsan> then yeah
  3067. # [22:44] * Quits: @dbaron (dbaron@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  3068. # [22:44] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/9ed0c198ff6b - Lucas Rocha - Bug 848551 - Use same tab thumbnail height on phones and tablets (r=mfinkle)
  3069. # [22:44] <@ehsan> this *has to be* a configure option
  3070. # [22:44] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/4dff991eac09 - Lucas Rocha - Bug 852227 - Don't highlight tab cell background on press (r=mfinkle)
  3071. # [22:44] <@ehsan> I didn't know we build it locally
  3072. # [22:44] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/56833fe7db8e - Till Schneidereit - Bug 844406 - Backout of self-hosted array extras. a=lsblakk
  3073. # [22:44] * Joins: yzen (Adium@AA2C085E.10C8AEF8.9A8C35B4.IP)
  3074. # [22:44] <@ehsan> man no wonder this crashes!
  3075. # [22:44] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  3076. # [22:44] <jhammel> heh
  3077. # [22:44] * Joins: dbaron (dbaron@moz-BE33DA21.fw1.sfo1.mozilla.net)
  3078. # [22:44] * ChanServ sets mode: +o dbaron
  3079. # [22:44] * Joins: gal (gal@2557E599.66715431.D25A875A.IP)
  3080. # [22:44] * @ehsan goes to morph the bug
  3081. # [22:44] <jhammel> </lightbulb>
  3082. # [22:45] * Quits: sewardj (sewardj@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  3083. # [22:45] <gps> not sure what it's being morphed to...
  3084. # [22:45] * jhammel guesses "make building psutils optional"
  3085. # [22:45] * Joins: jet (junglecode@moz-B5499ED5.rev.sfr.net)
  3086. # [22:45] <gps> "uninstall your Python C header files" :)
  3087. # [22:45] <JosiahOne> MattN: Well, whenever you can fix it would be wonderful. Thanks!
  3088. # [22:45] * JosiahOne is now known as JosiahOne_Away
  3089. # [22:46] * Joins: RealRaven (Thunderbir@764C216E.1ACDA296.C3498625.IP)
  3090. # [22:46] <edmorley|away> gps: "order a lenovo"
  3091. # [22:46] <@ehsan> gps: "Make psutil an optional part of the build system if errors such as "Fatal Python error: PyThreadState_Get: no current thread" can be detected"
  3092. # [22:46] * Joins: sewardj (sewardj@moz-B5499ED5.rev.sfr.net)
  3093. # [22:46] <gps> this will be a fun one. our virtualenv population logic is already teh crap
  3094. # [22:46] * Quits: AaronMT|away (AaronMT@moz-9742BA59.cpe.net.cable.rogers.com) (Ping timeout)
  3095. # [22:47] * Quits: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br) (Client exited)
  3096. # [22:47] <gps> and since ehsan is the only person who can repro, honestly, it's low priority
  3097. # [22:47] <gps> sorry :(
  3098. # [22:48] * Quits: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  3099. # [22:48] <@ehsan> gps: well I don't know what puts me into this minitority, but ok...
  3100. # [22:48] * Quits: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  3101. # [22:48] * Quits: sewardj (sewardj@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  3102. # [22:48] <@ehsan> fwiw I have no idea how to fix this myself, otherwise I would just write the patch :)
  3103. # [22:48] <gps> ehsan: you are always testing new toolchains, etc. I don't doubt your system is in a funky state
  3104. # [22:48] <jhammel> so, we can probably make it optionalish without that much trouble
  3105. # [22:48] <@ehsan> for now I'll just stop using mach I guess
  3106. # [22:49] * Joins: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  3107. # [22:49] <gps> or remove Python.h :)
  3108. # [22:49] <gps> then psutil will go away
  3109. # [22:49] <jhammel> not sure how to "fix it correctly" OTTOMH and also have no time for it for now :(
  3110. # [22:49] <@ehsan> gps: question is, what else would that break?
  3111. # [22:49] <@ehsan> I build mercurial locally for example
  3112. # [22:49] <jhammel> everything?
  3113. # [22:49] <jhammel> yeah
  3114. # [22:49] <@ehsan> would that stop working?
  3115. # [22:49] <@ehsan> yikes
  3116. # [22:49] <@ehsan> so, either build mozilla or mercurial but not both?
  3117. # [22:49] <jhammel> i think the answer is "who knows? but its irreversible"
  3118. # [22:50] <gps> or "use Homebrew's Python"
  3119. # [22:50] <jhammel> well, i mean....this is all C, really, so you could configure both to build
  3120. # [22:50] <gps> I don't trust a Python not compiled on my machine
  3121. # [22:50] <tbsaunde> [kk/win 29
  3122. # [22:50] <jhammel> gps: srsly?
  3123. # [22:50] <@ehsan> gps: I still don't understand what's so special about homebrew python?
  3124. # [22:50] <jhammel> i would more trust ubuntu's python than my own
  3125. # [22:50] <gps> it's not Fink :)
  3126. # [22:50] <@ehsan> one would expect the python.org folsk to be competent enough to ship a working python?
  3127. # [22:51] <gps> let me rephrase: I don't trust any of the OS X binary Python packages
  3128. # [22:51] <@ehsan> gps: fink?! I _never_ used fink python, except for like half an hour last night
  3129. # [22:51] <Luqman> pythonbrew is nice for installing multiple pythons and switching between them
  3130. # [22:51] <jhammel> heh, i don't know if trust anyone 100% to ship a working binary
  3131. # [22:51] * Joins: knelson (Adium@2557E599.66715431.D25A875A.IP)
  3132. # [22:51] <gps> I run Ubuntu's system Python and it works fine
  3133. # [22:51] <jhammel> Mozilla coming close :)
  3134. # [22:51] * Joins: AaronMT (AaronMT@moz-5DF3A271.cpe.net.cable.rogers.com)
  3135. # [22:51] * sfink mutters in his sleep
  3136. # [22:51] * Quits: mconley (mconley@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  3137. # [22:51] <@ehsan> ok
  3138. # [22:52] * Parts: knelson (Adium@2557E599.66715431.D25A875A.IP)
  3139. # [22:52] <@ehsan> I don't know if we're going to gain anything out of this conversations, as it seems we're disagreeing on some basic things
  3140. # [22:52] * Quits: Wusel_ (muench@moz-30E0439A.adsl.alicedsl.de) (Quit: Wusel_)
  3141. # [22:52] <reuben> gps: I think it's also visible on some builders: https://tbpl.mozilla.org/?tree=Mozilla-B2g18&rev=af9270e8f205
  3142. # [22:52] <@ehsan> maybe I'll write a patch one day
  3143. # [22:52] <@ehsan> once I figure out how to fix this
  3144. # [22:52] <reuben> not the same error, but from the same module
  3145. # [22:52] <@ehsan> but doesn't matter too much for now
  3146. # [22:52] <@ehsan> at least as long as mach remains an optional tool
  3147. # [22:52] * @ehsan goes back to doing real work
  3148. # [22:53] <reuben> ehsan: homebrew doesn't touch system files
  3149. # [22:53] <gps> reuben: wat? you should never get that
  3150. # [22:53] * Joins: sewardj (sewardj@moz-B5499ED5.rev.sfr.net)
  3151. # [22:53] <gps> we swallowed that error a while ago. I guess the b2g18 branch didn't pick up that patch *sigh*
  3152. # [22:53] <@ehsan> reuben: ok fine but not everybody uses homebrew
  3153. # [22:54] <gps> also, if you look at the logs, the psutil error is not fatal. it just picked up by the tbpl log parsers
  3154. # [22:54] <@ehsan> and I would argue that depending on homebrew specific behavior is just as wrong as depending on IE6 specific behavior ;)
  3155. # [22:54] * Quits: gal (gal@2557E599.66715431.D25A875A.IP) (Quit: gal)
  3156. # [22:54] * Quits: hub (hub@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  3157. # [22:54] * Quits: Boriss (FlyingToas@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  3158. # [22:54] <gps> ehsan: we *don't*. your system is wonky. I bet you a fresh install of OS X would not exhibit this behavior
  3159. # [22:54] <reuben> more like depending on not messing with system files
  3160. # [22:55] <jhammel> ehsan: well, we are talking about binary environments here; e.g. we don't support cygwin for building
  3161. # [22:55] * Joins: Boriss (FlyingToas@moz-BE33DA21.fw1.sfo1.mozilla.net)
  3162. # [22:55] * Quits: dherman (dherman@moz-6CA476B1.hsd1.ca.comcast.net) (Quit: dherman)
  3163. # [22:55] * Quits: sewardj (sewardj@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  3164. # [22:55] * Joins: bajaj (Adium@2557E599.66715431.D25A875A.IP)
  3165. # [22:55] * Quits: bajaj1 (Adium@2557E599.66715431.D25A875A.IP) (Connection reset by peer)
  3166. # [22:55] <jhammel> ^ playing Devil's advocate here; not at all defending homebrew or in fact anything Mac
  3167. # [22:55] * Quits: bajaj (Adium@2557E599.66715431.D25A875A.IP) (Max SendQ exceeded)
  3168. # [22:55] * Quits: Jesse (jruderman@2557E599.66715431.D25A875A.IP) (Connection reset by peer)
  3169. # [22:55] * Quits: kinetik (kinetik@831B3F65.16387748.FC74E68.IP) (Ping timeout)
  3170. # [22:55] * Joins: victorporof (victorporo@DC82DE00.39508509.6A4F8DA2.IP)
  3171. # [22:55] * Joins: Jesse_ (jruderman@2557E599.66715431.D25A875A.IP)
  3172. # [22:55] * Joins: smaug (chatzilla@moz-E342F6A8.rev.sfr.net)
  3173. # [22:55] <@ehsan> like I said, we are disagreeing on some basics here
  3174. # [22:55] * ChanServ sets mode: +o smaug
  3175. # [22:55] <@ehsan> and with that this conversation won't get anywhere
  3176. # [22:56] <gps> ehsan: there are dozens of Mozilla developers who use OS X and mach. you are the only one encountering this issue
  3177. # [22:56] <@ehsan> gps: well you said on the bug that this error is pretty common, didn't you?
  3178. # [22:56] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  3179. # [22:56] <gps> it's a known Python error
  3180. # [22:56] * Quits: jimm (jmathies@moz-864CAA4E.pn.at.cox.net) (Quit: )
  3181. # [22:57] <@ehsan> gps: fwiw it's the "you don't use homebrew so all bets are off" thing that I'm objecting to
  3182. # [22:57] * Quits: Jesse_ (jruderman@2557E599.66715431.D25A875A.IP) (Ping timeout)
  3183. # [22:57] * Quits: jet (junglecode@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  3184. # [22:57] * Joins: bajaj (Adium@2557E599.66715431.D25A875A.IP)
  3185. # [22:57] <@ehsan> gps: whether or not this bug gets fixed for _me_ is not that interesting to me so long as mach remains optional
  3186. # [22:57] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Connection reset by peer)
  3187. # [22:58] <@ehsan> cause I can just work around it for now
  3188. # [22:58] * Quits: akeybl (akeybl@2557E599.66715431.D25A875A.IP) (Ping timeout)
  3189. # [22:58] * Quits: RealRaven (Thunderbir@764C216E.1ACDA296.C3498625.IP) (Quit: RealRaven)
  3190. # [22:58] * Joins: njn (chatzilla@moz-83DDCCB5.dyn.iinet.net.au)
  3191. # [22:58] <gps> ehsan: I'm just saying that all the serious Python developers I know do not use OS X's built-in Python
  3192. # [22:58] * Joins: akeybl (akeybl@43CB6079.66715431.D25A875A.IP)
  3193. # [22:58] * Joins: jet (junglecode@moz-B5499ED5.rev.sfr.net)
  3194. # [22:58] <gps> if I had my way, we'd ship a binary distro for the build toolchain
  3195. # [22:58] <@ehsan> gps: I'm not a serious python developer ;)
  3196. # [22:59] <gps> I think we've agreed on this idea previously
  3197. # [22:59] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  3198. # [22:59] * Quits: erikvold (erikvold@moz-BE33DA21.fw1.sfo1.mozilla.net) (Quit: erikvold)
  3199. # [22:59] * Joins: sewardj (sewardj@moz-B5499ED5.rev.sfr.net)
  3200. # [22:59] <gps> wrt Clang
  3201. # [22:59] * Joins: dveditz (dveditz@2557E599.66715431.D25A875A.IP)
  3202. # [22:59] * ChanServ sets mode: +o dveditz
  3203. # [22:59] <@ehsan> shipping a binary build env?
  3204. # [22:59] * Joins: jviereck (Adium@moz-340574DC.dclient.hispeed.ch)
  3205. # [22:59] <@ehsan> I'm not aware of any such agreements!
  3206. # [22:59] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  3207. # [22:59] <gps> yes. like we do on Windows
  3208. # [22:59] <gps> ok, maybe it was someone else.
  3209. # [22:59] <@ehsan> we don't ship our clang binaries anywhere?
  3210. # [23:00] * Quits: TheOne (one@moz-9F722E86.dip.t-dialin.net) (Input/output error)
  3211. # [23:00] * Joins: Hughman (Mibbit@DF0C90CA.D2C20E22.A3B82EC7.IP)
  3212. # [23:00] <@ehsan> in fact we make it impossible to access them outside of the build network ;)
  3213. # [23:00] <gps> we /could/ upload the tooltool archives to a public FTP server
  3214. # [23:00] <jhammel> 'tis a slippery slope at best :(
  3215. # [23:00] <gps> and have the build system download the toolchain at build time
  3216. # [23:00] <gps> ... like Chromium's build system!
  3217. # [23:00] <jhammel> were this my platform that was being discussed i would be paniced and/or crying right now
  3218. # [23:00] * Joins: Jesse (jruderman@2557E599.66715431.D25A875A.IP)
  3219. # [23:00] <@ehsan> hehe, it's interesting that you bring up the chromium example
  3220. # [23:01] <@ehsan> I don't think their model works really great ;)
  3221. # [23:01] * geekboy is now known as geekboy|afk
  3222. # [23:01] <gps> the Clang SVN rev is hard-coded into the source tree. at build time, it attempts to fetch an archive from a public server. if it fails, it builds Clang from source
  3223. # [23:01] * Quits: sewardj (sewardj@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  3224. # [23:02] <jhammel> gps, ehsan : i hope the essence of this discussion gets to the bug if there's any fruit worth gathering
  3225. # [23:02] <tbsaunde> only allowing one particulr version of one compiler sounds ... not ok
  3226. # [23:02] <@ehsan> jhammel: I'm not sure what fruit we're hoping for here any more :(
  3227. # [23:02] <@bz> dammit
  3228. # [23:02] * @bz wishes he could figure out why he's seeing these pauses
  3229. # [23:02] <@ehsan> jhammel: there's no fruit in for me, that's for sure
  3230. # [23:03] * Quits: WeirdAl (chatzilla@moz-D461843.ask.info) (Quit: ChatZilla 0.9.90 [Firefox 19.0.2/20130307023931])
  3231. # [23:04] <jhammel> ehsan: well, if there is a homebrew v not, build env v not, etc discussion i'd at least like to know about it and potentially participate
  3232. # [23:04] <Luqman> is there a way to see the log from try during the run (i.e not have to wait till it's done)
  3233. # [23:04] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/bcf9c06aa2cb - Gregory Szorc - Bug 848861 - Send stack traces with FHR errors; r=rnewman, sr=mconnor
  3234. # [23:04] * Quits: sheppy (sheppy@moz-E826F7C2.dhcp.jcsn.tn.charter.com) (Quit: NO CARRIER)
  3235. # [23:04] <jhammel> but mostly i've said about as much as i care too (probably more) for an IRC conversation that is, I hope!, not a decision-making-body for issues like this
  3236. # [23:04] <@ehsan> jhammel: seems like the gist is use homebrew or don't expect things to work
  3237. # [23:05] <jhammel> well, i don't necessarily agree with that, but sans any sort of discussion on something like a bug, there's no point in me agreeing or disagreeing
  3238. # [23:05] * Quits: JosiahOne_Away (josiahbrun@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net) (Quit: Deallocatd. (Probably forbidden by ARC))
  3239. # [23:05] <NeilAway> sfink++
  3240. # [23:05] * Joins: RealRaven (Thunderbir@764C216E.1ACDA296.C3498625.IP)
  3241. # [23:06] <NeilAway> (scrollback, don't ask)
  3242. # [23:06] * armenzg_dinner is now known as armenzg_buildduty
  3243. # [23:06] <@ehsan> jhammel: the bug is one file ;)
  3244. # [23:06] <@ehsan> I should just hope for more people to hit this error ;)
  3245. # [23:06] * jhopkins is now known as jhopkins|afk
  3246. # [23:06] * Joins: mixedpuppy (mixedpuppy@A5087023.2354C43D.D8E68FF6.IP)
  3247. # [23:08] * Quits: ddahl (ddahl@C261DB39.6E5482D7.8DDCAE07.IP) (Ping timeout)
  3248. # [23:09] * Quits: RealRaven (Thunderbir@764C216E.1ACDA296.C3498625.IP) (Quit: RealRaven)
  3249. # [23:09] * catlee is now known as catlee-away
  3250. # [23:09] * Joins: sewardj (sewardj@moz-B5499ED5.rev.sfr.net)
  3251. # [23:11] * Quits: sewardj (sewardj@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  3252. # [23:12] * Quits: dhylands (dhylands@moz-5BF5F351.bchsia.telus.net) (Ping timeout)
  3253. # [23:13] * Quits: espadrine (thaddee_ty@moz-B582BE1.dclient.lsne.ch) (Ping timeout)
  3254. # [23:13] * Joins: ddahl (ddahl@C261DB39.6E5482D7.8DDCAE07.IP)
  3255. # [23:13] * Quits: victorporof (victorporo@DC82DE00.39508509.6A4F8DA2.IP) (Quit: victorporof)
  3256. # [23:14] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/ea90d48c3fba - Josh Matthews - Bug 851489 - Delay restarting the browser until the preferences dialog elements are completely updated. r=ehsan a=lsblakk
  3257. # [23:15] * Joins: sewardj (sewardj@moz-B5499ED5.rev.sfr.net)
  3258. # [23:15] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/cb810d07bc93 - Gavin Sharp - Bug 851646: remove unused strings, r=mixedpuppy
  3259. # [23:15] * Joins: dhylands (dhylands@moz-5BF5F351.bchsia.telus.net)
  3260. # [23:16] * Joins: bjacob_ (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  3261. # [23:16] * Quits: jib (Jan-Ivar@moz-875D780C.hsd1.pa.comcast.net) (Quit: jib)
  3262. # [23:17] * Quits: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Connection reset by peer)
  3263. # [23:17] * Quits: dhylands (dhylands@moz-5BF5F351.bchsia.telus.net) (Ping timeout)
  3264. # [23:17] * Joins: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br)
  3265. # [23:17] * Quits: sewardj (sewardj@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  3266. # [23:17] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/02d63d7e6c87 - Sriram Ramasubramanian - Bug 848961: Cleanup font-sizes in Android UI. [r=mfinkle]
  3267. # [23:17] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a23ff3177682 - Sriram Ramasubramanian - Bug 823644: Text appearance for about:home. [r=mfinkle]
  3268. # [23:17] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/809b5e32d3a2 - Sriram Ramasubramanian - Bug 823644: Remove the style named "Screen". [r=mfinkle]
  3269. # [23:17] * Joins: sewardj (sewardj@moz-B5499ED5.rev.sfr.net)
  3270. # [23:17] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/505fbab9b980 - Sriram Ramasubramanian - Bug 850927: Redundant doorhanger layout xml file. [r=mfinkle]
  3271. # [23:17] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/2f24c9525f57 - Sriram Ramasubramanian - Bug 823644: Base theme for Fennec. [r=mfinkle]
  3272. # [23:18] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/db52418726e6 - Sriram Ramasubramanian - Bug 823644: Cleanup list-view style. [r=mfinkle]
  3273. # [23:18] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/f0c492121470 - Sriram Ramasubramanian - Bug 823644: Base TextAppearances for the application. [r=mfinkle]
  3274. # [23:18] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/05abc6f2ece4 - Jonathan Kew - bug 851495 - add Khmer to table of scripts requiring shaping support. r=jdaggett a=lsblakk
  3275. # [23:18] * Quits: romaxa (romaxa@670ACB81.66590CC0.4A6948F8.IP) (Ping timeout)
  3276. # [23:19] * Joins: sworkman (sworkman@moz-825EC923.hsd1.ca.comcast.net)
  3277. # [23:19] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b66cea2dc7d2 - Ehsan Akhgari - Bug 851073 - Move MouseEvent to Web IDL; r=smaug
  3278. # [23:19] * Quits: sewardj (sewardj@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  3279. # [23:19] * Quits: mixedpuppy (mixedpuppy@A5087023.2354C43D.D8E68FF6.IP) (Ping timeout)
  3280. # [23:20] * Joins: romaxa (romaxa@670ACB81.66590CC0.4A6948F8.IP)
  3281. # [23:20] * Joins: dhylands (dhylands@moz-5BF5F351.bchsia.telus.net)
  3282. # [23:20] * Joins: kinetik (kinetik@E8D8E0B7.611C109.FC74E68.IP)
  3283. # [23:21] * Joins: lmandel (lmandel@moz-83399C40.rev.sfr.net)
  3284. # [23:21] * Joins: wg9s (bill@moz-E9E3CA35.hsd1.ma.comcast.net)
  3285. # [23:22] * mcote is now known as mcote|afk
  3286. # [23:22] * kmoir is now known as kmoir-afk
  3287. # [23:22] * Quits: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br) (Ping timeout)
  3288. # [23:24] * Quits: dforsyth (dforsyth@CAEA512.6E91F788.2CFD4520.IP) (Ping timeout)
  3289. # [23:24] * Joins: dforsyth (dforsyth@CAEA512.6E91F788.2CFD4520.IP)
  3290. # [23:24] * Quits: @smaug (chatzilla@moz-E342F6A8.rev.sfr.net) (Ping timeout)
  3291. # [23:24] <njn> wchen: ping
  3292. # [23:24] <wchen> njn: pong
  3293. # [23:24] * Joins: nmatsakis (nmatsakis@moz-4CACC08F.hsd1.ma.comcast.net)
  3294. # [23:25] <njn> wchen: I'm getting a compile error with clang 3.2:
  3295. # [23:25] <njn> /home/njn/moz/mi3slim/dom/src/notification/Notification.cpp:39:19: error: expected a class or namespace
  3296. # [23:25] <njn> 3:52.05 mPermission(NotificationPermission::Default),
  3297. # [23:25] <njn> wchen: and several other similar ones
  3298. # [23:25] <wchen> njn: ok, I'm landing a patch right now to fix that
  3299. # [23:25] <njn> wchen: great, thanks
  3300. # [23:26] * Joins: smaug (chatzilla@moz-E342F6A8.rev.sfr.net)
  3301. # [23:26] * ChanServ sets mode: +o smaug
  3302. # [23:26] * Quits: jet (junglecode@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  3303. # [23:27] * Quits: wlach (wlach@moz-A1116E53.sdsl.bell.ca) (Ping timeout)
  3304. # [23:27] * Joins: jet (junglecode@moz-B5499ED5.rev.sfr.net)
  3305. # [23:28] * Quits: jviereck (Adium@moz-340574DC.dclient.hispeed.ch) (Quit: Leaving.)
  3306. # [23:29] <jaws> are nightly updates disabled? i'm stuck on 3-15 nightly
  3307. # [23:29] <philor> edmorley|away++
  3308. # [23:29] * Joins: mixedpuppy (mixedpuppy@A5087023.2354C43D.D8E68FF6.IP)
  3309. # [23:30] <philor> jaws: yes, though I think they might have just gotten reenabled
  3310. # [23:30] <jaws> ok i'll try again later
  3311. # [23:30] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/061871df8f9e - Olli Pettay - Bug 782211 - Follow up to fix compilation error with gcc 4.7. r=wchen
  3312. # [23:30] * Quits: Mic (Mic@moz-C2F0C672.superkabel.de) (Quit: No time to waste, let's go!)
  3313. # [23:30] * Joins: Mic (Mic@moz-C2F0C672.superkabel.de)
  3314. # [23:30] <edmorley|away> philor: sorry it took until comment 700 on that bug! :-)
  3315. # [23:30] <philor> bug 852106
  3316. # [23:31] * Quits: sheeri (sheeri@moz-5E1F6454.hsd1.ma.comcast.net) (Quit: sheeri)
  3317. # [23:31] * Quits: jet (junglecode@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  3318. # [23:31] <vlad> ted: ping
  3319. # [23:31] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/545649dc10e7 - Allison Naaktgeboren - Bug 848134-condense metro css attributes whose only value is true(Mbrubeck Memorial Bug)r=mbrubeck
  3320. # [23:32] <philor> would have been a little higher, but I got tired of copy-paste there too last night
  3321. # [23:32] * Joins: jet (junglecode@moz-B5499ED5.rev.sfr.net)
  3322. # [23:32] * Joins: sewardj (sewardj@moz-B5499ED5.rev.sfr.net)
  3323. # [23:33] * Quits: nmatsakis (nmatsakis@moz-4CACC08F.hsd1.ma.comcast.net) (Ping timeout)
  3324. # [23:33] * armenzg_buildduty is now known as armenzg_afk
  3325. # [23:33] * bz is now known as bz_away
  3326. # [23:34] * Quits: jet (junglecode@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  3327. # [23:34] * Joins: jviereck (Adium@moz-340574DC.dclient.hispeed.ch)
  3328. # [23:35] * Quits: ddahl (ddahl@C261DB39.6E5482D7.8DDCAE07.IP) (Quit: Adios Amigos)
  3329. # [23:35] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Quit: Instantbird 1.4a1pre -- http://www.instantbird.com)
  3330. # [23:35] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  3331. # [23:35] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/260c1b2a4b33 - Margaret Leibovic - Bug 841151 - Don't try to restore wyciwyg URLs. r=bnicholson
  3332. # [23:35] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/7dafe64aa7f7 - Margaret Leibovic - Bug 848420 - (Part 2) Test for distribution search engines. r=gbrown
  3333. # [23:35] * Joins: jet (junglecode@moz-B5499ED5.rev.sfr.net)
  3334. # [23:35] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/f49cd7c9b766 - Margaret Leibovic - Bug 848420 - Distribution support for additional default search engines. r=mfinkle
  3335. # [23:35] * Quits: hipokrit (hipokrit@1BF5DFDB.CA40E1F7.C558AD24.IP) (Client exited)
  3336. # [23:36] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/d0c34cd5d122 - Margaret Leibovic - Bug 848254 - Add support of pre-pinned bookmarks on about:home for distributions. r=rnewman
  3337. # [23:36] * Quits: armenzg_afk (armenzg@moz-600B22EA.home1.cgocable.net) (Input/output error)
  3338. # [23:36] * Quits: tomer (tomer@moz-F45DAEFD.static.012.net.il) (Ping timeout)
  3339. # [23:37] * Joins: JosiahOne (josiahbrun@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  3340. # [23:38] * Quits: jet (junglecode@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  3341. # [23:38] <nemo> http://internetcensus2012.bitbucket.org/paper.html
  3342. # [23:39] * Joins: jet (junglecode@moz-B5499ED5.rev.sfr.net)
  3343. # [23:39] * Joins: cilias (cilias@moz-D65C0C74.cpe.net.cable.rogers.com)
  3344. # [23:39] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Connection reset by peer)
  3345. # [23:39] * Quits: Mic (Mic@moz-C2F0C672.superkabel.de) (Quit: No time to waste, let's go!)
  3346. # [23:39] * Joins: Mic (Mic@moz-C2F0C672.superkabel.de)
  3347. # [23:41] * philor enrolls imelven in dbaron's School Of Commit Messages
  3348. # [23:41] <@dbaron> eh?
  3349. # [23:41] * jcranmer is now known as jcranmer|away
  3350. # [23:41] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/bf3ce88c6ea3 - Jason Orendorff - Bug 846406 - Implement arrow functions. r=bhackett. Changes to Y.js r=brendan.
  3351. # [23:41] <philor> all the more because we now stick the commit message into the log, so if your commit message matches an error, we highlight it in every failure on your push
  3352. # [23:41] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/1255520f471b - Jason Orendorff - Bug 848062 - Make arrow functions inherit the value of 'this' from the enclosing scope. r=bhackett.
  3353. # [23:42] <philor> "Ian Melven – Bug 846458 - intermittent TEST-UNEXPECTED-PASS | /tests/content/base/test/test_bug548193.html | Assertion count 0 is less than expected range 1-1 assertions. (r=sstamm)"
  3354. # [23:42] <philor> -> "4:59:19 INFO - "comments": "Bug 846458 - intermittent TEST-UNEXPECTED-PASS _ /tests/content/base/test/test_bug548193.html _ Assertion count 0 is less than expected range 1-1 assertions. (r=sstamm)", "
  3355. # [23:43] * Quits: @smaug (chatzilla@moz-E342F6A8.rev.sfr.net) (Ping timeout)
  3356. # [23:44] * Joins: smaug (chatzilla@moz-E342F6A8.rev.sfr.net)
  3357. # [23:44] * ChanServ sets mode: +o smaug
  3358. # [23:44] * Joins: bbondy (bbondy@moz-D9C9B0F.home4.cgocable.net)
  3359. # [23:44] * Joins: sicking (sicking@moz-BE33DA21.fw1.sfo1.mozilla.net)
  3360. # [23:44] * Quits: bjacob_ (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  3361. # [23:44] <johns> tn: Do you have a stack or breakpad id for bug 852315?
  3362. # [23:44] * Joins: mconley (mconley@D4B46A36.8C6552CA.6816E6B7.IP)
  3363. # [23:45] * Quits: jet (junglecode@moz-B5499ED5.rev.sfr.net) (Ping timeout)
  3364. # [23:45] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Quit: Instantbird 1.4a1pre -- http://www.instantbird.com)
  3365. # [23:45] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  3366. # [23:46] * Joins: jet (junglecode@moz-B5499ED5.rev.sfr.net)
  3367. # [23:46] <nemo> heh
  3368. # [23:46] * Quits: lmandel (lmandel@moz-83399C40.rev.sfr.net) (Ping timeout)
  3369. # [23:46] <lsblakk> huh - why do the faces of the people on http://sf.getuncubed.com/ shake when i hover on them in FF20?
  3370. # [23:47] <lsblakk> it's a bit unsettling
  3371. # [23:47] * Quits: jviereck (Adium@moz-340574DC.dclient.hispeed.ch) (Quit: Leaving.)
  3372. # [23:47] <nemo> what faces?
  3373. # [23:47] * Quits: jet (junglecode@moz-B5499ED5.rev.sfr.net) (Quit: jet)
  3374. # [23:47] <nemo> lsblakk: linux?
  3375. # [23:47] <lsblakk> nope, mac
  3376. # [23:47] <lsblakk> if you go down the page to "Expect discussions with..."
  3377. # [23:47] <nemo> oh
  3378. # [23:47] <lsblakk> the faces in round img.speaker-image
  3379. # [23:47] <nemo> there they are
  3380. # [23:47] <nemo> heh
  3381. # [23:47] <lsblakk> they shake
  3382. # [23:47] <lsblakk> they are not links
  3383. # [23:48] <lsblakk> i do not see a hover action
  3384. # [23:48] <jhammel> lsblakk: obviously because they were taken in an earthquake :P
  3385. # [23:48] <lsblakk> or anything obvious in the css
  3386. # [23:48] <lsblakk> there's an animation i guess
  3387. # [23:48] <nemo> #speaker-block .speakers li:hover ul li img { position: relative; animation: 0.1s linear 0s normal none infinite racausestmoves;
  3388. # [23:48] <nemo> }
  3389. # [23:48] <nemo> I guess they are to show the energy of the speakers? :)
  3390. # [23:48] <nemo> how incredibly bouncingly excited they are that your mouse hovered over 'em?
  3391. # [23:48] <lsblakk> so weird
  3392. # [23:48] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f2706052a3bf - David Anderson - Diagnostic patch for bug 837370 topcrash (r=bhackett).
  3393. # [23:48] <lsblakk> makes the site seem broken, imo
  3394. # [23:48] <jhammel> heh
  3395. # [23:49] <nemo> jhammel: were you the one who asked me to get that trace?
  3396. # [23:49] <jhammel> i bet if the periodicity was the same as the jumping Mac dock icons it would seem intentional ;)
  3397. # [23:49] <tn> johns, yep. i can post it. was hoping that it could be reproduced by someone else though.
  3398. # [23:49] <jhammel> nemo: since i don't know what "that trace" refers to, i'm going to say "no" ;)
  3399. # [23:49] <nemo> hrm
  3400. # [23:49] <lsblakk> or even if their faces were links to their twitter/blog/linkedin
  3401. # [23:49] * Joins: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net)
  3402. # [23:50] <nemo> jdm? :)
  3403. # [23:50] <jdm> hmm?
  3404. # [23:50] <jdm> I haven't asked you to get a trace for a while
  3405. # [23:50] <jdm> nemo: I think you're thinking of till
  3406. # [23:50] <nemo> hum. wonder who it was
  3407. # [23:50] * Quits: AndreeaM (Thunderbir@75E23F77.EEAF7EB8.CD219C36.IP) (Quit: AndreeaM)
  3408. # [23:50] <nemo> I was just amused 'cause it crashed when trying to use profiler :)
  3409. # [23:50] <jhammel> nemo: just out of curiousity, what is "that trace"?
  3410. # [23:51] * joduinn is now known as joduinn-afk
  3411. # [23:51] <nemo> for https://bugzilla.mozilla.org/show_bug.cgi?id=849325
  3412. # [23:51] * Joins: aja (Instantbir@7B623C8A.C2971D12.7880DB15.IP)
  3413. # [23:51] * Quits: Mic (Mic@moz-C2F0C672.superkabel.de) (Quit: No time to waste, let's go!)
  3414. # [23:51] * Joins: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br)
  3415. # [23:51] * Joins: Mic (Mic@moz-C2F0C672.superkabel.de)
  3416. # [23:52] <jhammel> nemo: yeah, not it ;) dmandelin may at least have a guess
  3417. # [23:52] <tbsaunde> gavin: ping
  3418. # [23:53] * Quits: jryans (jryans@moz-945C5CA4.massrel.com) (Quit: Be back later)
  3419. # [23:53] * Quits: gandalf (zbraniecki@2557E599.66715431.D25A875A.IP) (Quit: My lid went down)
  3420. # [23:53] * Joins: tanvi (tanvi@moz-9440AA69.hsd1.ca.comcast.net)
  3421. # [23:53] * Quits: mconley (mconley@D4B46A36.8C6552CA.6816E6B7.IP) (Input/output error)
  3422. # [23:54] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d40d19445f9a - Luke Wagner - Don't assert asm.js validation errors with --disable-ion (no bug, r=me)
  3423. # [23:55] * Quits: automata (automata@moz-1CE7A56D.ifsc.usp.br) (Quit: Saindo)
  3424. # [23:56] <Jesse> are people writing "r=me" because they think there's a hook requiring r=, or to make it clear they intentionally didn't ask anyone for review?
  3425. # [23:56] <cpeterson> Jesse: is there no "r=" hook?
  3426. # [23:57] <edmorley|away> cpeterson: correct
  3427. # [23:57] <wchen> or perhaps some user named "me" reviews a lot of patches
  3428. # [23:57] <jhammel> cpeterson: http://quotes.burntelectrons.org/6559 ;)
  3429. # [23:57] <edmorley|away> https://hg.mozilla.org/hgcustom/hghooks/file/93dc9c506add/mozhghooks/commit-message.py
  3430. # [23:58] * Quits: FabioMagnoni (fabiomagno@moz-C0C38947.dsl.telesp.net.br) (Ping timeout)
  3431. # [23:58] <jhammel> edmorley|away: imho, linking to philor's qbo quote should be canonical
  3432. # [23:58] <jhammel> edmorley|away: also, didn't i already say you should relax *away* from IRC? ;)
  3433. # [23:59] <Jesse> jhammel: btw http://quotes.burntelectrons.org/6846
  3434. # [23:59] * Joins: Alfredo (alfredoyan@moz-642F7354.dynamic.hinet.net)
  3435. # [23:59] <cpeterson> why not have an "r=" commit hook?
  3436. # [23:59] <jhammel> Jesse: :)
  3437. # [23:59] * Quits: gustavold (gustavold@9C7112F4.61D1FB4D.FBFF2E6D.IP) (Quit: Leaving.)
  3438. # [23:59] * Quits: vtmarvin (Thunderbir@9D75911A.1239134F.E4B2C495.IP) (Quit: vtmarvin)
  3439. # [23:59] <jhammel> cpeterson: has there been a problem with not having one that is worth solving?
  3440. # [23:59] <mbrubeck> cpeterson: There hasn't been a particular problem with missing r=
  3441. # [23:59] <jhammel> mbrubeck++
  3442. # Session Close: Tue Mar 19 00:00:01 2013

The end :)