/irc-logs / mozilla / #developers / 2013-11-19 / end

Options:

  1. # Session Start: Tue Nov 19 00:00:00 2013
  2. # Session Ident: #developers
  3. # [00:00] <bz> njn: would land in WrappedNativeFinalize
  4. # [00:00] * Joins: geo- (geo@moz-BBE3ABD.mv.mozilla.com)
  5. # [00:00] * Quits: marco (Thunderbir@75B33C5A.6391296B.41FF9975.IP) (Quit: marco)
  6. # [00:00] * Joins: jgilbert_ (jgilbert@moz-7B0110AD.mv.mozilla.com)
  7. # [00:01] * Quits: Bas (chatzilla@moz-9919860E.ftth.concepts.nl) (Input/output error)
  8. # [00:01] * Joins: dholbert_ (dholbert@moz-BBE3ABD.mv.mozilla.com)
  9. # [00:01] <@njn> bz: I'm in the process of adding counts for alloc/free ops on that cache
  10. # [00:02] <bz> njn: so what I don't see offhand is us freeing that cache on workers
  11. # [00:02] <bz> njn: or even allocating it, which is odd
  12. # [00:02] <bz> finalize = 0x105622b50 <XPC_WN_Helper_Finalize(js::FreeOp*, JSObject*)>,
  13. # [00:02] <bz> is what happens with the object created via mozJSComponentLoader::PrepareObjectForLocation
  14. # [00:02] <bz> And XPC_WN_Helper_Finalize does:
  15. # [00:02] * Joins: Bas (chatzilla@moz-9919860E.ftth.concepts.nl)
  16. # [00:03] * Quits: geo- (geo@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  17. # [00:03] * Joins: Benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  18. # [00:03] <bz> 902 XPC_WN_Helper_Finalize(js::FreeOp *fop, JSObject *obj)
  19. # [00:03] <bz> 903 {
  20. # [00:03] <bz> 904 WrappedNativeFinalize(fop, obj, WN_HELPER);
  21. # [00:03] * Joins: geo (geo@moz-BBE3ABD.mv.mozilla.com)
  22. # [00:03] <bz> And that does
  23. # [00:03] <bz> 569 WrappedNativeFinalize(js::FreeOp *fop, JSObject *obj, WNHelperType helperType)
  24. # [00:03] <bz> 570 {
  25. # [00:03] <bz> 571 const js::Class* clazz = js::GetObjectClass(obj);
  26. # [00:03] <bz> 572 if (clazz->flags & JSCLASS_DOM_GLOBAL) {
  27. # [00:03] <bz> 573 mozilla::dom::DestroyProtoAndIfaceCache(obj);
  28. # [00:03] <bz> 574 }
  29. # [00:03] <bz> hrm
  30. # [00:03] <bz> I wonder whether that class has DOM_GLOBAL!
  31. # [00:04] <bz> 25 #define JSCLASS_DOM_GLOBAL JSCLASS_USERBIT1
  32. # [00:04] <bz> #define JSCLASS_USERBIT1 (1<<7)
  33. # [00:04] <bz> (gdb) p $4.flags & (1 << 7)
  34. # [00:04] <bz> $7 = 128
  35. # [00:04] <bz> Sure seems like it
  36. # [00:04] * Quits: geo (geo@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  37. # [00:04] * Joins: geo- (geo@moz-BBE3ABD.mv.mozilla.com)
  38. # [00:04] <decoder> froydnj: thx for looking into the tsan stuff. the better we understand the problem, the better I can describe it to their devs and they can fix it
  39. # [00:05] <bz> XPCONNECT_GLOBAL_FLAGS_WITH_EXTRA_SLOTS(n) uses JSCLASS_DOM_GLOBAL
  40. # [00:05] <bz> OK, so I don't see how that stack can leak
  41. # [00:05] <bz> njn: ^
  42. # [00:05] <@njn> bz: doing start-up and shutdown, I count 382 allocs and 204 frees
  43. # [00:05] * Quits: tH (Rob@cpc4-seac20-2-0-cust858.7-2.cable.virginm.net) (Ping timeout)
  44. # [00:05] <@njn> bz: I'll file a bug and include multiple stacks from valgrind
  45. # [00:06] * Quits: jgilbert_ (jgilbert@moz-7B0110AD.mv.mozilla.com) (Quit: Leaving)
  46. # [00:06] <bz> njn: please
  47. # [00:06] <bz> njn: can you also add printfs in the allocate/free funcs?
  48. # [00:06] <bz> njn: or something?
  49. # [00:06] <bz> Hrm
  50. # [00:06] <@njn> bz: that's what I did to get the 382/204 numbers
  51. # [00:07] <bz> njn: I meant the addresses, but I guess we get exactly the stacks that leaked anyway
  52. # [00:07] * Quits: brendan (brendaneic@moz-BBE3ABD.mv.mozilla.com) (Quit: brendan)
  53. # [00:07] * Joins: jgilbert_ (jgilbert@moz-7B0110AD.mv.mozilla.com)
  54. # [00:07] * Joins: glosoli (glosoli@moz-72C60525.static.zebra.lt)
  55. # [00:07] <@njn> gkw: what's the meta-bug tracking all bugs found by valgrind on tbpl?
  56. # [00:08] <bz> I don't understand how any of this works on workers
  57. # [00:08] <bz> We don't seem to allocate the cache there???
  58. # [00:08] * Quits: jgilbert_ (jgilbert@moz-7B0110AD.mv.mozilla.com) (Quit: Leaving)
  59. # [00:08] * Quits: mt (Adium@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  60. # [00:08] <@njn> gkw: ah, found it: bug 793882
  61. # [00:08] * Joins: mt (Adium@moz-BBE3ABD.mv.mozilla.com)
  62. # [00:08] <bz> That actually confuses me immensely
  63. # [00:09] * Quits: ss1905 (ss1905@5D1E8B58.574C31B9.3FDAF6BC.IP) (Client exited)
  64. # [00:09] * Joins: jgilbert_ (jgilbert@moz-7B0110AD.mv.mozilla.com)
  65. # [00:09] * Quits: jgilbert_ (jgilbert@moz-7B0110AD.mv.mozilla.com) (Quit: Leaving)
  66. # [00:10] * Joins: jgilbert_ (jgilbert@moz-7B0110AD.mv.mozilla.com)
  67. # [00:10] * Joins: brendan (brendaneic@moz-BBE3ABD.mv.mozilla.com)
  68. # [00:10] * Quits: Pike (chatzilla@moz-BD38E3AF.pool.mediaways.net) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0.1/20131112160018])
  69. # [00:11] * Quits: ehugg (ehugg@F73EF7EC.CB252E16.F0219BEF.IP) (Quit: ehugg)
  70. # [00:11] <@njn> bz: if you're confused, no wonder it's leaking
  71. # [00:12] <bz> njn: heh
  72. # [00:12] <bz> ok
  73. # [00:12] <bz> dinner
  74. # [00:12] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/83cc4f2aa0d1 - Michael Comella - Bug 935604 - Part 1: Fix graphical corruption on page load. r=lucasr, a=lsblakk
  75. # [00:12] * bz is now known as bz_dinner
  76. # [00:13] * Quits: valenting (Thunderbir@6F630D40.173A6960.FB866788.IP) (Quit: valenting)
  77. # [00:13] * Joins: cers (csonne@moz-D706C2D4.fullrate.dk)
  78. # [00:13] * Joins: valenting (Thunderbir@6F630D40.173A6960.FB866788.IP)
  79. # [00:13] * gregglind is now known as gregglind_away
  80. # [00:13] * Quits: dmajor (dmajor@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving)
  81. # [00:13] * Joins: dmajor (dmajor@moz-BBE3ABD.mv.mozilla.com)
  82. # [00:14] * pmoore is now known as pmoore|away
  83. # [00:14] * rail is now known as rail_away
  84. # [00:14] * Quits: dmajor (dmajor@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving)
  85. # [00:14] * Joins: dmajor (dmajor@moz-BBE3ABD.mv.mozilla.com)
  86. # [00:14] * Quits: jgilbert_ (jgilbert@moz-7B0110AD.mv.mozilla.com) (Quit: This computer has gone to sleep)
  87. # [00:14] <Waldo> riddle me this, batmen: why is it mozilla-b2g18 for one, but mozilla-b2g26_v1_2 for the other? seems confusing having different naming schemes
  88. # [00:15] * Quits: jfkthame (jfkthame@moz-BD15DB83.cable.virginm.net) (Quit: This computer has gone to sleep)
  89. # [00:16] * gaye is now known as gaye|dinner
  90. # [00:16] <@njn> bz: bug 940069
  91. # [00:16] * heycam|away is now known as heycam
  92. # [00:16] * Joins: Mossop (dtownsend@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  93. # [00:16] <@njn> bz: this seems like something that could contribute to excessive memory consumption during, say, a mochitest that opens and closes bazillions of windows
  94. # [00:17] <bz_dinner> njn: ok, so we leak this for every worker
  95. # [00:17] <bz_dinner> njn: afaict
  96. # [00:17] <bz_dinner> njn: but that doesn't explain your stacks
  97. # [00:17] <@njn> bz_dinner: I put all the stacks from the local run in the bug
  98. # [00:17] <bz_dinner> Thanks
  99. # [00:17] * Quits: dholbert_ (dholbert@moz-BBE3ABD.mv.mozilla.com) (Quit: Ex-Chat)
  100. # [00:18] * Quits: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  101. # [00:18] * Quits: blassey (blassey@moz-BBE3ABD.mv.mozilla.com) (Input/output error)
  102. # [00:19] * Joins: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP)
  103. # [00:19] <bz_dinner> njn: So the worker ones make sense.
  104. # [00:19] <bz_dinner> njn: The other ones don't yet
  105. # [00:19] <bz_dinner> njn: if we alloc at some pointer and then free
  106. # [00:19] <bz_dinner> njn: and then alloc at the same pointer again
  107. # [00:19] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  108. # [00:19] <bz_dinner> njn: could that get confused and log the first stack, not the second one?
  109. # [00:20] <bz_dinner> njn: or something?
  110. # [00:20] <@njn> bz_dinner: ok, ignore my 382/204 counts, I screwed that up
  111. # [00:20] <@njn> bz_dinner: what do youmean by "at the same pointer"?
  112. # [00:20] <@njn> valgrind just looks at live heap blocks at shutdown; any that don't have a pointer into them are considered leaks
  113. # [00:20] <bz_dinner> njn: like malloc returns the same pointer.
  114. # [00:21] <@njn> bz_dinner: and the stack shown is the stack where that block was allocated
  115. # [00:21] * Quits: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  116. # [00:21] <@njn> bz_dinner: that shouldn't be a problem
  117. # [00:21] <@njn> bz_dinner: the info for the old block is discarded
  118. # [00:21] * Quits: dobalina (dobalina@moz-26175008.rev.numericable.fr) (Ping timeout)
  119. # [00:21] <bz_dinner> ok
  120. # [00:21] <bz_dinner> I'll look more later tonight
  121. # [00:21] * Joins: jrm2k6_ (jrm2k6@moz-CF17A9A9.catv.broadband.hu)
  122. # [00:21] * bz_dinner goes to eat dinner for real
  123. # [00:21] <@njn> bz_dinner: sure
  124. # [00:21] * Joins: tH (Rob@cpc4-seac20-2-0-cust858.7-2.cable.virginm.net)
  125. # [00:22] * Quits: m_gol (m_gol@moz-4A03F5C1.dynamic.chello.pl) (Quit: Leaving...)
  126. # [00:22] * philor|away is now known as philor
  127. # [00:22] * Quits: jrm2k6 (jrm2k6@moz-7278A08.catv.broadband.hu) (Ping timeout)
  128. # [00:22] * Joins: till (till@moz-DC8564AF.adsl.alicedsl.de)
  129. # [00:22] * Joins: jrm2k6 (jrm2k6@moz-7278A08.catv.broadband.hu)
  130. # [00:22] * Quits: mbrubeck (mbrub_000@moz-45568FC0.hsd1.wa.comcast.net) (Quit: Leaving.)
  131. # [00:23] * Joins: mbrubeck (mbrub_000@moz-45568FC0.hsd1.wa.comcast.net)
  132. # [00:23] * Quits: jrm2k6_ (jrm2k6@moz-CF17A9A9.catv.broadband.hu) (Ping timeout)
  133. # [00:23] * Quits: gerv (Instantbir@moz-8E68CF56.in-addr.arpa) (Ping timeout)
  134. # [00:24] * Joins: gerv (Instantbir@moz-8E68CF56.in-addr.arpa)
  135. # [00:24] * mcote is now known as mcote|afk
  136. # [00:25] * Joins: blassey (blassey@moz-BBE3ABD.mv.mozilla.com)
  137. # [00:25] * Quits: abwillis (abwillis@CBAC43F2.9DD4DBBF.6A7A197.IP) (Client exited)
  138. # [00:26] <philor> oh look, it's backout time againstill
  139. # [00:26] * Quits: tomer (tomer@moz-F45DAEFD.static.012.net.il) (Ping timeout)
  140. # [00:27] * Quits: gerv (Instantbir@moz-8E68CF56.in-addr.arpa) (Ping timeout)
  141. # [00:27] <khuey> ok
  142. # [00:27] <khuey> I can't build the tree anymore
  143. # [00:28] <khuey> 23:59.59 msvcprtd.lib(MSVCP100D.dll) : error LNK2005: "public: static double __c
  144. # [00:28] <glandium> khuey: browsercomps.dll?
  145. # [00:28] <khuey> decl std::numeric_limits<double>::infinity(void)" (?infinity@?$numeric_limits@N@
  146. # [00:28] <khuey> std@@SANXZ) already defined in js_static.lib(digitlst.obj)
  147. # [00:28] <khuey> anybody else seen that?
  148. # [00:28] <glandium> ah no
  149. # [00:28] * Quits: Mossop (dtownsend@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: This computer has gone to sleep)
  150. # [00:28] * Joins: bhackett (Mibbit@moz-7D0AD4DD.sub-70-208-4.myvzw.com)
  151. # [00:28] * Joins: gerv (Instantbir@moz-8E68CF56.in-addr.arpa)
  152. # [00:29] <KWierso|lunch> philor: bug 822898?
  153. # [00:29] * Joins: jfkthame (jfkthame@moz-BD15DB83.cable.virginm.net)
  154. # [00:29] * Quits: dao (dao@moz-7D224C0C.superkabel.de) (Quit: Leaving.)
  155. # [00:29] * KWierso|lunch is now known as KWierso|sheriffduty
  156. # [00:31] <philor> KWierso|sheriffduty: yep
  157. # [00:31] <KWierso|sheriffduty> philor: done
  158. # [00:32] * gaye|dinner is now known as gaye
  159. # [00:32] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b159af3edf46 - Wes Kocher - Backed out 3 changesets (bug 822898) for mochitest bustage on Windows on a CLOSED TREE
  160. # [00:32] <philor> wow, the "windows slaves often get permission denied while rm'ing files" bug fell clear out of my autocomplete
  161. # [00:33] * Joins: KaIRC (robert@moz-C9DE1FFF.adsl.highway.telekom.at)
  162. # [00:33] * nthomas is now known as nthomas|away
  163. # [00:33] * Quits: KaiRo_away (robert@moz-E3D11080.adsl.highway.telekom.at) (Ping timeout)
  164. # [00:33] <@njn> philor: it would be ironic if the leaks found by valgrind-on-tbpl after fixing bug 934542 were found to be a major factor in our OOM trouble
  165. # [00:33] * Quits: bjacob (bjacob@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  166. # [00:34] <@njn> maybe not ironic, but certainly interesting
  167. # [00:34] * Joins: jdm (jdm@moz-ED0C7AC7.hinet-ip.hinet.net)
  168. # [00:34] * Quits: Boriss (Boriss@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Client exited)
  169. # [00:34] * Joins: Boriss (Boriss@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  170. # [00:34] * corey|away is now known as corey
  171. # [00:35] * Quits: Archaeopteryx (itsme@moz-F70AE4E8.cust.telecolumbus.net) (Quit: Goodbye)
  172. # [00:35] <gkw> njn: thanks for following up - no doubt we have some interesting stuff from Valgrind to look at!
  173. # [00:35] * Quits: rvitillo (vitillo@2D19BBF3.D1BEC4BB.30311652.IP) (Ping timeout)
  174. # [00:35] <@njn> gkw: yeah, several bad-looking leaks
  175. # [00:35] * Quits: blassey (blassey@moz-BBE3ABD.mv.mozilla.com) (Input/output error)
  176. # [00:35] <@njn> gkw: a small number of Memcheck:Cond errors
  177. # [00:35] <@njn> gkw: no other errors, AFAICT
  178. # [00:36] * joduinn is now known as joduinn-afk
  179. # [00:36] <philor> decoder: now https://tbpl.mozilla.org/php/getParsedLog.php?id=30724495&full=1&branch=mozilla-aurora#error0, there's something to warm and comfort your heart
  180. # [00:36] <gkw> njn: yep
  181. # [00:36] * Quits: jimm (jmathies@moz-F22D2B2A.pn.at.cox.net) (Quit: )
  182. # [00:36] * Quits: huseby (huseby@moz-A22BFFCA.tuxli.ch) (Quit: Leaving)
  183. # [00:36] <philor> "um, dunno, but it's ASan and NSS" :)
  184. # [00:36] <Jesse> njn: "Output exceeded 52428800 bytes, remaining output has been truncated" might be worrisome, check with philor
  185. # [00:36] * Quits: gerv (Instantbir@moz-8E68CF56.in-addr.arpa) (Ping timeout)
  186. # [00:37] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  187. # [00:37] * Joins: gerv (Instantbir@moz-8E68CF56.in-addr.arpa)
  188. # [00:37] <@njn> Jesse: it's just because we have so many leaks
  189. # [00:37] <@njn> Jesse: and with 50-deep stack traces, lots of leaks with the same root cause show up separately
  190. # [00:38] <Jesse> njn: can you tell it to show 50 lines when printing a stack, but group based on the top 3 lines?
  191. # [00:38] * Joins: Mossop (dtownsend@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  192. # [00:38] <@njn> Jesse: there's something like that, but in the end it's better to do full stack comparisons
  193. # [00:38] * Joins: blassey (blassey@moz-BBE3ABD.mv.mozilla.com)
  194. # [00:39] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  195. # [00:39] <khuey> glandium: I'd love to know why this error doesn't show up on tinderbox
  196. # [00:39] <@njn> Jesse: because if you do partial matches, it only shows one of the matching stacks, and sometimes the non-shown ones have useful info
  197. # [00:39] <glandium> khuey: 2010 vs 2012?
  198. # [00:39] <@njn> Jesse: and choosing the right level of stack matching is always tricky
  199. # [00:39] <Jesse> njn: ok
  200. # [00:39] * Quits: valenting (Thunderbir@6F630D40.173A6960.FB866788.IP) (Ping timeout)
  201. # [00:39] <khuey> glandium: are we using 2012 on tinderbox now?
  202. # [00:39] * whimboo is now known as whimboo|afk
  203. # [00:39] <decoder> philor: that looks kinda unhealthy
  204. # [00:39] <@njn> Jesse: having looked closely, I estimate there are only 6 distinct leaks responsible for the 100s (1000s?) of leak reports
  205. # [00:40] <@njn> Jesse: and we print ~80 lines of output for every report
  206. # [00:40] <decoder> philor: better file a bug for that and cc the nss people :)
  207. # [00:40] <glandium> khuey: no, we are using 2010, but maybe you are using 2012?
  208. # [00:40] * Quits: jonasfj (jonasfj@moz-B65AF445.hfc.comcastbusiness.net) (Ping timeout)
  209. # [00:40] <philor> decoder: sure, but it's just NSS, on a release branch, a few pushes after an NSS update
  210. # [00:40] <philor> luckily, I'm at work, and thus have an excuse not to file
  211. # [00:41] <khuey> glandium: nope
  212. # [00:41] <khuey> 2010 here too
  213. # [00:41] <RyanVM|afk> Waldo: the b2g26 scheme is what they're using going forward
  214. # [00:41] * BenWa is now known as BenWa|email
  215. # [00:41] <RyanVM|afk> so it's more clear what release the Gecko repo corresponds to
  216. # [00:42] * Quits: mt (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  217. # [00:42] * coop|buildduty is now known as coop|away
  218. # [00:42] * Quits: coop|away (Chris@moz-B65AF445.hfc.comcastbusiness.net) (Quit: coop|away)
  219. # [00:42] * Quits: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net) (Ping timeout)
  220. # [00:42] * Waldo eagerly awaits the day when version numbering will converge on m-c's version numbering
  221. # [00:42] * Quits: mdas (mdas@moz-104CC309.mv.mozilla.com) (Quit: )
  222. # [00:42] <Waldo> and the madness can stop ;-)
  223. # [00:42] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  224. # [00:42] * khuey turns out --without-intl-api
  225. # [00:43] <Waldo> khuey: hmm?
  226. # [00:43] <khuey> er
  227. # [00:43] <khuey> *on
  228. # [00:43] * Quits: feltnerm (feltnerm@9AC552E8.C69D9A6B.61C21BB7.IP) (Client exited)
  229. # [00:43] <khuey> Waldo: ICU is making my build fail!
  230. # [00:43] * Quits: ctangira (ctangira@moz-CFCC7B62.cisco.com) (Ping timeout)
  231. # [00:43] <Waldo> khuey: lies
  232. # [00:43] <Waldo> khuey: what's happening?
  233. # [00:44] <Waldo> sounds like a personal problem to me ;-)
  234. # [00:44] <khuey> [15:24:29] <khuey> 23:59.59 msvcprtd.lib(MSVCP100D.dll) : error LNK2005: "public: static double __c
  235. # [00:44] <khuey> [15:24:29] <khuey> decl std::numeric_limits<double>::infinity(void)"
  236. # [00:44] <khuey> (?infinity@?$numeric_limits@N@
  237. # [00:44] <khuey> when linking jsapi tests
  238. # [00:44] <mccr8> you are just too international, kyle
  239. # [00:44] <khuey> [15:24:30] <khuey> std@@SANXZ) already defined in js_static.lib(digitlst.obj)
  240. # [00:44] * BenWa|email is now known as BenWa
  241. # [00:44] * Quits: twi (Adium@moz-4541C8E7.cust.dsl.vodafone.it) (Quit: Leaving.)
  242. # [00:45] <Waldo> yeah, this does sound like glandium territory
  243. # [00:45] * Quits: gerv (Instantbir@moz-8E68CF56.in-addr.arpa) (Ping timeout)
  244. # [00:45] * Quits: squeakytoy (squeakytoy@moz-79070305.dynamic.se.alltele.net) (Quit: Leaving)
  245. # [00:45] <Waldo> presumably only MSVC sees this because every other compiler has something constexpr-y for this
  246. # [00:45] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/2d2a075d27ae - Lucas Rocha - Bug 883500 - Update query to avoid bookmarks with null URLs. r=mfinkle, a=lsblakk
  247. # [00:45] * jlund is now known as jlund|afk
  248. # [00:46] <khuey> well it seems to work on tinderbox ...
  249. # [00:46] <Waldo> khuey: note that you're better off using mozilla::PositiveInfinity() in any case; stdc++ has various issues with compilers, motivating the FloatingPoint.h header
  250. # [00:47] <glandium> Waldo: it's ICU code
  251. # [00:47] <Waldo> guh
  252. # [00:48] <khuey> yes hence the ICU breaks my build bit ...
  253. # [00:48] * Quits: bholley (bholley@moz-BBE3ABD.mv.mozilla.com) (Quit: bholley)
  254. # [00:49] * Waldo has no idea how to use the stdc++ stuff defined in the js lib used elsewhere
  255. # [00:49] <philor> huh, why would ftp.m.o be busy and denying us our tests.zips?
  256. # [00:49] <philor> not like anything happened today, did it?
  257. # [00:49] * Joins: lmandel (lmandel@moz-76CE9D51.cable.teksavvy.com)
  258. # [00:51] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  259. # [00:51] * Quits: ericjung__ (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Quit: Leaving)
  260. # [00:51] * Quits: ericjung_ (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Quit: Leaving)
  261. # [00:52] * Joins: briansmith (briansmith@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  262. # [00:52] * Joins: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net)
  263. # [00:54] * Quits: lmandel (lmandel@moz-76CE9D51.cable.teksavvy.com) (Quit: lmandel)
  264. # [00:55] * Joins: feltnerm (feltnerm@9AC552E8.C69D9A6B.61C21BB7.IP)
  265. # [00:55] <Waldo> okay, we have way too many branches, and I have way too many security-sensitive bugs in flight, for me to keep track of it :-\
  266. # [00:55] <KWierso|sheriffduty> philor: only for tests running on ec2 slaves, no?
  267. # [00:55] * Joins: bwc (Adium@8D1F0B03.1BF25013.E36C940F.IP)
  268. # [00:56] * Joins: darktrojan (geoff@moz-D52D0A90.dsl.telstraclear.net)
  269. # [00:56] * jorendorff is now known as jorendorff_away
  270. # [00:56] * Joins: bholley (bholley@moz-BBE3ABD.mv.mozilla.com)
  271. # [00:57] * Quits: bwc1 (Adium@A1384613.1BF25013.E36C940F.IP) (Ping timeout)
  272. # [00:57] <philor> KWierso|sheriffduty: I can still work up a claim that inside the dc we use whatever vip.yadda.ftp thing it is that gets us first class service, and from ec2 we fight for connections with the unwashed, at least until someone corrects me
  273. # [00:57] <glandium> KWierso|sheriffduty: can we schedule a b2g-inbound merge?
  274. # [00:57] <philor> and at 4pm Pacific during a releng work week, who's going to correct me?
  275. # [00:57] <KWierso|sheriffduty> sg2m, philor
  276. # [00:58] * Quits: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP) (Quit: Leaving.)
  277. # [01:00] * Quits: bhackett (Mibbit@moz-7D0AD4DD.sub-70-208-4.myvzw.com) (Quit: http://www.mibbit.com ajax IRC Client)
  278. # [01:00] <philor> KWierso|sheriffduty: oh, look, somebody else broke fx-team
  279. # [01:01] <philor> nothing I love more than overlapping bustages
  280. # [01:01] <philor> UNLESS IT'S KILLING DEVELOPERS
  281. # [01:01] <philor> um, I mean, puppies and flowers and sunny days
  282. # [01:01] <philor> I LIKE TO KILL THEM TOO
  283. # [01:01] <darktrojan> good day, philor?
  284. # [01:01] <philor> Monday
  285. # [01:02] <darktrojan> oh
  286. # [01:03] <philor> though yelling about killing people who land overlapping bustage is same thing we do every night, Pinky
  287. # [01:04] <KWierso|sheriffduty> philor: would this new one be bug 929766?
  288. # [01:04] <KWierso|sheriffduty> I'm having a hard time blaming anything else
  289. # [01:05] * Joins: bdahl_ (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  290. # [01:05] <philor> KWierso|sheriffduty: I sure hope it is
  291. # [01:05] <philor> let's have a little bustage-sorting closure over there, too, though
  292. # [01:06] * Quits: bdahl_ (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  293. # [01:06] <KWierso|sheriffduty> also sounds good to me :)
  294. # [01:06] * Quits: retornam (retornam@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving...)
  295. # [01:06] <philor> 3279 pending/2010 running
  296. # [01:07] <Waldo> looks like someone's got a case of the Mondays!
  297. # [01:07] * Quits: @ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  298. # [01:08] * Joins: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP)
  299. # [01:08] <philor> sweet, I think it's a triple b-c bustage pileon
  300. # [01:08] * Quits: Gijs (gijs@moz-C11B0461.dsl.alice.nl) (Quit: poof)
  301. # [01:08] <Waldo> RyanVM|afk: I think I addressed the last bit of the formerly-needinfo'd bug, please tell me at your leisure if I'm wrong :-)
  302. # [01:08] * Quits: Mossop (dtownsend@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: This computer has gone to sleep)
  303. # [01:08] * Quits: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Ping timeout)
  304. # [01:08] <khuey> glandium: yeah, with --without-intl-api I can build
  305. # [01:08] <Waldo> philor: this means I'm good to land a patch now, right?
  306. # [01:08] <glandium> khuey: what does your mozconfig look like?
  307. # [01:08] * Joins: tonymec|away (tonymec@moz-22E64852.adsl-dyn.isp.belgacom.be)
  308. # [01:09] * Joins: Mossop (dtownsend@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  309. # [01:09] <philor> oh, maybe not, shadereditor doesn't get to run on Linux, that could be just one bustage
  310. # [01:09] * KWierso|sheriffduty thwaps waldo
  311. # [01:09] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Quit: jib)
  312. # [01:09] <philor> Waldo: on your own twig? you bet!
  313. # [01:09] <philor> that is what you kids call it these days, landing a patch on your twig, isn't it?
  314. # [01:09] <Waldo> some men just want to watch the tree burn
  315. # [01:10] <froydnj> "twigging"
  316. # [01:10] * Waldo conses up the meme
  317. # [01:10] * Quits: tonymec|away (tonymec@moz-22E64852.adsl-dyn.isp.belgacom.be) (Ping timeout)
  318. # [01:11] <khuey> glandium: --enable-debug --disable-optimize
  319. # [01:12] <glandium> khuey: disable-optimize might be the problem
  320. # [01:12] <khuey> yeah, maybe
  321. # [01:12] <philor> nice, bustage on beta
  322. # [01:12] <philor> and Waldo on esr24, so we know what that'll look like shortly
  323. # [01:12] <philor> is there anything that nobody has yet broken today?
  324. # [01:13] * Quits: bholley (bholley@moz-BBE3ABD.mv.mozilla.com) (Quit: bholley)
  325. # [01:13] <Waldo> huh, I built that patch locally
  326. # [01:14] <Waldo> philor: wait, where am I burning? not seeing it on https://tbpl.mozilla.org/?tree=Mozilla-Esr24
  327. # [01:14] <philor> well played, made me look
  328. # [01:14] <glandium> philor: i haven't broken the build today, but i'm ready to
  329. # [01:14] <philor> ah, I made *you* look!
  330. # [01:14] * Quits: loadbang (simon@moz-284E462E.range86-169.btcentralplus.com) (Quit: loadbang)
  331. # [01:14] <Waldo> scumbag philor trolls scumbag Waldo :-(
  332. # [01:14] * Quits: drno (drno@moz-5B507345.static.sonic.net) (Ping timeout)
  333. # [01:15] <Waldo> khuey: oh, that -- bug 899948 I think
  334. # [01:15] <glandium> KWierso|sheriffduty: can we schedule a b2g-inbound merge?
  335. # [01:15] <Waldo> khuey: which I should really poke at soon, after I fix actual bugs on my plate :-|
  336. # [01:16] <KWierso|sheriffduty> glandium: probably when the trees reopen :)
  337. # [01:16] <KWierso|sheriffduty> is there a deadline for this?
  338. # [01:17] * Joins: tonymec|away (tonymec@1FAE6335.A54F7B7E.277517C1.IP)
  339. # [01:17] <Waldo> bleh, quickmeme requires facebook login now? :-\
  340. # [01:17] * ewong|away is now known as ewong
  341. # [01:18] <jhammel> make a meme for it :P
  342. # [01:18] <khuey> glandium: well according to comment 0 --enable-debug --disable-optimize used to work
  343. # [01:18] <khuey> and that's no longer the case
  344. # [01:19] <glandium> khuey: comment 0 of what?
  345. # [01:19] * Joins: jgilbert_ (jgilbert@moz-BBE3ABD.mv.mozilla.com)
  346. # [01:19] * Quits: jgilbert_ (jgilbert@moz-BBE3ABD.mv.mozilla.com) (Input/output error)
  347. # [01:19] * Quits: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net) (Ping timeout)
  348. # [01:20] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  349. # [01:20] * Quits: sfoster (sfoster@moz-37AA60E3.hsd1.wa.comcast.net) (Quit: Leaving)
  350. # [01:21] * Joins: lduros (user@moz-418FD747.phlapa.fios.verizon.net)
  351. # [01:21] <glandium> KWierso|sheriffduty: can we merge m-c, m-i and b2g-i when the tree reopens?
  352. # [01:21] <KWierso|sheriffduty> glandium: yes?
  353. # [01:21] <KWierso|sheriffduty> glandium: what cset in particular do you need merged around
  354. # [01:21] <glandium> KWierso|sheriffduty: good. I'd like to land on top of that, and have my landing merged again
  355. # [01:22] * Quits: darktrojan (geoff@moz-D52D0A90.dsl.telstraclear.net) (Quit: darktrojan)
  356. # [01:23] * Joins: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  357. # [01:23] * Quits: aklotz (Thunderbir@moz-935DE219.cg.shawcable.net) (Quit: aklotz)
  358. # [01:24] * Quits: Mossop (dtownsend@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving)
  359. # [01:25] <glandium> KWierso|sheriffduty: my landing changes 883 files, so i want to avoid merge problems by having everything merged before and after the landing
  360. # [01:26] <glandium> 883 files changed, 842 insertions(+), 4528 deletions(-)
  361. # [01:26] <KWierso|sheriffduty> glandium: yikes
  362. # [01:27] * Quits: tonymec|away (tonymec@1FAE6335.A54F7B7E.277517C1.IP) (Input/output error)
  363. # [01:28] <KWierso|sheriffduty> philor: what'd be the best way to land glandium's stuff? just close all the integration branches and merge things around, land closed, merge that around?
  364. # [01:29] * Joins: mt (Adium@moz-BBE3ABD.mv.mozilla.com)
  365. # [01:32] * Quits: sfink (chatzilla@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  366. # [01:32] <glandium> KWierso|sheriffduty: fwiw, i'm testing my queue on birch, and i merged m-i and b2g-inbound there
  367. # [01:33] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  368. # [01:35] * Quits: jrm2k6 (jrm2k6@moz-7278A08.catv.broadband.hu) (Client exited)
  369. # [01:36] * Joins: tonymec|away (tonymec@moz-7038153B.adsl-dyn.isp.belgacom.be)
  370. # [01:36] <khuey> glandium: comment 0 of Waldos bug
  371. # [01:36] * khuey meant to direct that at Waldo
  372. # [01:36] <khuey> Waldo: ^
  373. # [01:37] * Quits: KWierso|sheriffduty (chatzilla@moz-3D85277A.hsd1.ca.comcast.net) (Ping timeout)
  374. # [01:37] * Joins: KWierso|sheriffduty (chatzilla@moz-3D85277A.hsd1.ca.comcast.net)
  375. # [01:37] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  376. # [01:38] <KWierso|sheriffduty> wonderful time for my network connection to drop me :\
  377. # [01:38] <philor> KWierso|sheriffduty: yeah, exactly
  378. # [01:38] <philor> by which I mean "merge everything to m-c, land him there, merge around," not "have your connection drop you" :)
  379. # [01:39] * Joins: loadbang (simon@moz-284E462E.range86-169.btcentralplus.com)
  380. # [01:39] <philor> assuming you can somehow get everything into mergeable state
  381. # [01:39] <KWierso|sheriffduty> yeah
  382. # [01:39] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  383. # [01:41] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Quit: lizzard)
  384. # [01:41] * KWierso|sheriffduty wonders if RyanVM|afk is around with a beta tree to back out m_kato for that xpcshell bustage
  385. # [01:42] * corey is now known as corey|away
  386. # [01:43] <WeirdAl> OS.File question: I'm looking for the right way to recursively create a folder (since bug 934283 isn't fixed)... https://pastebin.mozilla.org/3631557 is what I've got so far. Wondering what I need to do to go beyond that.
  387. # [01:44] * Parts: jonco (Adium@moz-BBE3ABD.mv.mozilla.com)
  388. # [01:44] * Quits: mbrubeck (mbrub_000@moz-45568FC0.hsd1.wa.comcast.net) (Quit: Leaving.)
  389. # [01:45] * Joins: twi (Adium@moz-4541C8E7.cust.dsl.vodafone.it)
  390. # [01:45] * Joins: mbrubeck (mbrub_000@moz-45568FC0.hsd1.wa.comcast.net)
  391. # [01:46] * Quits: jimb (user@125EF623.B2666F0E.66399531.IP) (Ping timeout)
  392. # [01:46] * Joins: lizzard (ehenry@67D7B240.2D024FDB.284344F5.IP)
  393. # [01:47] <glandium> philor: as in non-busted, or as in handle the conflicts?
  394. # [01:47] <KWierso|sheriffduty> non-busted
  395. # [01:47] * BenWa is now known as BenWa|email
  396. # [01:47] * Quits: lizzard (ehenry@67D7B240.2D024FDB.284344F5.IP) (Quit: lizzard)
  397. # [01:48] * Joins: ehsan (ehsan@moz-C48D29C4.cable.teksavvy.com)
  398. # [01:48] * ChanServ sets mode: +o ehsan
  399. # [01:49] <philor> sufficiently-backed-out
  400. # [01:49] <philor> and given the constant bustage-on-bustage-on-bustage today, sufficiently-backed-out unfortunately means sufficiently-done-testing-on-the-tip-backout
  401. # [01:50] <glandium> philor: well, that's good, that leaves time for birch to build and run tests too :)
  402. # [01:51] * Joins: retornam (retornam@moz-6F237ED8.hsd1.ca.comcast.net)
  403. # [01:52] * Joins: Mossop (dtownsend@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  404. # [01:52] * Quits: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net) (Ping timeout)
  405. # [01:53] * Quits: lduros (user@moz-418FD747.phlapa.fios.verizon.net) (Client exited)
  406. # [01:53] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  407. # [01:54] * Quits: blassey (blassey@moz-BBE3ABD.mv.mozilla.com) (Input/output error)
  408. # [01:55] * Quits: jfkthame (jfkthame@moz-BD15DB83.cable.virginm.net) (Quit: Leaving)
  409. # [01:56] * bjacob wonders if landing a small unified-sources patch on b2g-inbound would be pushing it
  410. # [01:57] * philor ponders how to quantify the cost of tree closings
  411. # [01:57] <glandium> bjacob: please refrain from that
  412. # [01:57] <bjacob> glandium: ok ok :)
  413. # [01:57] * Quits: glosoli (glosoli@moz-72C60525.static.zebra.lt) (Quit: Textual IRC Client: www.textualapp.com)
  414. # [01:57] <glandium> bjacob: because every single UNIFIED_SOURCES landing has created conflicts with my queue
  415. # [01:58] <bjacob> glandium: haha
  416. # [01:58] <philor> oh, is that why you've been stabbing that ehsan voodoo doll all day long?
  417. # [01:58] <@ehsan> ?
  418. # [01:58] <glandium> philor: s/ehsan/mercurial authors/
  419. # [01:58] * dew1 is now known as dew
  420. # [01:58] <ckerschb> I do have a channel which does not have an owner (I know it's a channel for an XMLHttpRequest though). Is there a possibility to query the owner/principal for that channel?
  421. # [01:58] <philor> them too
  422. # [01:58] * Joins: Yuji (yuji.saek@moz-5F2B95C0.stny.res.rr.com)
  423. # [01:59] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  424. # [01:59] <Yuji> This the IRC/channel to get in contact with the devs of the new 28.0a1 (2013-11-18) build?
  425. # [01:59] <mbrubeck> Yuji: Yes, or over in #fx-team
  426. # [01:59] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  427. # [01:59] <Yuji> Ah okay. ...What happened with the GUI? Curious where Firefox is going..
  428. # [02:00] <mbrubeck> Yuji: There's a blog post about it here: https://blog.mozilla.org/ux/2013/11/australis-is-landing-in-firefox-nightly/
  429. # [02:00] <Yuji> Any quick about:config var I can use to undo it?
  430. # [02:00] * deian|away is now known as deian
  431. # [02:01] <mbrubeck> Yuji: No, though there are add-ons to change it in specific ways (and there will probably be more of those within a few weeks). Any particular change(s) you want to revert?
  432. # [02:01] * Joins: tonymec (tonymec@moz-7038153B.adsl-dyn.isp.belgacom.be)
  433. # [02:01] <philor> make it like it was!!!1!
  434. # [02:01] <mbrubeck> quiet, you
  435. # [02:01] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  436. # [02:01] <Yuji> Well, respectfully, the entire thing.
  437. # [02:01] * philor checks how many addons already have that name
  438. # [02:02] * Quits: jhammel (jhammel@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: make a meme for it)
  439. # [02:02] <philor> see, told you!
  440. # [02:02] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  441. # [02:02] <Yuji> I appreciate free software...but Chrome is Chrome.
  442. # [02:02] * Joins: drno (drno@moz-8C24FDC2.hsd1.ca.comcast.net)
  443. # [02:02] <Yuji> And well...I appreciated Firefox as it was, most of all.
  444. # [02:02] <heycam> browser.gesture.swipe.{left,right}=""
  445. # [02:02] * heycam relaxes
  446. # [02:02] <Yuji> I have about 70 addons now to keep Firefox one way at the moment. X_x;
  447. # [02:02] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  448. # [02:03] * Quits: till (till@moz-DC8564AF.adsl.alicedsl.de) (Quit: night)
  449. # [02:03] * Quits: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net) (Quit: damons)
  450. # [02:03] * Quits: afwang (nooknook@moz-CFE05FEE.hsd1.ca.comcast.net) (Ping timeout)
  451. # [02:03] <WeirdAl> o_O
  452. # [02:03] <Yuji> About maybe 25 are specific to Firefox keeping just its look.
  453. # [02:03] <mbrubeck> You might want to switch from Nightly to the Aurora or Beta channel so you can wait for addon/theme authors to update to support the new version, and for addons like https://addons.mozilla.org/en-US/firefox/addon/classicthemerestorer/ to be more complete.
  454. # [02:03] * Quits: tessarakt3 (jens@moz-B4E4C822.dip0.t-ipconnect.de) (Ping timeout)
  455. # [02:04] <@dolske> philor++
  456. # [02:04] <Yuji> I've considered meanwhile actually using...*choke up* Chrome..
  457. # [02:04] <deian> lsblakk: ping
  458. # [02:04] <mbrubeck> I also recommend trying out the new UI for a while (maybe in a new profile) and the new built-in customization tools. You might actually end up liking it...
  459. # [02:04] * Quits: tonymec (tonymec@moz-7038153B.adsl-dyn.isp.belgacom.be) (Connection reset by peer)
  460. # [02:04] * Quits: tonymec|away (tonymec@moz-7038153B.adsl-dyn.isp.belgacom.be) (Connection reset by peer)
  461. # [02:05] <derf> Yuji: Use Seamonkey. It doesn't change very much.
  462. # [02:05] <Yuji> I don't have a status bar, add-on bar, layout is destroyed actually.
  463. # [02:05] * Quits: Mossop (dtownsend@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: This computer has gone to sleep)
  464. # [02:05] <Yuji> Ah, Chrome doesn't have half my addons. Rather disappointing.
  465. # [02:05] <@dolske> derf: I'm sticking with Netscape 4.77
  466. # [02:05] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  467. # [02:06] * heycam is now known as heycam|away
  468. # [02:06] * Quits: loadbang (simon@moz-284E462E.range86-169.btcentralplus.com) (Quit: loadbang)
  469. # [02:08] * Joins: afwang (nooknook@moz-CFE05FEE.hsd1.ca.comcast.net)
  470. # [02:08] <philor> Use SeaMonkey: Its Tree Has Been Closed Since Last May
  471. # [02:08] * Quits: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com) (Quit: juanb)
  472. # [02:08] <philor> wait, maybe I should switch
  473. # [02:08] <Yuji> They have x64 builds?
  474. # [02:08] <glandium> decoder: ping
  475. # [02:08] * Quits: karl (karl@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  476. # [02:09] * Quits: vd (vd@moz-7A53EEF0.ddns.cablebg.net) (Ping timeout)
  477. # [02:09] * Quits: bent (chatzilla@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  478. # [02:09] <Yuji> Around version 24 I wondered as to where Firefox is heading..but always an add-on would 'fix' an issue. I've lately considered just taking 27 and forking my own builds, stripping out a lot of things and returning it to the mid-2000s layouts.
  479. # [02:09] * Joins: vd (vd@moz-7A53EEF0.ddns.cablebg.net)
  480. # [02:09] <Yuji> Personally I believed Firefox's layout shouldn't have changed the way it did, merely performance should've been worked on.
  481. # [02:10] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  482. # [02:10] * Quits: teoli (teoli@moz-6390FC96.range86-140.btcentralplus.com) (Input/output error)
  483. # [02:12] * Joins: josh (josh@moz-6FB23C25.hvc.res.rr.com)
  484. # [02:12] * Quits: drno (drno@moz-8C24FDC2.hsd1.ca.comcast.net) (Quit: drno)
  485. # [02:12] <Yuji> Takes me about 5 whole seconds on my rig to bring up a home page from cold start. AMD FX-8350 @ 5Ghz, 32GB DDR3 2,400, 16TB (4 x 4TB) 128MBps sequential. Meh.
  486. # [02:12] * Quits: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Instantbird 1.5a1pre -- http://www.instantbird.com)
  487. # [02:12] * Joins: dholbert___ (bzlandfill@moz-7B0110AD.mv.mozilla.com)
  488. # [02:13] * Quits: dholbert___ (bzlandfill@moz-7B0110AD.mv.mozilla.com) (Quit: CGI:IRC (EOF))
  489. # [02:13] * Joins: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  490. # [02:13] <KWierso|sheriffduty> Yuji: what about when you disable those 70 extensions?
  491. # [02:14] <Yuji> Fast but...well, unusable layout and quite unpleasant to the eyes.
  492. # [02:15] * Joins: sfoster (sfoster@moz-961AB6F2.hsd1.or.comcast.net)
  493. # [02:15] * Quits: nbp (pierron@moz-7EB03C5F.fbx.proxad.net) (Ping timeout)
  494. # [02:16] <decoder> glandium: pong
  495. # [02:16] * khuey is now known as khuey|away
  496. # [02:16] <Yuji> Woops, 40*.
  497. # [02:17] * Joins: tonymec|away (tonymec@moz-B618D1A9.adsl-dyn.isp.belgacom.be)
  498. # [02:17] <Yuji> Meant 40 there, not 70. Switching back and forth, OS dev in ASM, mind is wrapped around some timing code.
  499. # [02:17] * Quits: naveed (naveed@moz-BBE3ABD.mv.mozilla.com) (Input/output error)
  500. # [02:17] <glandium> decoder: found my answer. Can you quicky r? https://diff.pastebin.mozilla.org/3631732 ? (this is on top of bug 938526)
  501. # [02:17] <glandium> decoder: wrong bug number, it's on top of bug 938437
  502. # [02:17] * Joins: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  503. # [02:19] <bz_dinner> mmm
  504. # [02:19] <bz_dinner> So you can have the old layout but slow
  505. # [02:19] * Joins: mikeratcliffe (Adium@AAEB493E.A29E579C.71D4DE87.IP)
  506. # [02:19] <bz_dinner> or the new one but fast
  507. # [02:19] <decoder> glandium: and why would we want to blacklist this?
  508. # [02:19] <bz_dinner> But you say that work wasn't on performance
  509. # [02:19] <Yuji> Not with the new Australis "refresh."
  510. # [02:19] * Quits: cpeterson (cpeterson@moz-BBE3ABD.mv.mozilla.com) (Input/output error)
  511. # [02:19] * bz_dinner is not convinced
  512. # [02:19] * bz_dinner is now known as bz
  513. # [02:19] * KWierso|sheriffduty thought the "mmm" was for the
  514. # [02:19] <glandium> decoder: because what's between start and end is stuff the linker puts in the same section
  515. # [02:19] <bz> Then again, I know for a fact there was performance work. ;)
  516. # [02:19] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  517. # [02:20] <KWierso|sheriffduty> "_dinner" of bz_dinner
  518. # [02:20] <bz> KWierso|sheriffduty: lol
  519. # [02:20] <glandium> decoder: from the C++ pov, it *is* a buffer overflow. In practice it isn't.
  520. # [02:20] * Joins: Earth4 (cht-zla_un@moz-4DA476A6.static.snfr.nc.charter.com)
  521. # [02:20] <decoder> glandium: i am very careful with blacklisting anything asan reports. asan does not produce false positives.
  522. # [02:20] * Joins: Mossop (dtownsend@moz-264E1FDC.static.wiline.com)
  523. # [02:20] <Yuji> bz: Not enough in my case.
  524. # [02:20] <decoder> is there no way to do this properly?
  525. # [02:21] <glandium> decoder: no
  526. # [02:21] * Joins: drno (drno@moz-8C24FDC2.hsd1.ca.comcast.net)
  527. # [02:21] <bz> Yuji: <shrug>
  528. # [02:21] <Earth4> When will browsercomps start building again? bug 939557
  529. # [02:21] <bz> njn: got a sec?
  530. # [02:21] * Quits: jammink (textual@moz-BBE3ABD.mv.mozilla.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
  531. # [02:21] <bz> hmm
  532. # [02:21] * Joins: dbaron (dbaron@moz-99690620.hinet-ip.hinet.net)
  533. # [02:21] * ChanServ sets mode: +ao dbaron dbaron
  534. # [02:21] <bz> no njn
  535. # [02:21] <decoder> glandium: okay, then r+
  536. # [02:22] <glandium> decoder: it's low-level black magic, so there's really no way to make C++ happy
  537. # [02:22] <Yuji> Trying not to get flamed, eh.
  538. # [02:22] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Quit: Gone to save the world!)
  539. # [02:22] <decoder> in general id like to avoid the "in practice it's not a problem"-idiom. but in this case if there is no other solution, that seems reasonable
  540. # [02:22] <glandium> decoder: (and it's a function called only once, at initialization)
  541. # [02:22] <decoder> ok
  542. # [02:22] * Quits: bwc (Adium@8D1F0B03.1BF25013.E36C940F.IP) (Quit: Leaving.)
  543. # [02:22] * Quits: tH (Rob@cpc4-seac20-2-0-cust858.7-2.cable.virginm.net) (Ping timeout)
  544. # [02:23] * Joins: bwc (Adium@8D1F0B03.1BF25013.E36C940F.IP)
  545. # [02:23] <glandium> decoder: note it's not a problem in practice because the entire code of that function relies on it not being a problem in practice.
  546. # [02:24] <Yuji> Okay I'll just say it...Firefox looks like some kind of data telemetry is gearing development towards a user-base of elderly and logic-handicapped people who can't find a button and it needs to be .5x.5in in size and candied up swith smooth edges to give an illusion of "better/newer/wut."
  547. # [02:24] * Quits: @dbaron (dbaron@moz-99690620.hinet-ip.hinet.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  548. # [02:24] * BenWa|email is now known as BenWa
  549. # [02:24] <Yuji> I dunno, how I feel.
  550. # [02:24] <glandium> decoder: essentially, there's a section the linker creates that starts at the address of start_kPStaticModules and ends at the address of end_kPStaticModules
  551. # [02:25] * Quits: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com) (Quit: mccr8)
  552. # [02:25] <decoder> glandium: i mean, you can do a lot of stuff with the "it's not a problem in practice" thing.. not only in this case
  553. # [02:25] <decoder> you can declare some stack variables and say they must be next to each other^^
  554. # [02:25] <glandium> decoder: sure, but i'm not asking for more than this case ;)
  555. # [02:25] <decoder> yea :D
  556. # [02:25] <KWierso|sheriffduty> philor: unless the PGO jobs on inbount tip-1 shows anything broken, I think we can call inbound fixed and get it merged around
  557. # [02:26] <decoder> glandium: okay. but only because soon it's xmas
  558. # [02:26] * Joins: tonymec (tonymec@moz-B618D1A9.adsl-dyn.isp.belgacom.be)
  559. # [02:26] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  560. # [02:27] <tbsaunde> decoder: there's also a difference between this isn'g necessarily safe in c++ but it is safe given things we know about a compiler
  561. # [02:27] <tbsaunde> err, that wasn't the right way to say that
  562. # [02:28] * Quits: bajaj1 (Adium@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  563. # [02:28] * Joins: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com)
  564. # [02:28] <tbsaunde> what I mean is there's "the rules of c++ require this to be ok" "things this compiler gives us require this to be ok" and "in practice this safe because idono"
  565. # [02:28] <glandium> decoder: arguably, there might be one way to do it without disabling asan for that function, by defining start_kPStaticModules to have an arbitrary length. But i don't think this would be better
  566. # [02:29] * Joins: dbaron (dbaron@moz-99690620.hinet-ip.hinet.net)
  567. # [02:29] * ChanServ sets mode: +ao dbaron dbaron
  568. # [02:29] <glandium> tbsaunde: there's also "and if it fails, firefox would blow up at startup anyways"
  569. # [02:29] <tbsaunde> glandium: I actually sort of think asan should understand section attributes and not flag this
  570. # [02:29] <glandium> s/fails/were a problem/
  571. # [02:29] * Joins: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net)
  572. # [02:29] <tbsaunde> yeah, that too :)
  573. # [02:30] * Joins: juanb (jbecerra@moz-F1012875.hsd1.ca.comcast.net)
  574. # [02:30] <glandium> tbsaunde: technically, asan is right, the code is doing a buffer overflow
  575. # [02:30] <Yuji> Any resolution of flash player objects crashing (all tabs) when any are right-clicked? x64 builds, existent since 26 I think. Tried finding a bug report about it but eh, pain navigating pretty buttons on site.
  576. # [02:31] * Quits: Mossop (dtownsend@moz-264E1FDC.static.wiline.com) (Quit: This computer has gone to sleep)
  577. # [02:31] <KWierso|sheriffduty> philor: fx-team's looking decent, too, pending pgo stuff
  578. # [02:31] <bz> Yuji: have you looked into using lynx?
  579. # [02:31] * Quits: mmc|laptop (mchew@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: mmc|laptop)
  580. # [02:31] * Quits: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner_)
  581. # [02:31] <bz> Yuji: Then you wouldn't have to deal with the pretty buttons on the site
  582. # [02:31] * Joins: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  583. # [02:31] <reuben> unless you use helvetica
  584. # [02:31] <Yuji> Not really one for consoles. :]
  585. # [02:32] * Quits: schien (anonymous@moz-853B369C.dynamic.hinet.net) (Ping timeout)
  586. # [02:32] <Yuji> Terminals, eh whatever.
  587. # [02:32] <tbsaunde> glandium: so how do you actually get the start and end symbols to be where you want btw?
  588. # [02:32] <glandium> tbsaunde: linker ordering
  589. # [02:32] <reuben> Yuji: you should just file a bug, if there's an existing one people will mark it as a duplicate
  590. # [02:32] * Quits: AaronMT (AaronMT@moz-5DF3A271.cpe.net.cable.rogers.com) (Quit: Textual IRC Client: www.textualapp.com)
  591. # [02:33] <glandium> tbsaunde: that is, the start symbol is in the first object linked, and the end symbol in the last
  592. # [02:33] * Joins: schien (anonymous@moz-99690620.hinet-ip.hinet.net)
  593. # [02:33] * Quits: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Input/output error)
  594. # [02:33] * Quits: bwc (Adium@8D1F0B03.1BF25013.E36C940F.IP) (Quit: Leaving.)
  595. # [02:34] * Yuji tries to find a way to bring back the title bar.
  596. # [02:34] * Quits: vd (vd@moz-7A53EEF0.ddns.cablebg.net) (Ping timeout)
  597. # [02:34] <tbsaunde> yeah, it wasn't clear to me from the patch those objects got those positions
  598. # [02:34] * Joins: vd (vd@moz-7A53EEF0.ddns.cablebg.net)
  599. # [02:35] * Joins: bwc (Adium@8D1F0B03.1BF25013.E36C940F.IP)
  600. # [02:35] * Joins: aja (Instantbir@E3021E12.A2BBCAA5.7880DB15.IP)
  601. # [02:36] <mbrubeck> Yuji: Have you tried https://addons.mozilla.org/en-US/firefox/addon/classicthemerestorer/ yet?
  602. # [02:36] <rnewman> anybody already working on the beta backout?
  603. # [02:36] <mbrubeck> It's brand new, so I'm not sure it does everything, but I'm sure the author would appreciate testing/feedback.
  604. # [02:36] <rnewman> KWierso|sheriffduty?
  605. # [02:36] <Yuji> I tried to search for it earlier, wasn't found.
  606. # [02:36] <KWierso|sheriffduty> rnewman: I don't have a beta tree handy on this computer yet :(
  607. # [02:37] * Quits: billm (billm@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving)
  608. # [02:37] <rnewman> OK, I'll do it
  609. # [02:37] <KWierso|sheriffduty> rnewman: was hoping to crowdsource this :P
  610. # [02:37] <KWierso|sheriffduty> thanks
  611. # [02:37] * Joins: allstarschh (allstarsch@moz-99690620.hinet-ip.hinet.net)
  612. # [02:37] <mbrubeck> you can pull/push to/from beta using any local mozilla-centralish tree...
  613. # [02:38] * Quits: mt (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  614. # [02:38] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/266f8698dbb8 - Richard Newman - Backed out changeset a14c36a25b92 (bug 935499) for xpcshell test failures on a CLOSED TREE.
  615. # [02:38] <rnewman> see gps's blog
  616. # [02:38] * Quits: @ehsan (ehsan@moz-C48D29C4.cable.teksavvy.com) (Quit: vanished into thin air...)
  617. # [02:38] * geekboy is now known as geekboy|afk
  618. # [02:38] <mbrubeck> (though if you are also building from that tree it can screw with timestamps and cause a bunch of useless rebuilding)
  619. # [02:38] <rnewman> can someone leave the bug comment, or add me to the CC list for Bug 935499
  620. # [02:38] * Joins: tH (Rob@cpc4-seac20-2-0-cust858.7-2.cable.virginm.net)
  621. # [02:38] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  622. # [02:38] * Quits: bwc (Adium@8D1F0B03.1BF25013.E36C940F.IP) (Quit: Leaving.)
  623. # [02:38] * Quits: mikeratcliffe (Adium@AAEB493E.A29E579C.71D4DE87.IP) (Quit: Leaving.)
  624. # [02:38] <KWierso|sheriffduty> rnewman: I can do that
  625. # [02:38] <KWierso|sheriffduty> thanks for the backout :)
  626. # [02:39] <rnewman> of course
  627. # [02:39] <Yuji> Apparently CTR doesn't fix the issue with the menu being the title bar, also brings the orange ugly back. Disabling the orange button causes a padding issue, the menu then is offset incorrectly.
  628. # [02:39] * Joins: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  629. # [02:40] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  630. # [02:40] <@dolske> Yuji: this isn't really a user support channel, you'd be better off in #firefox or #extdev.
  631. # [02:41] * heycam|away is now known as heycam
  632. # [02:41] <froydnj> ehsan: I appreciate your sympathies!
  633. # [02:41] <Yuji> Curious who and what made the decision of Australis.
  634. # [02:41] * Quits: bnicholson (bnicholson@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  635. # [02:41] <reuben> it was dolske. dolske did it.
  636. # [02:42] <@dolske> please. the UX and front-end team helped a little bit too (just a little bit).
  637. # [02:42] * Quits: abr (abr@890E5A54.1BF25013.E36C940F.IP) (Ping timeout)
  638. # [02:43] <fabrice> dolske: any idea why I can't remove the facebook icon from the toolbar when customizing?
  639. # [02:43] <fabrice> (same with the "share" button btw)
  640. # [02:43] <Yuji> >_> What data validated the decision? A vote? Users or developers?
  641. # [02:43] * khuey|away is now known as khuey
  642. # [02:43] * Parts: bz (bzbarsky@moz-EEFF43A9.bstnma.fios.verizon.net)
  643. # [02:43] * Quits: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Quit: Leaving)
  644. # [02:43] * Joins: bz (bzbarsky@moz-EEFF43A9.bstnma.fios.verizon.net)
  645. # [02:43] * ChanServ sets mode: +o bz
  646. # [02:43] * Joins: abr (abr@moz-853DA4DB.eug.clearwire-dns.net)
  647. # [02:44] * Joins: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  648. # [02:44] * @bz regains his powers
  649. # [02:44] <@dolske> mmmm, the social button is special. hmm. I don't see a bug on that though.
  650. # [02:44] * Quits: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net) (Ping timeout)
  651. # [02:45] * @bz turns off updates until we sort that out
  652. # [02:45] * Quits: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net) (Quit: damons)
  653. # [02:45] <@bz> mmm
  654. # [02:45] <@bz> tree wasn't open for long, eh?
  655. # [02:45] <glandium> decoder: would this comment work better for you? https://pastebin.mozilla.org/3631847
  656. # [02:46] * Quits: abr (abr@moz-853DA4DB.eug.clearwire-dns.net) (Quit: AFK)
  657. # [02:47] <KWierso|sheriffduty> philor: which of the two patches in jimm's fx-team push broke metro-mochitests, in your opinion?
  658. # [02:47] * Joins: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net)
  659. # [02:47] <khuey> KWierso|sheriffduty: back them both out, move on with life?
  660. # [02:47] * Quits: gkw (fuzz2lin@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  661. # [02:47] <KWierso|sheriffduty> khuey: works for me
  662. # [02:48] <Yuji> mbrubeck, bz: Thanks for the information, but Australis just isn't for me and the add-ons aren't the same. Again, thanks though.
  663. # [02:48] * Quits: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Quit: Leaving)
  664. # [02:48] <@bz> khuey: so fwiw
  665. # [02:48] <mbrubeck> You're welcome.
  666. # [02:49] <@bz> khuey: I believe the leak is basically 16KB per worker global
  667. # [02:49] <@bz> khuey: if I count right
  668. # [02:49] <Yuji> I'll have to go IE.
  669. # [02:49] * Joins: gkw (fuzz2lin@moz-BBE3ABD.mv.mozilla.com)
  670. # [02:49] <decoder> glandium: sounds good to me
  671. # [02:49] * Yuji facedesks all the way to default browser setup.
  672. # [02:49] <decoder> and if this is just for initialization etc, then i dont see a problem with it
  673. # [02:49] * Quits: Yuji (yuji.saek@moz-5F2B95C0.stny.res.rr.com) (Quit: Australis?...Why? ;_;)
  674. # [02:50] <@bz> khuey: also, will you have bandwidth to look into 939510
  675. # [02:50] <@bz> khuey: or should I?
  676. # [02:50] * padenot is now known as padenot|away
  677. # [02:50] * Joins: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  678. # [02:50] <fabrice> dolske: also, I can't move the url bar along the tabs anymore
  679. # [02:50] <fabrice> customization has seriously regressed with australis :(
  680. # [02:51] <philor> KWierso|sheriffduty: sorry, closing time and a particularly crazy one, I'll be home in 30 or so
  681. # [02:51] <khuey> bz: we should put a MOZ_COUNT_CTOR/DTOR in the proto iface cache stuff
  682. # [02:51] <KWierso|sheriffduty> philor: okay
  683. # [02:51] * khuey will do that in his bug
  684. # [02:51] <@dolske> fabrice: there's a but on allowing it to be moved there.
  685. # [02:51] <@dolske> bug, even.
  686. # [02:51] * philor is now known as philor|away
  687. # [02:51] <fabrice> dolske: ok thanks
  688. # [02:51] <khuey> bz: have you actually tried to run the testcase in that bug?
  689. # [02:52] <khuey> bz: I'm wondering if we're leaking 1 blob or N blobs
  690. # [02:52] <khuey> bz: cause 1 blob would be explained by the var, I think
  691. # [02:53] * Joins: karl (karl@538BABFE.A073F3E.97BBD552.IP)
  692. # [02:53] * Joins: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net)
  693. # [02:53] * Quits: feltnerm (feltnerm@9AC552E8.C69D9A6B.61C21BB7.IP) (Client exited)
  694. # [02:53] * Quits: jhlin (jolin@E2F7352.56080C53.97BBD552.IP) (Ping timeout)
  695. # [02:53] * Quits: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  696. # [02:54] * sfoster is now known as sfoster|afk
  697. # [02:55] <@bz> khuey: hmm
  698. # [02:55] <@bz> khuey: No, I haven't
  699. # [02:55] * padenot|away is now known as padenot
  700. # [02:55] <@bz> khuey: I could try that
  701. # [02:56] <@bz> khuey: For the proto iface cache... yeah, that's a good idea
  702. # [02:56] * Quits: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner_)
  703. # [02:56] * Parts: Snuffleupagus (chatzilla@moz-7411B7A4.bredband.comhem.se)
  704. # [02:57] * Quits: jez (user@moz-1B119F78.dsl.in-addr.zen.co.uk) (Ping timeout)
  705. # [02:58] * Quits: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  706. # [02:58] * Joins: bajaj1 (Adium@moz-BBE3ABD.mv.mozilla.com)
  707. # [02:59] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  708. # [02:59] <BenWa> inbound good to re-open?
  709. # [03:00] <KWierso|sheriffduty> BenWa: depends on if glandium is still planning to land his huge patch tonight, I think :)
  710. # [03:00] <BenWa> ohh
  711. # [03:00] <glandium> KWierso|sheriffduty: i still am
  712. # [03:00] <KWierso|sheriffduty> don't really feel like resolving merge conflicts on a patch that touches 800-some files :P
  713. # [03:00] <vlad> has anyone ever done a tool that will use IMAP to access someone's bugmail inbox, and then reformat the info in a more useful way?
  714. # [03:01] * Joins: jhlin (jolin@E2F7352.56080C53.97BBD552.IP)
  715. # [03:01] * Quits: WeirdAl (chatzilla@moz-D461843.ask.info) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0.1/20131112160018])
  716. # [03:02] * Quits: fabrice (fabrice@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  717. # [03:02] <khuey> what is glandium doing today?
  718. # [03:02] <glandium> khuey: 881 files changed, 832 insertions(+), 4524 deletions(-)
  719. # [03:03] <khuey> but what does it do?
  720. # [03:03] * Joins: yoshi (allstars@moz-99690620.hinet-ip.hinet.net)
  721. # [03:04] * Joins: jez (user@moz-1B119F78.dsl.in-addr.zen.co.uk)
  722. # [03:04] <glandium> khuey: it removes MODULE, LIBXUL_LIBRARY, many LIBRARY_NAME, and half of toolkit/library/Makefile.in and layout/build/Makefile.in
  723. # [03:04] <@bz> froydnj: ping
  724. # [03:04] <glandium> khuey: i'm about to post what it does to dev-platform
  725. # [03:04] <froydnj> bz: pong
  726. # [03:04] * Quits: yoshi (allstars@moz-99690620.hinet-ip.hinet.net) (Connection reset by peer)
  727. # [03:04] <@bz> froydnj: https://bugzilla.mozilla.org/show_bug.cgi?id=928195#c73 unset your r+
  728. # [03:04] <@bz> froydnj: mind setting it again?
  729. # [03:04] <khuey> glandium: ok, I don't think that affects anything I'm doing
  730. # [03:05] * Quits: Jesse (jruderman@moz-BBE3ABD.mv.mozilla.com) (Quit: Jesse)
  731. # [03:06] <froydnj> bz: done
  732. # [03:07] * Quits: Mook_as (mook@moz-1FCC0032.activestate.com) (Quit: Mook_as)
  733. # [03:08] * Joins: danieru (danieru@C8E26E42.55A00C18.F9917295.IP)
  734. # [03:08] * ctalbert is now known as ctalbert|afk
  735. # [03:08] * corey|away is now known as corey
  736. # [03:08] <glandium> KWierso|sheriffduty: i can land the most conflicting part now, if you're ready ; i have another part i'm waiting build results on birch for, but it's a small patch with much less impact
  737. # [03:09] <KWierso|sheriffduty> glandium: do you have a bug number for the tree closure?
  738. # [03:10] <glandium> KWierso|sheriffduty: I have 9 bug numbers
  739. # [03:10] <@bz> froydnj: thanks
  740. # [03:10] <KWierso|sheriffduty> "merging glandium's bugs" good enough :)
  741. # [03:10] <froydnj> ETOOMANYBUGNUMBERS
  742. # [03:11] * Quits: karl (karl@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  743. # [03:12] * Quits: ewong (chatzilla@moz-E5D50C2E.static.netvigator.com) (Quit: Reboot)
  744. # [03:12] <KWierso|sheriffduty> glandium: almost ready for the first merging prior to you landing, I think
  745. # [03:12] * Joins: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net)
  746. # [03:12] * Joins: sewardj_ (sewardj@moz-A108DCA0.dip0.t-ipconnect.de)
  747. # [03:12] <glandium> KWierso|sheriffduty: woohoo
  748. # [03:12] <glandium> KWierso|sheriffduty: what branches do you merge? m-i, m-c, b2g-inbound, fx-team?
  749. # [03:13] <KWierso|sheriffduty> yep
  750. # [03:13] <KWierso|sheriffduty> then you'll land to m-c
  751. # [03:13] <glandium> ok
  752. # [03:13] * Quits: sewardj (sewardj@moz-317CE7CE.dip0.t-ipconnect.de) (Ping timeout)
  753. # [03:13] <KWierso|sheriffduty> how confident are you it won't break anything? :)
  754. # [03:13] * Quits: bajaj1 (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  755. # [03:13] <glandium> KWierso|sheriffduty: considering how much i've baked it, pretty confident
  756. # [03:14] * Joins: bnicholson (bnicholson@moz-46A94A2D.hsd1.ca.comcast.net)
  757. # [03:15] * Joins: JosiahOne (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  758. # [03:17] <@bz> khuey: impl of blob is nsDOMFile?
  759. # [03:18] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  760. # [03:18] * Quits: gwagner (gwagner@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  761. # [03:19] <khuey> bz: yesish
  762. # [03:20] * @bz wonders why gdb thinks ~nsDOMFile is never hit
  763. # [03:20] <khuey> heh
  764. # [03:20] <khuey> well either it's not
  765. # [03:20] <khuey> or gdb is stupiud
  766. # [03:20] <khuey> *stupid
  767. # [03:20] * Quits: rstrong (rstrong@moz-204A999A.hsd1.ca.comcast.net) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.8.0.9/2006120508])
  768. # [03:20] <khuey> could go either way here ...
  769. # [03:20] <@bz> btw, I think I can reproduce the leak
  770. # [03:21] * Joins: ethan (chatzilla@moz-853B369C.dynamic.hinet.net)
  771. # [03:22] * Joins: ctangira (ctangira@moz-B8FE932D.lightspeed.rcsntx.sbcglobal.net)
  772. # [03:23] * Quits: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net) (Quit: damons)
  773. # [03:24] <@njn> bz: sorry, I'm in back-to-back job interviews
  774. # [03:24] <@njn> bz: will be bac later
  775. # [03:24] * Quits: brendan (brendaneic@moz-BBE3ABD.mv.mozilla.com) (Quit: brendan)
  776. # [03:25] * Callek is now known as Callek_disconnected
  777. # [03:25] * philor|away is now known as philor
  778. # [03:25] * Quits: @roc (chatzilla@E2F7352.56080C53.97BBD552.IP) (Ping timeout)
  779. # [03:26] * Quits: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  780. # [03:26] <@bz> khuey: ok
  781. # [03:26] <@bz> khuey: so ~nsDOMMemoryFile is definitely happening
  782. # [03:26] * Quits: Optimizer (Optimizer@78A6FE2A.F238DA70.BE4CF869.IP) (Ping timeout)
  783. # [03:27] <@bz> khuey: but the memory is not getting freed
  784. # [03:27] * Joins: Optimizer (Optimizer@7B06B82B.246489EE.BE4CF869.IP)
  785. # [03:27] <@bz> And about:memory claims it's all under memory-file-data/large
  786. # [03:28] <khuey> bz: ok, so the DataOwner is getting released, but that's not the last ref?
  787. # [03:29] <@bz> So in ~nsDOMMemoryFile
  788. # [03:29] <danieru> Has anyone really been far even as decided to ever even so much as thought about printing under fxos?
  789. # [03:29] <@bz> (gdb) p mDataOwner.mRawPtr->mRefCnt.mValue
  790. # [03:29] <@bz> $5 = {
  791. # [03:29] <@bz> <mozilla::detail::AtomicBaseIncDec<unsigned int, 2>> = {
  792. # [03:29] <@bz> <mozilla::detail::AtomicBase<unsigned int, 2>> = {
  793. # [03:29] <@bz> mValue = 2
  794. # [03:29] <@bz> }, <No data fields>}, <No data fields>}
  795. # [03:29] * Quits: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  796. # [03:29] * Joins: roc (chatzilla@E2F7352.56080C53.97BBD552.IP)
  797. # [03:29] * ChanServ sets mode: +o roc
  798. # [03:29] <danieru> Like with internet printing protocol everywhere
  799. # [03:30] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  800. # [03:30] <khuey> bz: ok, so the refcount is one after the dtor runs?
  801. # [03:31] <@bz> yeah
  802. # [03:31] <@bz> OK, so if I quit
  803. # [03:31] <@bz> then I see these owner bits going away
  804. # [03:31] <@bz> off the shutdown CC
  805. # [03:31] * Quits: dew (Instantbir@moz-E4452B8F.static.stls.mo.charter.com) (Ping timeout)
  806. # [03:31] <@bz> #27 0x0000000103c050cf in nsInputStreamChannel::Release (this=0x10062c790) at nsInputStreamChannel.cpp:41
  807. # [03:31] <@bz> #28 0x00000001068ac1c0 in ReleaseSliceNow (aSlice=22, aData=0x10f07a660) at CycleCollectedJSRuntime.cpp:990
  808. # [03:31] * Joins: darkowlzz (sunny@F9FD10F2.2101F646.F44414AF.IP)
  809. # [03:31] <@bz> releasing input stream channel, releasing multiplex channel
  810. # [03:31] <khuey> mmm
  811. # [03:31] <khuey> so what's holding the channel?
  812. # [03:31] * Joins: brendan (brendaneic@moz-BBE3ABD.mv.mozilla.com)
  813. # [03:31] <@bz> er, nsMultiplexInputStream::~nsMultiplexInputStream
  814. # [03:32] <@bz> Could be anything, in theory....
  815. # [03:32] <khuey> heh
  816. # [03:32] <@bz> My money would be on download manager
  817. # [03:32] <@bz> given the symptoms
  818. # [03:32] * Quits: chewey (chewey@moz-8B768384.dip0.t-ipconnect.de) (NickServ (GHOST command used by chewey_))
  819. # [03:32] <khuey> is the input stream channel cycle collected?
  820. # [03:32] <khuey> that seems odd to me
  821. # [03:33] * Joins: chewey (chewey@moz-7611332C.dip0.t-ipconnect.de)
  822. # [03:33] * Joins: dew (Instantbir@moz-E4452B8F.static.stls.mo.charter.com)
  823. # [03:33] <@bz> It's nit
  824. # [03:33] <@bz> er, not
  825. # [03:33] * Quits: azakai (alon@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  826. # [03:33] <khuey> so why is it getting released off of ReleaseSliceNow?
  827. # [03:33] <@bz> So presumably it's being held from JS
  828. # [03:34] * Quits: heftig (heftig@moz-4353C6FC.dip0.t-ipconnect.de) (Ping timeout)
  829. # [03:34] <khuey> or does that release JS held things?
  830. # [03:34] <khuey> ok
  831. # [03:34] <khuey> that makes some form of sense
  832. # [03:34] <@bz> 988 nsISupports* wrapper = items->ElementAt(lastItemIdx);
  833. # [03:34] <@bz> 989 items->RemoveElementAt(lastItemIdx);
  834. # [03:34] <@bz> 990 NS_RELEASE(wrapper);
  835. # [03:34] * Joins: heftig (heftig@moz-4353C6FC.dip0.t-ipconnect.de)
  836. # [03:34] * Quits: sewardj_ (sewardj@moz-A108DCA0.dip0.t-ipconnect.de) (Ping timeout)
  837. # [03:34] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Input/output error)
  838. # [03:34] * @bz ponders
  839. # [03:34] * Quits: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Quit: masayuki)
  840. # [03:34] * Joins: sewardj_ (sewardj@moz-A108DCA0.dip0.t-ipconnect.de)
  841. # [03:34] <@bz> Can we drop the data when we finish reading the stream?
  842. # [03:34] * Joins: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  843. # [03:35] * wlach|biab is now known as wlach
  844. # [03:35] <khuey> mmm
  845. # [03:35] <khuey> maybe
  846. # [03:35] <@bz> I guess we're seekable
  847. # [03:35] <@bz> that sucks
  848. # [03:36] <khuey> are we?
  849. # [03:36] * Parts: ckerschb (ckerschb@moz-82777327.ics.uci.edu)
  850. # [03:36] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  851. # [03:36] <khuey> lame
  852. # [03:36] <@bz> 50 class DataOwnerAdapter MOZ_FINAL : public nsIInputStream,
  853. # [03:36] <@bz> 51 public nsISeekableStream,
  854. # [03:36] <@bz> If this stuff can be used in a form post we have to be
  855. # [03:36] <@bz> because you may need to repost
  856. # [03:36] <khuey> yeah, ok
  857. # [03:36] <@bz> mmm
  858. # [03:36] <@bz> I wonders whether inputstreamchannel should drop its stream when it's done
  859. # [03:36] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  860. # [03:36] <@bz> _that_ would make a ton of sense
  861. # [03:36] <khuey> yeah
  862. # [03:36] <khuey> who knows what that might break :-P
  863. # [03:37] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  864. # [03:37] * Joins: karl (karl@538BABFE.A073F3E.97BBD552.IP)
  865. # [03:37] <@bz> probably nothing
  866. # [03:37] * Quits: inolen (Adium@A88571AE.CDFDA8DC.591ED24F.IP) (Quit: Leaving.)
  867. # [03:37] * Joins: ethan_ (chatzilla@moz-99690620.hinet-ip.hinet.net)
  868. # [03:38] * Joins: allstarschh_nb (allstarsch@moz-99690620.hinet-ip.hinet.net)
  869. # [03:38] * Quits: ethan (chatzilla@moz-853B369C.dynamic.hinet.net) (Ping timeout)
  870. # [03:38] <@bz> I mean, it might still be good to figure out what chrome JS is keeping the channel alive forever
  871. # [03:38] * ethan_ is now known as ethan
  872. # [03:38] <@bz> but the channel keeping the data alive is just a footgun
  873. # [03:38] * Joins: vicamo (vicamo@moz-99690620.hinet-ip.hinet.net)
  874. # [03:38] <@bz> imho
  875. # [03:38] * @bz asks jduell
  876. # [03:39] * Joins: sfink (chatzilla@moz-1A23C815.dsl.pltn13.sbcglobal.net)
  877. # [03:39] <khuey> yeah
  878. # [03:39] <khuey> I think I agree
  879. # [03:39] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  880. # [03:39] * rail_away is now known as rail
  881. # [03:40] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  882. # [03:41] * Quits: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net) (Ping timeout)
  883. # [03:41] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  884. # [03:41] * Quits: sfink (chatzilla@moz-1A23C815.dsl.pltn13.sbcglobal.net) (Ping timeout)
  885. # [03:42] * Joins: aklotz (Thunderbir@moz-935DE219.cg.shawcable.net)
  886. # [03:42] * Joins: sfink (chatzilla@moz-1A23C815.dsl.pltn13.sbcglobal.net)
  887. # [03:42] * RyanVM|afk waits for the GHOST_OF_WINSTRIPE troll to arrive
  888. # [03:43] <mjrosenb> uh-oh
  889. # [03:43] <mjrosenb> evidently for the last couple of months, my grandmother has thought she's had a virus
  890. # [03:43] <mjrosenb> because she hit f11 a long time ago
  891. # [03:43] <mjrosenb> had no clue what she did
  892. # [03:43] <danieru> oh that is funny,
  893. # [03:43] <danieru> and unfortunate.
  894. # [03:44] * Joins: shorlander (shorlander@8F761026.B5EF4AF6.E96CA9D8.IP)
  895. # [03:44] <mjrosenb> and firefox has been acting 'strangely' every since.
  896. # [03:45] <KWierso|sheriffduty> glandium: pre-you things merged around
  897. # [03:46] <KWierso|sheriffduty> you can land on m-c :)
  898. # [03:47] <glandium> KWierso|sheriffduty: mmmm i don't see b2g-inbound
  899. # [03:47] <philor> me neither
  900. # [03:47] <glandium> my pull doesn't see 79ac7cd8195c
  901. # [03:47] <philor> oh, you mean seeing merges, not refusing to look at it :)
  902. # [03:48] * Quits: brendan (brendaneic@moz-BBE3ABD.mv.mozilla.com) (Quit: brendan)
  903. # [03:48] <glandium> and i do know there are conflicts on b2g-inbound currently, as i had to solve them when i merged b2g-inbound into birch
  904. # [03:48] * Quits: jedp (jedp@moz-89599B04.dsl.dynamic.sonic.net) (Quit: Computer has gone to sleep.)
  905. # [03:48] * Joins: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net)
  906. # [03:49] * Quits: jdm (jdm@moz-ED0C7AC7.hinet-ip.hinet.net) (Quit: Lost terminal)
  907. # [03:49] <philor> 79ac7cd8195c and b63db8be9935 are the only non-merged things, and they're only changing the gaia.json rev, surely that's not a serious conflict?
  908. # [03:50] <glandium> oh, f7c711424299 is there. ok
  909. # [03:50] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  910. # [03:50] <philor> good to see b-i is still just as permared as the last time I opened it, thought
  911. # [03:51] <KWierso|sheriffduty> philor: any idea on that m4 orange there?
  912. # [03:51] <philor> KWierso|sheriffduty: what tree?
  913. # [03:51] <philor> what OS?
  914. # [03:51] <KWierso|sheriffduty> b2g-inbound
  915. # [03:51] <KWierso|sheriffduty> ICS emulator
  916. # [03:51] <philor> what happens when you open the log and search for "Passed:"?
  917. # [03:52] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  918. # [03:52] <philor> do you find that it passed every test, and "IFaild: NFO this logging suck 0"?
  919. # [03:52] <KWierso|sheriffduty> 17:20:21 INFO - 17644 INFO TEST-START | Shutdown
  920. # [03:52] <KWierso|sheriffduty> 17:20:21 INFO - 17645 INFO Passed: 31694
  921. # [03:52] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  922. # [03:52] <KWierso|sheriffduty> 17:21:30 INFO - 17646 IMochitest INFO | runtestsb2g.py | Running tests: end.
  923. # [03:53] <RyanVM|afk> philor wins
  924. # [03:53] <philor> I'm calling that bug 937684, because I want to, but you could as easily call it bug 809240
  925. # [03:53] <philor> or file a new bug, so we can have three
  926. # [03:53] <RyanVM|afk> philor: speaking of which
  927. # [03:53] <philor> or stop running mochitests on b2g
  928. # [03:54] <glandium> CLOSED TREE doesn't have to be on the summary first line, does it?
  929. # [03:54] <RyanVM|afk> philor: were you thinking that NSS ASAN issue was a different one from the other recent ones that were filed and duped around?
  930. # [03:54] <philor> nope, any line is fine
  931. # [03:54] <froydnj> glandium: no
  932. # [03:54] <KWierso|sheriffduty> glandium: as long as it's in the top commit
  933. # [03:54] <RyanVM|afk> glandium: all the cool kids put it on another line so it doesn't show in TBPL
  934. # [03:54] <philor> RyanVM|afk: nfi, I was really hoping it would get handled by someone who knew the first thing about it, rather than by me
  935. # [03:55] <RyanVM|afk> philor: at first glance, it looked similar to one I filed a week or two ago
  936. # [03:55] <RyanVM|afk> and it was decided to be an issue that predates the recent updates
  937. # [03:55] <glandium> RyanVM|afk: hey, since you're not afk as your nick pretends, when do you think you can look at 927213?
  938. # [03:56] <RyanVM|afk> glandium: you'd like that, wouldn't you
  939. # [03:56] * RyanVM|afk is now known as RyanVM
  940. # [03:56] <RyanVM> sorry, was swamped today :(
  941. # [03:56] <RyanVM> at first glance, it LGTM
  942. # [03:56] <philor> awww, incomprehensible non-clobbered build failure on Windows on inbound
  943. # [03:56] <RyanVM> I just wanted to apply it locally before officially giving it r+
  944. # [03:56] <philor> how's that plan of not using the clobberer working out?
  945. # [03:56] <RyanVM> philor: shhh
  946. # [03:57] <glandium> KWierso|sheriffduty: landed
  947. # [03:57] <KWierso|sheriffduty> glandium: noticed
  948. # [03:58] <glandium> philor: it's likely 939992
  949. # [03:58] <glandium> or maybe not
  950. # [03:58] <vlad> anyone know if I can override functions in XBL in a constructor?
  951. # [03:59] <vlad> e.g. <constructor>this._savedFoo = this._foo; this._foo = function() { this._savedFoo(); };</constructor> ?
  952. # [03:59] * Quits: Boriss (Boriss@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  953. # [03:59] * Callek_disconnected is now known as Callek
  954. # [04:00] * Joins: bajaj1 (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  955. # [04:00] * Joins: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP)
  956. # [04:00] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Connection reset by peer)
  957. # [04:00] * Joins: fabrice (fabrice@moz-94F028C6.hsd1.ca.comcast.net)
  958. # [04:00] <glandium> KWierso|sheriffduty: how do you want to play it? wanna wait for the builds on m-c before merging, or merge around and reopen straight away?
  959. # [04:01] * Joins: gwagner (Gregor@moz-B8B530C2.hsd1.ca.comcast.net)
  960. # [04:01] * Joins: lpy (lpy@87A8F653.D58093C6.8C13C571.IP)
  961. # [04:01] <KWierso|sheriffduty> glandium: lets give it a while to see if anything blatantly breaks :)
  962. # [04:01] * Quits: lpy (lpy@87A8F653.D58093C6.8C13C571.IP) (Quit: Leaving...)
  963. # [04:03] * Joins: cpeterson (cpeterson@moz-BBE3ABD.mv.mozilla.com)
  964. # [04:04] * Quits: givanica (givanica@moz-43556F8A.residential.rdsnet.ro) (Connection reset by peer)
  965. # [04:05] * Quits: jgilbert (jgilbert@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  966. # [04:06] * Quits: grobinson|laptop (grob_@moz-D5AEE09B.torservers.net) (Ping timeout)
  967. # [04:06] * Quits: miketaylr (mtaylor@moz-8ACC7131.dyn.grandenetworks.net) (Quit: Linkinus - http://linkinus.com)
  968. # [04:07] * Joins: miketaylr (mtaylor@moz-8ACC7131.dyn.grandenetworks.net)
  969. # [04:07] <@njn> bz: back now
  970. # [04:07] * Joins: jonasfj (jonasfj@C17491E2.CC4CD714.6946B6CD.IP)
  971. # [04:07] * Quits: jhlin (jolin@E2F7352.56080C53.97BBD552.IP) (Ping timeout)
  972. # [04:07] * Quits: cpeterson (cpeterson@moz-BBE3ABD.mv.mozilla.com) (Input/output error)
  973. # [04:07] <danieru> so njn what do you recommend during interviews?
  974. # [04:07] * Joins: jhlin (jolin@E2F7352.56080C53.97BBD552.IP)
  975. # [04:08] <@bz> njn: I commented in the bug
  976. # [04:08] * Joins: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net)
  977. # [04:08] <@bz> njn: the protoAndIfaceArray one
  978. # [04:08] * Joins: cpearce_laptop (chatzilla@538BABFE.A073F3E.97BBD552.IP)
  979. # [04:08] * Earth4 is now known as Earth4|away
  980. # [04:08] <@bz> njn: Ah, in an opt build we don't bother to do CC/GC during shutdown before we quit
  981. # [04:08] <@bz> njn: so I would expect leaks there, since we never call finalizers for a bunch of globals
  982. # [04:09] <@bz> njn: at least last I checked that was the setup
  983. # [04:09] * Joins: ewong (chatzilla@moz-E5D50C2E.static.netvigator.com)
  984. # [04:09] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  985. # [04:10] <glandium> philor: what's the c in "c;r"? crap?
  986. # [04:10] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  987. # [04:10] * Quits: dmarcos (dmarcos@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: Leaving...)
  988. # [04:10] * Quits: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP) (Quit: ehugg)
  989. # [04:10] * Quits: karl (karl@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  990. # [04:11] <ewong> clobber?
  991. # [04:12] <@njn> bz: but Valgrind only complains about heap blocks that don't have any pointers to them
  992. # [04:12] * Quits: bajaj1 (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  993. # [04:12] <@njn> bz: if there are still pointers to a block, it's "reachable" and not complained about
  994. # [04:12] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  995. # [04:12] <philor> glandium: indeed, it's the miracle drug, a clobber
  996. # [04:13] <philor> fortunately, nobody has successfully told me not to use the clobberer even though using the clobberer massively improves all our lives
  997. # [04:13] <@njn> bz: so Valgrind can't find pointers to all these cache blocks
  998. # [04:14] <@bz> njn: can it?
  999. # [04:14] <@bz> njn: one sec
  1000. # [04:14] <@bz> njn: so this is stored in a private jsval
  1001. # [04:15] <@njn> bz: oh, does it have tag bits?
  1002. # [04:15] <@bz> njn: checking
  1003. # [04:15] <@bz> 32-bit or 64-bit?
  1004. # [04:15] <@njn> bz: I bet it's munged somehow; Valgrind doesn't know about the munging and so thinks there are no pointers
  1005. # [04:15] <@njn> 64-bit
  1006. # [04:15] <@bz> 791 PRIVATE_PTR_TO_JSVAL_IMPL(void *ptr)
  1007. # [04:16] <@bz> 794 uint64_t ptrBits = (uint64_t)ptr;
  1008. # [04:16] <@bz> 796 l.asBits = ptrBits >> 1;
  1009. # [04:16] <@njn> bz: yeah, that'll do it
  1010. # [04:16] <@bz> (some asserts about the low bit being 0 in there too)
  1011. # [04:16] <@njn> bz: I think we need a suppression
  1012. # [04:17] * jorendorff_away is now known as jorendorff
  1013. # [04:17] * @bz has no better ideas. :(
  1014. # [04:17] <@bz> but note mccr8's suggestion
  1015. # [04:18] <glandium> philor: erf, that was too obvious :)
  1016. # [04:18] * Quits: briansmith (briansmith@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  1017. # [04:18] <philor> wow, we have three bugs for a shutdown crash in mozilla::storage::Service::Observe, wonder if we're getting close to filing the one someone will fix
  1018. # [04:18] <jld> Oh hey. "Edit Attachment As Comment". That means I can actually change the content of attachments?
  1019. # [04:18] <@njn> bz: I wonder if I can write a suppression that doesn't suppress the genuine worker leak
  1020. # [04:19] * Joins: briansmith (briansmith@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1021. # [04:19] * Joins: dobalina (dobalina@moz-26175008.rev.numericable.fr)
  1022. # [04:20] <philor> jld: as long as they are ASCII, it mangles UTF-8
  1023. # [04:20] <jld> )-:
  1024. # [04:20] <khuey> I like how I'm having the same conversation in the bug that bz is having on IRC :-P
  1025. # [04:21] <@bz> njn: again, mccr8's suggestion might be better....
  1026. # [04:21] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  1027. # [04:22] * Quits: dobalina (dobalina@moz-26175008.rev.numericable.fr) (Ping timeout)
  1028. # [04:22] <@njn> bz: hmm, perhaps
  1029. # [04:22] <@njn> bz: I'll try it locally
  1030. # [04:22] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  1031. # [04:23] * Quits: halfie (halfie@744DBD05.EB658883.2BF60B34.IP) (Quit: I'll be back ;))
  1032. # [04:23] * Quits: jgriffin (jgriffin@moz-C55C3E25.hsd1.wa.comcast.net) (Quit: jgriffin)
  1033. # [04:23] * Quits: sfoster|afk (sfoster@moz-961AB6F2.hsd1.or.comcast.net) (Ping timeout)
  1034. # [04:23] * Quits: Waldo (waldo@moz-BBE3ABD.mv.mozilla.com) (Quit: ChatZilla 0.9.87-7.1450hg.fc19 [XULRunner 25.0/20131030081700])
  1035. # [04:24] <froydnj> bz: thanks for the reviews! :)
  1036. # [04:25] * Quits: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  1037. # [04:25] * Quits: shorlander (shorlander@8F761026.B5EF4AF6.E96CA9D8.IP) (Input/output error)
  1038. # [04:25] <@bz> froydnj: Thanks for the patches!
  1039. # [04:25] * JosiahOne is now known as JosiahOne|Away
  1040. # [04:25] * Joins: shorlander (shorlander@8F761026.B5EF4AF6.E96CA9D8.IP)
  1041. # [04:27] * Quits: vladan (vladan@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Leaving.)
  1042. # [04:27] * Joins: jdm (jdm@moz-99690620.hinet-ip.hinet.net)
  1043. # [04:27] * Quits: shorlander (shorlander@8F761026.B5EF4AF6.E96CA9D8.IP) (Ping timeout)
  1044. # [04:27] <@njn> bz, mccr8, khuey: XPCOM_CC_RUN_DURING_SHUTDOWN works locally, but... http://hg.mozilla.org/build/tools/file/default/scripts/valgrind/valgrind.sh#l82
  1045. # [04:27] <@njn> maybe the exporting of that variable isn't working?
  1046. # [04:28] * Joins: sfoster|afk (sfoster@moz-961AB6F2.hsd1.or.comcast.net)
  1047. # [04:29] * KWierso|sheriffduty is now known as KWierso
  1048. # [04:29] <@bz> njn: Dunno. :(
  1049. # [04:29] * jorendorff is now known as jorendorff_away
  1050. # [04:29] <@gavin> RyanVM: hrm, https://bugzilla.mozilla.org/show_bug.cgi?id=900953#c5 was a functional change, not test-only
  1051. # [04:29] <khuey> no idea
  1052. # [04:30] * Quits: automata (automata@D773866B.FA36B139.BB0EBA72.IP) (Quit: Leaving)
  1053. # [04:31] <RyanVM> gavin: oops
  1054. # [04:32] * Quits: ctangira (ctangira@moz-B8FE932D.lightspeed.rcsntx.sbcglobal.net) (Connection reset by peer)
  1055. # [04:32] * Joins: ctangira (ctangira@moz-44402D73.cisco.com)
  1056. # [04:33] <KWierso> glandium: I'm preparing and then eating food, will probably just merge you around after that, then leave the trees closed until we know it doesn't break anything
  1057. # [04:35] * rail is now known as rail_away
  1058. # [04:35] * Joins: micadeyeye_ (micadeyeye@moz-279CFFCB.telkomadsl.co.za)
  1059. # [04:36] <micadeyeye_> Can anyone please tell me how I can disable "Flash repainted area" in the adb shell? It doesn't make my phone work in firefoxos v1.2.
  1060. # [04:39] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  1061. # [04:40] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  1062. # [04:41] * Quits: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Ping timeout)
  1063. # [04:41] * Joins: ericjung_ (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  1064. # [04:41] * Quits: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net) (Quit: damons)
  1065. # [04:42] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  1066. # [04:43] * Parts: darkowlzz (sunny@F9FD10F2.2101F646.F44414AF.IP) (Leaving)
  1067. # [04:44] * Joins: nbp (pierron@moz-7EB03C5F.fbx.proxad.net)
  1068. # [04:44] * Quits: miketaylr (mtaylor@moz-8ACC7131.dyn.grandenetworks.net) (Quit: Linkinus - http://linkinus.com)
  1069. # [04:45] * Quits: drno (drno@moz-8C24FDC2.hsd1.ca.comcast.net) (Quit: drno)
  1070. # [04:45] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1071. # [04:45] <BenWa> *waits for inbound* what's glandium landing anyways?
  1072. # [04:45] <glandium> BenWa: see dev-platform
  1073. # [04:45] <glandium> or m-c
  1074. # [04:46] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Ping timeout)
  1075. # [04:46] * Joins: miketaylr (mtaylor@moz-8ACC7131.dyn.grandenetworks.net)
  1076. # [04:46] <BenWa> niice :)
  1077. # [04:47] <bjacob> BenWa: can i have UNIFIED_SOURCES unify sources of two different moz.build files? or do i have to move them all to the parent moz.build?
  1078. # [04:48] <BenWa> bjacob: you can't unify across moz.build AFAIK
  1079. # [04:48] <bjacob> ok
  1080. # [04:48] * Quits: mkaply_ (quassel@moz-E77BA452.gtwncmta01.grtntx.tl.dh.suddenlink.net) (Ping timeout)
  1081. # [04:49] * Joins: mkaply (quassel@moz-E77BA452.gtwncmta01.grtntx.tl.dh.suddenlink.net)
  1082. # [04:49] * Quits: maxli (maxli@moz-4D28BA20.student.cs.uwaterloo.ca) (Quit: Leaving.)
  1083. # [04:50] <glandium> decoder: so, asan is adding padding to static data?
  1084. # [04:52] <micadeyeye_> Can anyone please tell me how I can disable "Flash repainted area" in the adb shell? It doesn't make my phone work in firefoxos v1.2.
  1085. # [04:54] * Quits: RyanVM (Thunderbir@moz-4C953DE7.phlapa.fios.verizon.net) (Quit: RyanVM)
  1086. # [04:55] * Quits: ericjung_ (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Quit: Leaving)
  1087. # [04:56] * Joins: rniwa (rniwa@91150433.D69BB17B.3BFD8A78.IP)
  1088. # [04:56] * Joins: janv (varga@moz-A506EDFE.flarion.as5628.telecom.sk)
  1089. # [04:59] * Quits: mchang (mchang@BE99BE02.84BCE52A.BCAEBB33.IP) (Quit: mchang)
  1090. # [05:00] * Joins: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP)
  1091. # [05:00] * Quits: kentuckyfriedtakahe (ajones@538BABFE.A073F3E.97BBD552.IP) (Quit: Ex-Chat)
  1092. # [05:00] * Quits: tonymec|away (tonymec@moz-B618D1A9.adsl-dyn.isp.belgacom.be) (Ping timeout)
  1093. # [05:00] * Quits: tonymec (tonymec@moz-B618D1A9.adsl-dyn.isp.belgacom.be) (Ping timeout)
  1094. # [05:06] * Quits: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP) (Quit: Leaving.)
  1095. # [05:06] <khuey> bz: do you want to review the patch for this ProtoIfaceCache stuff?
  1096. # [05:07] * Quits: cpearce_laptop (chatzilla@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  1097. # [05:07] * Quits: KaIRC (robert@moz-C9DE1FFF.adsl.highway.telekom.at) (Input/output error)
  1098. # [05:08] * Joins: tonymec|away (tonymec@moz-30B9F369.adsl-dyn.isp.belgacom.be)
  1099. # [05:09] * Quits: jet (jet@538BABFE.A073F3E.97BBD552.IP) (Quit: jet)
  1100. # [05:09] * Joins: mchen (chatzilla@moz-99690620.hinet-ip.hinet.net)
  1101. # [05:09] * Joins: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net)
  1102. # [05:10] * Quits: mreavy (chatzilla@moz-B6D1658D.phlapa.fios.verizon.net) (Ping timeout)
  1103. # [05:11] * Joins: mreavy (chatzilla@moz-B6D1658D.phlapa.fios.verizon.net)
  1104. # [05:11] * gaye is now known as gaye|brb
  1105. # [05:11] * philor jumps KWierso's gun and does the merging part
  1106. # [05:11] <KWierso> philor: have at it, I've got steak :)
  1107. # [05:13] * glob|away is now known as glob
  1108. # [05:13] * hwine is now known as hwine-ooo
  1109. # [05:13] * Joins: karl (karl@538BABFE.A073F3E.97BBD552.IP)
  1110. # [05:15] * Joins: Mook (mook@moz-DCA85209.dsl.teksavvy.com)
  1111. # [05:15] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Quit: Leaving.)
  1112. # [05:15] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  1113. # [05:16] * Quits: tonymec|away (tonymec@moz-30B9F369.adsl-dyn.isp.belgacom.be) (Ping timeout)
  1114. # [05:16] * Joins: ckerschb1 (ckerschb@moz-DF6EADF2.vp.reshsg.uci.edu)
  1115. # [05:17] * Quits: ctangira (ctangira@moz-44402D73.cisco.com) (Ping timeout)
  1116. # [05:17] * Joins: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net)
  1117. # [05:17] * Joins: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  1118. # [05:18] * Joins: ctangira (ctangira@moz-44402D73.cisco.com)
  1119. # [05:19] * Joins: maxli (maxli@moz-4D28BA20.student.cs.uwaterloo.ca)
  1120. # [05:20] * heycam is now known as heycam|away
  1121. # [05:20] * philor mildly suggests to b2g that it consider building while at least a few of us are still young
  1122. # [05:22] * Joins: tonymec|away (tonymec@6CC78018.C225E126.277517C1.IP)
  1123. # [05:23] <micadeyeye_> Seriously, the developer forum needs to tell me how to disable the flash repainted area at the adb shell.
  1124. # [05:24] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  1125. # [05:24] <capella> what if no one knows?
  1126. # [05:24] <padenot> micadeyeye_: you would find more knowledgeable people on this topic in #b2g or #gaia
  1127. # [05:25] <danieru> In relation to micadeyeye_'s question: if he deletes gecko's sqlite db will that get rebuilt by gecko without application data loss?
  1128. # [05:25] * Quits: tonymec|away (tonymec@6CC78018.C225E126.277517C1.IP) (Ping timeout)
  1129. # [05:25] <nalexander> glandium: KWierso: philor: do we have an eta on tree re-opening?
  1130. # [05:25] <philor> heh, closer than me, I was going to say #mobile
  1131. # [05:25] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  1132. # [05:25] <capella> not mobile
  1133. # [05:25] <philor> nalexander: 5-10 minutes, I'm going to declare the first b2g device build to finish good enough, whether or not it is
  1134. # [05:25] <danieru> padenot, lol, sorry no one over here has been able to help
  1135. # [05:25] <nalexander> philor: oh, excellent, I can land a patch tonight! Thanks!
  1136. # [05:25] <danieru> Sorry by here I mean #b2g
  1137. # [05:26] <padenot> danieru: well, I'm not sure people here know, and the knowledgeable people are probably sleeping
  1138. # [05:26] * Quits: aklotz (Thunderbir@moz-935DE219.cg.shawcable.net) (Ping timeout)
  1139. # [05:26] <padenot> I'd ask again when France is awake
  1140. # [05:26] * Joins: aklotz (Thunderbir@moz-935DE219.cg.shawcable.net)
  1141. # [05:26] <danieru> padenot, fair, #b2g is pretty silent too.
  1142. # [05:26] <micadeyeye_> me too.
  1143. # [05:26] <KWierso> mmm... sleep
  1144. # [05:26] <glandium> padenot: those lazy frenchies
  1145. # [05:27] <padenot> glandium: yeah right?
  1146. # [05:27] * Quits: lgarner (lgarner@A6C9E818.AE2739FA.6624BF1.IP) (Ping timeout)
  1147. # [05:27] * Quits: terrence (terrence@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  1148. # [05:31] <philor> nalexander: have at it
  1149. # [05:32] * heycam|away is now known as heycam
  1150. # [05:32] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/95813fcf6a62 - Christian Holler - Bug 934641 - Switch ASan tests to using the low-memory config instead of the mid-memory config, to work around intermittent OOM failures, r=philor
  1151. # [05:32] <philor> oh, look, I won the race
  1152. # [05:32] * Quits: josh (josh@moz-6FB23C25.hvc.res.rr.com) (Quit: josh)
  1153. # [05:32] * padenot blames NZ latency
  1154. # [05:33] * Quits: Benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  1155. # [05:33] * Quits: seth (seth@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  1156. # [05:33] * Quits: briansmith (briansmith@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  1157. # [05:33] * Quits: grobinson (grob_@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  1158. # [05:33] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  1159. # [05:33] * Joins: grobinson (grob_@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1160. # [05:34] * Joins: Benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1161. # [05:34] * Joins: briansmith (briansmith@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1162. # [05:34] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4fd2bf2ec8db - Matthew Gregan - Bug 939662 - Remove "using namespace mozilla::dom;" from MediaDecoder.h and fix fallout. r=cpearce
  1163. # [05:34] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/37153a22e87a - Paul Adenot - Bug 919215 - Start the AudioStream on creation when in low-latency mode, and let it underrun. r=roc
  1164. # [05:34] * Joins: seth (seth@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1165. # [05:34] <@bz> ooh, open tree
  1166. # [05:34] * @bz pounces
  1167. # [05:35] * Joins: m_kato (m_kato@moz-C286AD9A.bitcat.net)
  1168. # [05:35] <philor> MEMORY STAT vsize after test: 988741632
  1169. # [05:36] <philor> them's some large digits
  1170. # [05:36] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/c6706b8500d2 - Boris Zbarsky - Bug 933193 part 3. Add getElementById to DocumentFragment. r=smaug
  1171. # [05:36] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/2b2b330e02ff - Boris Zbarsky - Bug 933193 part 1. Factor out the id selector fast-path from querySelector(All) so we can reuse it a bit more broadly. r=smaug
  1172. # [05:36] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/80070e83f335 - Boris Zbarsky - Bug 933193 part 2. Implement nsINode::GetElementById and make SVGSVGElement use it. r=smaug
  1173. # [05:36] * Joins: shorlander (shorlander@8F761026.B5EF4AF6.E96CA9D8.IP)
  1174. # [05:36] <shu> philor: the viewer has some more improvements
  1175. # [05:36] <shu> philor: multiple logs for diffing, easier to read legend
  1176. # [05:37] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/1a93c5ec2aea - John Daggett - Bug 913264 - add none value to font-variant-ligatures. r=dbaron
  1177. # [05:37] <philor> shu: you do realize that I'm going to start backing out everything you land, just to see what toys you'll make me, don't you?
  1178. # [05:37] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/20ba684bb6de - John Daggett - merge
  1179. # [05:37] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/9bac5cfec5ae - John Daggett - merge again
  1180. # [05:37] <shu> philor: :)
  1181. # [05:37] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/12f8868df18c - John Daggett - Bug 913264 - add reftest for none value of font-variant-ligatures. r=jfkthame
  1182. # [05:38] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a5a25f0e61ee - Mike Conley - Bug 457296 - Allow nsIPermissionManager to accept mailto URLs. r=jdm.
  1183. # [05:38] * Joins: tonymec|away (tonymec@1C753549.4D4BECF.277517C1.IP)
  1184. # [05:38] * Quits: shorlander (shorlander@8F761026.B5EF4AF6.E96CA9D8.IP) (Ping timeout)
  1185. # [05:39] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Quit: surkov)
  1186. # [05:39] <philor> alas, no smoking gun for this assertion, I'll just have to file it
  1187. # [05:40] <philor> though I'm so memory-shy now, just having something that tells me there's no way a failure has anything to do with OOM is also a fine service
  1188. # [05:42] * Quits: allstarschh (allstarsch@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1189. # [05:42] * Joins: yoshi (allstars@moz-99690620.hinet-ip.hinet.net)
  1190. # [05:42] * Quits: allstarschh_nb (allstarsch@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1191. # [05:42] * Quits: yoshi (allstars@moz-99690620.hinet-ip.hinet.net) (Connection reset by peer)
  1192. # [05:43] * Quits: ctangira (ctangira@moz-44402D73.cisco.com) (Ping timeout)
  1193. # [05:43] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/dd7de34a6f34 - Shu-yu Guo - Bug 936143 - Part 1: Add Debugger.Script.lineCount test where the script's source notes end in newline notes. (r=jimb)
  1194. # [05:43] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/e1e55ac4e33d - Jim Blandy - Bug 936143 - Part 2: Simplify and fix js_GetScriptLineExtent. (r=shu)
  1195. # [05:43] * Joins: WeirdAl (chatzilla@moz-527389C3.hsd1.ca.comcast.net)
  1196. # [05:43] * philor queues up a backout
  1197. # [05:44] * Joins: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net)
  1198. # [05:44] * Joins: ctangira (ctangira@moz-B8FE932D.lightspeed.rcsntx.sbcglobal.net)
  1199. # [05:44] <shu> philor: if even those patches cause failures...
  1200. # [05:45] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/1f0b615d64a5 - Nicholas Cameron - Bug 907463. Dealloc shmem on ActorDestroy. r=nical
  1201. # [05:45] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/c748f98f3acf - Nicholas Cameron - merge
  1202. # [05:45] <philor> ... then you'll finally start taking me seriously when I tell you to get an exorcism?
  1203. # [05:45] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/6da027253c48 - Nicholas Cameron - merge again
  1204. # [05:45] <kinetik> mmm, merge spam
  1205. # [05:45] * nrc does not hold much hope for his patches staying landed, given the amount of landing going on
  1206. # [05:46] <nrc> kinetik: yeah, well if people would slow down landing shit, I wouldn't need to keep merging
  1207. # [05:46] <kinetik> l2rebase
  1208. # [05:46] <nrc> I do not trust rebase as far as I can throw it
  1209. # [05:46] <philor> yeah, just ask whoever that is that has blame for half the tree how to rebase :)
  1210. # [05:46] * Quits: ctangira (ctangira@moz-B8FE932D.lightspeed.rcsntx.sbcglobal.net) (Ping timeout)
  1211. # [05:47] * Quits: Benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  1212. # [05:47] <glandium> what are those "merge" changesets on m-i
  1213. # [05:47] * Joins: tonymec (tonymec@1C753549.4D4BECF.277517C1.IP)
  1214. # [05:47] <nrc> and since it is not a thing, I can't throw it at all
  1215. # [05:47] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/86253e0141c8 - Mark Finkle - Bug 939680 - Implement nsINetworkLinkService.linkType on Android r=blassey
  1216. # [05:47] <philor> not that I don't do it myself, anyway, but I usually look at what it did, unless I'm really racing
  1217. # [05:47] * Quits: briansmith (briansmith@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  1218. # [05:47] * Quits: seth (seth@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  1219. # [05:47] * Quits: grobinson (grob_@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  1220. # [05:48] * Joins: Benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1221. # [05:48] * Joins: briansmith (briansmith@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1222. # [05:48] <nrc> turns out if you accidently stop a rebase, you can't rebase again and then you have to merge
  1223. # [05:48] * Joins: grobinson (grob_@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1224. # [05:48] * Joins: ctangira (ctangira@moz-44402D73.cisco.com)
  1225. # [05:48] * Joins: seth (seth@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1226. # [05:48] * Quits: spohl|afk (Adium@moz-91EE49C5.static.hvvc.us) (Quit: Leaving.)
  1227. # [05:49] * Joins: coop (Chris@B0F7535B.D36C4CD0.B2D54A9E.IP)
  1228. # [05:50] * Quits: wlach (wlach@EF7B3B58.1AA94311.3DEE0DD0.IP) (Ping timeout)
  1229. # [05:50] * Quits: twi (Adium@moz-4541C8E7.cust.dsl.vodafone.it) (Connection reset by peer)
  1230. # [05:51] * Joins: twi (Adium@moz-4541C8E7.cust.dsl.vodafone.it)
  1231. # [05:51] <vlad> nrc: erm?
  1232. # [05:51] <jld> So, in git, there's `git rebase --abort` which does what it looks like, because the previous state of the universe is still there.
  1233. # [05:51] <vlad> git rebase --abort?
  1234. # [05:51] <vlad> right
  1235. # [05:51] * Quits: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP) (Ping timeout)
  1236. # [05:51] <jld> But I assume this is an hg implementation of rebase?
  1237. # [05:51] <nrc> ah, then I learned something new :-)
  1238. # [05:52] <jld> ...or maybe I shouldn't assume that?
  1239. # [05:52] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/17f0c58be17c - ffxbld - Added FENNEC_26_0b6_RELEASE FENNEC_26_0b6_BUILD1 tag(s) for changeset 68d8fc5fa0da. DONTBUILD CLOSED TREE a=release
  1240. # [05:52] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/68d8fc5fa0da - ffxbld - Automated checkin: version bump for fennec 26.0b6 release. DONTBUILD CLOSED TREE a=release
  1241. # [05:52] * Joins: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP)
  1242. # [05:52] <nrc> oh wait, git rebase, maybe I dind't learn something
  1243. # [05:53] <philor> some people, when faced with an hg problem...
  1244. # [05:53] <padenot> hg qimport -r tip && hg qpop && hg pull -u && hg qpush && qfinish . && hg push
  1245. # [05:53] <kinetik> this wouldn't be a problem with cvs, let's switch back.
  1246. # [05:53] <nrc> kinetik--
  1247. # [05:53] * Quits: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP) (Connection reset by peer)
  1248. # [05:53] <@roc> hg rebase supports --abort too
  1249. # [05:54] <nrc> ah good, then I did learn something
  1250. # [05:54] * Joins: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP)
  1251. # [05:54] <jld> Oh, nice.
  1252. # [05:55] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/002e26035367 - Mike Hommey - Bug 938437 - Replace nsStaticXULComponents.cpp with smart use of sections. r=bsmedberg,irc-r=decoder
  1253. # [05:55] * Quits: janv (varga@moz-A506EDFE.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  1254. # [05:56] <jld> (I didn't want to assume, because Hg's backend format is sort of like CVS, whereas Git is in the Venti/Subversion/ZFS family.)
  1255. # [05:56] <jld> (Or at least it was the last time I paid attention to it.)
  1256. # [05:56] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/45414e5a4324 - Mark Finkle - Backout 86253e0141c8 to avoid cross-branch merge isses from fx-team and bug 913985
  1257. # [05:57] * Quits: jhlin (jolin@E2F7352.56080C53.97BBD552.IP) (Ping timeout)
  1258. # [05:58] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Connection reset by peer)
  1259. # [05:58] * Joins: mconley_ (mconley@moz-D640D16C.cable.teksavvy.com)
  1260. # [05:58] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  1261. # [05:58] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/8edba0607fb6 - ffxbld - Automated checkin: version bump for firefox 26.0b6 release. DONTBUILD CLOSED TREE a=release
  1262. # [05:58] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/c9c9556e6560 - ffxbld - Added FIREFOX_26_0b6_RELEASE FIREFOX_26_0b6_BUILD1 tag(s) for changeset 8edba0607fb6. DONTBUILD CLOSED TREE a=release
  1263. # [05:58] * Quits: tonymec|away (tonymec@1C753549.4D4BECF.277517C1.IP) (Ping timeout)
  1264. # [05:59] * Quits: tonymec (tonymec@1C753549.4D4BECF.277517C1.IP) (Ping timeout)
  1265. # [06:00] * joduinn-afk is now known as joduinn
  1266. # [06:04] * Quits: Matti (Matti@moz-711DF8A3.dip0.t-ipconnect.de) (Ping timeout)
  1267. # [06:04] * bz is now known as bz_sleep
  1268. # [06:05] * Joins: smontagu (chatzilla@moz-D0D053E4.red.bezeqint.net)
  1269. # [06:06] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Quit: Konversation terminated!)
  1270. # [06:06] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/aa79f44147ac - Benoit Girard - Bug 939950 - Build gfx/2d in unified mode. r=bjacob,ehsan,bas
  1271. # [06:06] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/4d8015a52178 - Benoit Girard - Bug 936566 - Print mask layers in layers dump. r=nrc
  1272. # [06:07] * philor files a bug in Release Engineering::sfink
  1273. # [06:08] * Joins: Matti_away (Matti@moz-9F3D3A5D.dip0.t-ipconnect.de)
  1274. # [06:08] * Joins: jhlin (jolin@E2F7352.56080C53.97BBD552.IP)
  1275. # [06:08] * Matti_away is now known as Matti
  1276. # [06:08] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d0255c4b2adc - Jeff Muizelaar - Bug 845874. Switch to Y-X banded regions. r=roc
  1277. # [06:08] * Quits: jonasfj (jonasfj@C17491E2.CC4CD714.6946B6CD.IP) (Ping timeout)
  1278. # [06:11] <heftig> so the ux branch is closed now?
  1279. # [06:12] * glob is now known as glob|away
  1280. # [06:14] * Joins: vigneshwaran (vigneshwar@FC0B83FD.138D8F1E.FD6A0EFF.IP)
  1281. # [06:14] * Quits: vd (vd@moz-7A53EEF0.ddns.cablebg.net) (Ping timeout)
  1282. # [06:17] * Quits: karl (karl@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  1283. # [06:17] * Joins: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net)
  1284. # [06:18] * Joins: arky (arky@421A1FDC.3CD8288F.B9D97DBA.IP)
  1285. # [06:19] * Joins: janv (varga@BCF8EBD.C1B7BBD9.4F33160D.IP)
  1286. # [06:19] * Quits: coop (Chris@B0F7535B.D36C4CD0.B2D54A9E.IP) (Quit: coop)
  1287. # [06:20] * Joins: lgarner (lgarner@moz-771027BC.dsl.dynamic.sonic.net)
  1288. # [06:20] <padenot> is there a bug to block against for Australis regressions?
  1289. # [06:21] <heycam> https://bugzilla.mozilla.org/show_bug.cgi?id=939862
  1290. # [06:21] <padenot> heycam: brilliant, thanks
  1291. # [06:22] * Quits: mconley_ (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  1292. # [06:24] * Joins: jonasfj (jonasfj@C17491E2.CC4CD714.6946B6CD.IP)
  1293. # [06:25] * Quits: miketaylr (mtaylor@moz-8ACC7131.dyn.grandenetworks.net) (Quit: Linkinus - http://linkinus.com)
  1294. # [06:25] * Quits: ctangira (ctangira@moz-44402D73.cisco.com) (Quit: ctangira)
  1295. # [06:25] * Joins: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  1296. # [06:26] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Input/output error)
  1297. # [06:26] <gwagner> roc: ping
  1298. # [06:26] <@roc> hi
  1299. # [06:26] <sfink> I can't complain about the detail in that bug description
  1300. # [06:26] <gwagner> roc: hey! quick question. any idea who could help debugging https://bugzilla.mozilla.org/show_bug.cgi?id=935672#c26
  1301. # [06:27] * bc is now known as bc|afk
  1302. # [06:29] <@roc> gw280 maybe?
  1303. # [06:30] <gw280> hello
  1304. # [06:30] * Quits: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP) (Ping timeout)
  1305. # [06:30] * Quits: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Quit: Leaving)
  1306. # [06:31] * Joins: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  1307. # [06:31] <gwagner> gw280: hey! we need some help with bug 935672
  1308. # [06:31] <gw280> i'm just reading the bug
  1309. # [06:31] <sfink> er, wait. That log shows lots of futile retries
  1310. # [06:31] <gw280> looks like it's an issue with Demote()?
  1311. # [06:31] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/5c75acfe2076 - Nicholas Nethercote - Bug 819801 - In DMD builds, check that SQLite's reporting of its total memory consumption are correct. r=asuth.
  1312. # [06:32] <gwagner> gw280: thx. I don't know this part of geck at all :(
  1313. # [06:32] * Joins: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP)
  1314. # [06:32] * Quits: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Quit: Leaving)
  1315. # [06:32] * Joins: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  1316. # [06:32] <gw280> gwagner: ok, I can't really help right now as I'm trying to get some stuff done before I go to bed (it's 00:30 here right now)
  1317. # [06:32] <@njn> BenWa: major bustage
  1318. # [06:33] <gw280> gwagner: i may have some time to help out tomorrow. snorp is also familiar with this code
  1319. # [06:33] <gwagner> gw280: tomorrow is fine. thanks!
  1320. # [06:33] <philor> BenWa: I don't need to back out the other one, just the unified one, right?
  1321. # [06:34] <gw280> gwagner: cool
  1322. # [06:34] * Quits: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP) (Ping timeout)
  1323. # [06:34] <BenWa> philor: actually it may be caused by the other one. I did a try run before we unified layers
  1324. # [06:34] <BenWa> philor: give me a moment to look at it
  1325. # [06:34] <philor> oh, Layer::PrintInfo, yeah
  1326. # [06:35] <BenWa> philor: Backout just https://hg.mozilla.org/integration/mozilla-inbound/rev/4d8015a52178
  1327. # [06:35] <philor> thx
  1328. # [06:35] <BenWa> Looks like a midair failure
  1329. # [06:35] <philor> and kinetik is easy since it's just one
  1330. # [06:35] * Quits: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net) (Quit: damons)
  1331. # [06:36] <BenWa> unifying gives more aggressive warnings. Not sure if this is the reason here
  1332. # [06:36] * Joins: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP)
  1333. # [06:37] * Quits: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP) (Connection reset by peer)
  1334. # [06:38] * Joins: jrmuizel (jrmuizel@D87BD8D8.86AAE5E.9A8C35B4.IP)
  1335. # [06:38] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a8ead5ffba89 - Phil Ringnalda - Back out 4d8015a52178 (bug 936566) for build bustage
  1336. # [06:39] * Quits: micadeyeye_ (micadeyeye@moz-279CFFCB.telkomadsl.co.za) (Ping timeout)
  1337. # [06:39] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/5fd1b6c4ad77 - Phil Ringnalda - Back out 4fd2bf2ec8db (bug 939662) for Windows build bustage
  1338. # [06:39] * Quits: aklotz (Thunderbir@moz-935DE219.cg.shawcable.net) (Ping timeout)
  1339. # [06:40] <romaxa> hmm is it possible that specialPowers preference setup, does work on linux and does not work on windows ?
  1340. # [06:40] * Quits: jrmuizel (jrmuizel@D87BD8D8.86AAE5E.9A8C35B4.IP) (Client exited)
  1341. # [06:41] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Quit: Leaving.)
  1342. # [06:42] * Joins: aklotz (Thunderbir@moz-935DE219.cg.shawcable.net)
  1343. # [06:42] * Joins: jrmuizel (jrmuizel@D87BD8D8.86AAE5E.9A8C35B4.IP)
  1344. # [06:42] * Joins: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP)
  1345. # [06:43] * BenWa is now known as BenWa|email
  1346. # [06:44] * Quits: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP) (Connection reset by peer)
  1347. # [06:44] * glob|away is now known as glob
  1348. # [06:44] * Joins: tonymec|away (tonymec@F4FE647D.D525F1A5.277517C1.IP)
  1349. # [06:45] * Joins: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP)
  1350. # [06:47] * Joins: jet (jet@538BABFE.A073F3E.97BBD552.IP)
  1351. # [06:48] * Joins: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net)
  1352. # [06:49] * Quits: tonymec|away (tonymec@F4FE647D.D525F1A5.277517C1.IP) (Ping timeout)
  1353. # [06:49] * Quits: Earth4|away (cht-zla_un@moz-4DA476A6.static.snfr.nc.charter.com) (Ping timeout)
  1354. # [06:50] * mcote|afk is now known as mcote
  1355. # [06:51] * Joins: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net)
  1356. # [06:53] * Quits: Mook (mook@moz-DCA85209.dsl.teksavvy.com) (Quit: Mook)
  1357. # [06:54] <danieru> I have begone to love man pages. So much nicer than googling
  1358. # [06:54] * Quits: jdm (jdm@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1359. # [06:54] * Joins: nicklebedev (nicklebede@moz-29D843ED.net151.n37.ru)
  1360. # [06:55] * Quits: jrmuizel (jrmuizel@D87BD8D8.86AAE5E.9A8C35B4.IP) (Client exited)
  1361. # [06:59] * Joins: jdm (jdm@moz-99690620.hinet-ip.hinet.net)
  1362. # [07:01] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  1363. # [07:02] * Joins: sicking (sicking@moz-4BB97A06.hsd1.ca.comcast.net)
  1364. # [07:02] * Quits: Hughman (Mibbit@DF0C90CA.D2C20E22.A3B82EC7.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1365. # [07:03] * Joins: harth (harth@moz-A0276582.hsd1.ca.comcast.net)
  1366. # [07:04] <philor> the combination of our frequently bogus stacks and our bad hardware doesn't make looking at crashes much fun
  1367. # [07:04] <philor> https://tbpl.mozilla.org/php/getParsedLog.php?id=30743477&full=1&branch=mozilla-inbound#error0
  1368. # [07:04] <philor> am I hardware or not?
  1369. # [07:04] * Joins: tonymec|away (tonymec@9B9AE8FA.64732CAE.277517C1.IP)
  1370. # [07:05] * Quits: @roc (chatzilla@E2F7352.56080C53.97BBD552.IP) (Ping timeout)
  1371. # [07:05] * Quits: nicklebedev (nicklebede@moz-29D843ED.net151.n37.ru) (Ping timeout)
  1372. # [07:06] * Joins: jrm2k6 (jrm2k6@moz-7278A08.catv.broadband.hu)
  1373. # [07:08] * Quits: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP) (Connection reset by peer)
  1374. # [07:09] * Joins: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP)
  1375. # [07:10] * Joins: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  1376. # [07:12] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/82f5dee1c0ad - Kyle Huey - Bug 936327. r=bent
  1377. # [07:12] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/035de60adb27 - Kyle Huey - Bug 940071: Free the proto and iface cache for generated globals. r=bz
  1378. # [07:12] * Joins: teoli (teoli@moz-6390FC96.range86-140.btcentralplus.com)
  1379. # [07:13] * Quits: jhlin (jolin@E2F7352.56080C53.97BBD552.IP) (Ping timeout)
  1380. # [07:14] * Joins: vendo (chatzilla@24F08834.CE4DDBE6.300931B2.IP)
  1381. # [07:15] <shu> khuey: ping
  1382. # [07:15] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f9aebddb6938 - Chris Peterson - Bug 939578 - Build netwerk/streamconv in unified mode. r=mcmanus
  1383. # [07:15] * Joins: tonymec (tonymec@9B9AE8FA.64732CAE.277517C1.IP)
  1384. # [07:16] <mjrosenb> sewardj_: ping?
  1385. # [07:17] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d1c341894d47 - Joshua Cranmer - Bug 940202 - Make FINAL_LIBRARY work with comm-central, r=glandium
  1386. # [07:17] * Joins: givanica (givanica@moz-43556F8A.residential.rdsnet.ro)
  1387. # [07:18] * Joins: karl (karl@moz-C433B975.jetstream.xtra.co.nz)
  1388. # [07:19] <khuey> shu: pong
  1389. # [07:20] <shu> khuey: i posted graphs in bug 937997 for a push that resulted in OOM in the cycle collector on win7
  1390. # [07:20] * Joins: redwood (chatzilla@26E73836.156CBEAD.74E1C77A.IP)
  1391. # [07:20] <shu> khuey: fragmentation does seem kind of bad as opposed to a green run
  1392. # [07:21] * Quits: givanica (givanica@moz-43556F8A.residential.rdsnet.ro) (Quit: ~ Trillian - www.trillian.im ~)
  1393. # [07:21] <shu> khuey: can you take a look at the test names when it starts to dip and see they say anything to you
  1394. # [07:21] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/41a3b2a8e738 - Joshua Cranmer - Bug 940202 followup, due to missing a review comment.
  1395. # [07:21] <philor> they say "kill tabview like you promised, you PROMISED" to me
  1396. # [07:23] <khuey> shu: this is pretty neat
  1397. # [07:23] * Joins: teoli_ (teoli@moz-6390FC96.range86-140.btcentralplus.com)
  1398. # [07:23] * Quits: teoli (teoli@moz-6390FC96.range86-140.btcentralplus.com) (No route to host)
  1399. # [07:23] <shu> khuey: whatever it takes to get myself relanded...
  1400. # [07:23] * Quits: aja (Instantbir@E3021E12.A2BBCAA5.7880DB15.IP) (Connection reset by peer)
  1401. # [07:23] * Joins: aja (Instantbir@E3021E12.A2BBCAA5.7880DB15.IP)
  1402. # [07:24] * philor considers the leak that's stopping us from landing chunked browser-chrome
  1403. # [07:24] <philor> fix that, you could probably reland on the extra headroom that three chunks would buy :)
  1404. # [07:24] <mjrosenb> !seen sewardj_
  1405. # [07:24] <firebot> sewardj_ was last seen 2 days, 21 hours, 22 minutes and 51 seconds ago, changing nick to sewardj.
  1406. # [07:24] <khuey> so the browser_dbg_variables tests look pretty bad
  1407. # [07:25] <mjrosenb> !seen sewardj
  1408. # [07:25] <firebot> sewardj was last seen 3 weeks, 4 days, 19 hours, 21 minutes and 18 seconds ago, saying 'glandium: I was using a too-old platform version.' in #perf.
  1409. # [07:25] <sfink> I dunno, shu's generating some pretty amazing instrumentation. I say we come up with imaginary reasons to keep him from landing just get to more of these memory graphing tools.
  1410. # [07:25] <khuey> we don't appear to ever reclaim their memory
  1411. # [07:25] <mjrosenb> ...
  1412. # [07:25] * Joins: adalucinet (Mibbit@28C4EA76.976FBEE.5BC07656.IP)
  1413. # [07:25] <shu> khuey: yeah, withot the forceGC the variable-view stuff kill memory
  1414. # [07:25] <khuey> although yeah, the main difference between the good and bad runs appears to be tabview
  1415. # [07:26] <shu> khuey: but it's still within OOM bounds
  1416. # [07:26] <shu> khuey: (on a good run), on a bad run, if the allocator messed up before it got to the variable view stuff, once we get there we go downhill pretty fast
  1417. # [07:26] <khuey> right
  1418. # [07:27] * Quits: tonymec|away (tonymec@9B9AE8FA.64732CAE.277517C1.IP) (Ping timeout)
  1419. # [07:27] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  1420. # [07:27] <khuey> shu: are these the only 3 pieces of data you have? or do you have all of about:memory?
  1421. # [07:27] * Joins: givanica (givanica@moz-43556F8A.residential.rdsnet.ro)
  1422. # [07:27] * Quits: tonymec (tonymec@9B9AE8FA.64732CAE.277517C1.IP) (Ping timeout)
  1423. # [07:28] * mattwoodrow is now known as mattwoodrow|away
  1424. # [07:28] <shu> khuey: no, i don't have about:memory
  1425. # [07:28] <khuey> ok
  1426. # [07:28] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1427. # [07:28] <khuey> I would be curious to know what the JS heap unused percentage is
  1428. # [07:29] <shu> khuey: i don't think we had a working patch that dumped it and made it gettable from try builds
  1429. # [07:29] * Quits: ethan (chatzilla@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1430. # [07:29] <shu> khuey: if you have a window machine, this try push OOMs consistently: https://tbpl.mozilla.org/?tree=Try&rev=53b2b69cadc6
  1431. # [07:29] * Quits: jet (jet@538BABFE.A073F3E.97BBD552.IP) (Quit: jet)
  1432. # [07:29] <shu> oh that reminds me, i should point dmajor to that
  1433. # [07:30] <philor> jcranmer: did your followup fix b2g desktop bustage?
  1434. # [07:30] * Joins: ethan (chatzilla@moz-99690620.hinet-ip.hinet.net)
  1435. # [07:31] <khuey> shu: and that is with the forceGC calls removed?
  1436. # [07:31] * Quits: WeirdAl (chatzilla@moz-527389C3.hsd1.ca.comcast.net) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0.1/20131112160018])
  1437. # [07:31] <jcranmer> philor: maybe
  1438. # [07:32] <shu> khuey: correct
  1439. # [07:32] <khuey> shu: do we understand why the engine's heuristics aren't kicking in and causing GCs?
  1440. # [07:32] * Quits: givanica (givanica@moz-43556F8A.residential.rdsnet.ro) (Quit: ~ Trillian - www.trillian.im ~)
  1441. # [07:32] * Joins: abr (abr@1C05CC21.246E5E69.4AE11518.IP)
  1442. # [07:32] <philor> '....mfbt/mfbt.lib'
  1443. # [07:33] <shu> khuey: i have some about:memory dumps from a local linux run that i looked at for the debugger tests
  1444. # [07:33] <jcranmer> philor: I'm not 100% sure, but given the fix, I would be more surprised if it wasn't fixed than if it were fixed
  1445. # [07:34] <jcranmer> philor: the slave has also been running for 14 minutes, significantly longer than the 6 minutes it ran before it failed the last time
  1446. # [07:34] <philor> sold
  1447. # [07:35] <shu> khuey: even with forceGCs, they take a while to reclaim, not sure why. most of the memory is from VariablesView.jsm + dictionary shapes
  1448. # [07:35] <khuey> shu: shapes inside VariablesView.jsm?
  1449. # [07:35] <khuey> or other stuff inside VariablesView.jsm?
  1450. # [07:35] * Joins: tonymec|away (tonymec@A70AF8F3.9975E42C.A9371869.IP)
  1451. # [07:36] <shu> khuey: let me load it up again
  1452. # [07:36] * Joins: nicklebedev (nicklebede@moz-838152B8.net135.n37.ru)
  1453. # [07:36] * Quits: teoli_ (teoli@moz-6390FC96.range86-140.btcentralplus.com) (No route to host)
  1454. # [07:36] * Joins: teoli (teoli@moz-6390FC96.range86-140.btcentralplus.com)
  1455. # [07:37] * Quits: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net) (Quit: pcwalton)
  1456. # [07:38] * Quits: teoli (teoli@moz-6390FC96.range86-140.btcentralplus.com) (No route to host)
  1457. # [07:39] * Joins: teoli (teoli@moz-6390FC96.range86-140.btcentralplus.com)
  1458. # [07:41] * Joins: teoli_ (teoli@moz-6390FC96.range86-140.btcentralplus.com)
  1459. # [07:41] * Quits: teoli (teoli@moz-6390FC96.range86-140.btcentralplus.com) (Connection reset by peer)
  1460. # [07:42] * Joins: grobinson|laptop (grob_@moz-A22BFFCA.tuxli.ch)
  1461. # [07:42] * mattwoodrow|away is now known as mattwoodrow
  1462. # [07:42] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1463. # [07:42] * Quits: teoli_ (teoli@moz-6390FC96.range86-140.btcentralplus.com) (Connection reset by peer)
  1464. # [07:44] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  1465. # [07:44] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/49c0a2303a8b - Nicholas Nethercote - Bug 921224 (part 2) - Use a smaller mark stack when incremental GC is disabled. r=wmccloskey.
  1466. # [07:44] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ad3b4011a11d - Nicholas Nethercote - Bug 921224 (part 1) - Don't use ballast in MarkStack. r=wmccloskey.
  1467. # [07:45] * Quits: rniwa (rniwa@91150433.D69BB17B.3BFD8A78.IP) (Quit: rniwa)
  1468. # [07:45] * Joins: teoli (teoli@moz-A405C8B0.range81-157.btcentralplus.com)
  1469. # [07:46] * mcote is now known as mcote|afk
  1470. # [07:48] * Quits: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net) (Input/output error)
  1471. # [07:49] * Joins: tonymec (tonymec@A70AF8F3.9975E42C.A9371869.IP)
  1472. # [07:49] * Quits: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net) (Quit: damons)
  1473. # [07:52] * Quits: jonasfj (jonasfj@C17491E2.CC4CD714.6946B6CD.IP) (Ping timeout)
  1474. # [07:54] * Joins: rniwa (rniwa@573BF1B5.1A6EB244.3BFD8A78.IP)
  1475. # [07:55] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Connection reset by peer)
  1476. # [07:55] * whimboo|afk is now known as whimboo
  1477. # [07:56] * Joins: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com)
  1478. # [07:56] * Joins: timdream (timdream@moz-99690620.hinet-ip.hinet.net)
  1479. # [07:56] * Callek is now known as Callek_disconnected
  1480. # [07:56] <timdream> masayuki: ping
  1481. # [07:57] <timdream> masayuki: do you know if the relative spec have ever specify the order of 'compositionupdate' and 'input' event?
  1482. # [07:58] * Quits: nattokirai (nattokirai@moz-C286AD9A.bitcat.net) (Ping timeout)
  1483. # [07:58] * heycam is now known as heycam|away
  1484. # [07:59] * Quits: jrm2k6 (jrm2k6@moz-7278A08.catv.broadband.hu) (Client exited)
  1485. # [07:59] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/9eecc7a369fd - Makoto Kato - Bug 915217 - incorrect anaylzing mov [r64+disp], imm32. r=ehsan
  1486. # [08:00] <masayuki> timdream: compositionupdate must be fired *before* DOM change is occurred. I.e., compositionupdate -> DOM change -> input
  1487. # [08:01] <timdream> masayuki: hum, it doesn't look like what CompositionStringSynthesizer behaves, will test more and file bug (if there is)
  1488. # [08:02] * Quits: ehugg (ehugg@BAF628CB.AD48CA0A.EBB03D7A.IP) (Quit: ehugg)
  1489. # [08:02] * jcranmer is now known as jcranmer|away
  1490. # [08:02] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  1491. # [08:02] <masayuki> timdream: spec is here: https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#h5_events-composition-event-input-events
  1492. # [08:03] <timdream> masayuki: thanks
  1493. # [08:03] <masayuki> timdream: compositionupdate isn't fired from CompositionStringSynthesizer
  1494. # [08:04] <timdream> masayuki: ha, yeah, it's my own bug :-P
  1495. # [08:04] <masayuki> timdream: use nsIDOMWindowUtils::sendCompositionEvent()
  1496. # [08:04] <timdream> masayuki: yeah, found it, LOL
  1497. # [08:04] * philor is now known as philor|away
  1498. # [08:06] * Joins: smaug (chatzilla@moz-9E0B1701.pp.htv.fi)
  1499. # [08:06] * ChanServ sets mode: +o smaug
  1500. # [08:09] * Tomcat|afk is now known as Tomcat|sheriffduty
  1501. # [08:10] * Fallen|away is now known as Fallen
  1502. # [08:10] * Quits: danieru (danieru@C8E26E42.55A00C18.F9917295.IP) (Client exited)
  1503. # [08:10] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/8fbd95b383a2 - Mike Hommey - Bug 940202 - One more followup to properly use $(DEPTH) on windows. rs=jcranmer
  1504. # [08:11] * Joins: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de)
  1505. # [08:13] <Tomcat|sheriffduty> good morning guys
  1506. # [08:13] <Tomcat|sheriffduty> hey timdream , sorry somehow my backout comment landed in a different bug
  1507. # [08:14] <timdream> Tomcat|sheriffduty: never mind.
  1508. # [08:14] <timdream> Tomcat|sheriffduty: but I afraid we reach the same situation where Unit test runs fine on Travis CI but failed on TBPL
  1509. # [08:15] <Tomcat|sheriffduty> yeah
  1510. # [08:16] <Tomcat|sheriffduty> timdream: i can sent another mail to the other sheriffs and zac to look into this
  1511. # [08:16] * Joins: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net)
  1512. # [08:17] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a8b6838d5999 - Matt Brubeck - Bug 936754 - Fire dblclick event for double-taps in Metro.r=jimm
  1513. # [08:17] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a0a0f6274fa2 - Allison Naaktgeboren - Bug 895581 Double tap should zoom content instead of selecting text.r=mbrubeck
  1514. # [08:17] * mattwoodrow is now known as mattwoodrow|away
  1515. # [08:18] * mattwoodrow|away is now known as mattwoodrow
  1516. # [08:18] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/1dbd840a2eba - Mike Hommey - Bug 938526 - Ignore import libraries when dealing with --extract in expandlibs_exec.py. r=khuey
  1517. # [08:19] * Joins: pbocan (Thunderbir@moz-953AC81B.feld.cvut.cz)
  1518. # [08:19] * Joins: zsteve (zsteve@567B7B27.377B88F2.1611EE05.IP)
  1519. # [08:20] * Quits: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Input/output error)
  1520. # [08:21] * Joins: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  1521. # [08:24] * Joins: wolfiR (wolfiR@moz-42609ABC.dip0.t-ipconnect.de)
  1522. # [08:24] * Quits: ethan (chatzilla@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1523. # [08:24] * Quits: tonymec (tonymec@A70AF8F3.9975E42C.A9371869.IP) (Ping timeout)
  1524. # [08:24] * Joins: ethan (chatzilla@moz-853B369C.dynamic.hinet.net)
  1525. # [08:24] * Joins: AndreeaMatei (Thunderbir@601F3B17.33662590.A5830293.IP)
  1526. # [08:25] * Joins: Jackneill (Jackneill@moz-25A39FB3.pool.digikabel.hu)
  1527. # [08:25] * Quits: tonymec|away (tonymec@A70AF8F3.9975E42C.A9371869.IP) (Ping timeout)
  1528. # [08:26] <Tomcat|sheriffduty> timdream: mail sent, maybe zac can give some insights how to fix
  1529. # [08:27] * Joins: valenting (Thunderbir@808EE6B5.84D5EFD5.FB866788.IP)
  1530. # [08:29] * Joins: fredw (fredw@moz-B9C110E2.fbx.proxad.net)
  1531. # [08:29] * Quits: fredw (fredw@moz-B9C110E2.fbx.proxad.net) (Quit: Leaving.)
  1532. # [08:29] * Parts: gwagner (Gregor@moz-B8B530C2.hsd1.ca.comcast.net)
  1533. # [08:30] * Joins: jaoo (user@moz-6599B16F.red-83-46-195.dynamicip.rima-tde.net)
  1534. # [08:33] * Quits: cdiehl (cdiehl@moz-DB639AF9.pool.mediaways.net) (Ping timeout)
  1535. # [08:33] * Quits: pbocan (Thunderbir@moz-953AC81B.feld.cvut.cz) (Quit: pbocan)
  1536. # [08:33] * Joins: cdiehl (cdiehl@moz-6347CB81.pool.mediaways.net)
  1537. # [08:33] * Quits: vigneshwaran (vigneshwar@FC0B83FD.138D8F1E.FD6A0EFF.IP) (Ping timeout)
  1538. # [08:33] * Quits: valenting (Thunderbir@808EE6B5.84D5EFD5.FB866788.IP) (Ping timeout)
  1539. # [08:34] * Quits: ckerschb1 (ckerschb@moz-DF6EADF2.vp.reshsg.uci.edu) (Quit: Leaving.)
  1540. # [08:35] * Joins: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl)
  1541. # [08:36] * Joins: vigneshwaran (vigneshwar@FC0B83FD.138D8F1E.FD6A0EFF.IP)
  1542. # [08:39] * Joins: victorporof (victorporo@79FE7CA6.284D02A8.D111398B.IP)
  1543. # [08:39] * Quits: arky (arky@421A1FDC.3CD8288F.B9D97DBA.IP) (Ping timeout)
  1544. # [08:40] * Quits: briansmith (briansmith@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  1545. # [08:41] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/5cda44ae1ba0 - Jan Varga - Bug 921478 - Remove BackstagePass IDB constructor resolve hook and use Cu.importGlobalProperties. r=bholley,bent
  1546. # [08:41] * Quits: grobinson|laptop (grob_@moz-A22BFFCA.tuxli.ch) (Ping timeout)
  1547. # [08:41] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/e07cab8a2732 - Vendelin Ruzicka - Bug 921478 - Part 2: Convert test_contacts_upgrade.html to real chrome mochitest. r=bent
  1548. # [08:43] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1549. # [08:45] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  1550. # [08:45] * Joins: annevk (annevk@8CEE44C9.4F390C2A.420B7681.IP)
  1551. # [08:49] * Quits: juanb (jbecerra@moz-F1012875.hsd1.ca.comcast.net) (Quit: juanb)
  1552. # [08:49] * Joins: zakora (NC@moz-8EAF945F.fbx.proxad.net)
  1553. # [08:49] * corey is now known as corey|away
  1554. # [08:50] <zsteve> could I have some help with the docshell tree?
  1555. # [08:51] <khuey> what sort of help?
  1556. # [08:51] * Quits: trevorh1 (trevor@moz-B94122FA.lns21.adl2.internode.on.net) (Quit: Leaving.)
  1557. # [08:51] * Joins: inolen (Adium@moz-E4D78779.socal.res.rr.com)
  1558. # [08:52] <zsteve> I need to find the parent document of an nsDocument
  1559. # [08:52] * Joins: Optimize1 (Instantbir@4F3E1057.A6DE773B.88FACCAA.IP)
  1560. # [08:52] <zsteve> apparently CheckSameOrigin() isn't working
  1561. # [08:53] <zsteve> mParentDocument == nullptr for what I'm working on
  1562. # [08:53] <zsteve> https://bugzilla.mozilla.org/show_bug.cgi?id=752559#c16
  1563. # [08:53] * Joins: dobalina (dobalina@moz-26175008.rev.numericable.fr)
  1564. # [08:56] <@smaug> document->GetWindow()->GetFrameElementInternal()->OwnerDoc() is one way
  1565. # [08:57] * Joins: grobinson|laptop (grob_@moz-F92F288A.chrismail.de)
  1566. # [08:58] <@smaug> but I wonder why mParentDocument is null
  1567. # [08:58] * Joins: ethan_ (chatzilla@moz-99690620.hinet-ip.hinet.net)
  1568. # [08:58] * Quits: ethan (chatzilla@moz-853B369C.dynamic.hinet.net) (Ping timeout)
  1569. # [08:58] * ethan_ is now known as ethan
  1570. # [08:58] <zsteve> would the fact that this is in StartDocumentLoad() affect it?
  1571. # [08:59] <zsteve> or can I use an nsIDocShellTreeItem to go up?
  1572. # [09:00] * Joins: jkitch (Thunderbir@moz-1421D5E8.lns21.adl2.internode.on.net)
  1573. # [09:00] * Quits: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Quit: masayuki1)
  1574. # [09:00] * Joins: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  1575. # [09:02] <@smaug> brb
  1576. # [09:02] * Joins: jhorak (jhorak@moz-107AD163.redhat.com)
  1577. # [09:04] * Quits: matthewgertner (matthewger@E05025B2.7102BCB6.B7C3970A.IP) (Quit: matthewgertner)
  1578. # [09:07] * glob is now known as glob|away
  1579. # [09:10] * Joins: gabor (gabor@moz-A74A9206.dip0.t-ipconnect.de)
  1580. # [09:11] * Joins: glazou (glazou@D8B9C081.E820043D.D4C04133.IP)
  1581. # [09:11] <glazou> bonjour
  1582. # [09:12] * Parts: aja (Instantbir@E3021E12.A2BBCAA5.7880DB15.IP)
  1583. # [09:14] <smontagu> is it just me or do other people see older builds crashing on Linux?
  1584. # [09:14] <smontagu> where older ≅ more than 18 months ago?
  1585. # [09:16] * Quits: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net) (Quit: damons)
  1586. # [09:19] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  1587. # [09:20] <glandium> smontagu: define crashing, and define builds
  1588. # [09:20] * Joins: edmorley (~edmorleys@moz-8F6F2E9.cable.virginm.net)
  1589. # [09:22] * Joins: dao (dao@moz-7D224C0C.superkabel.de)
  1590. # [09:23] * Quits: grobinson|laptop (grob_@moz-F92F288A.chrismail.de) (Ping timeout)
  1591. # [09:23] <smontagu> glandium: builds = downloaded x86_64 nightlies
  1592. # [09:23] <smontagu> crashing = on startup "Firefox has crashed" dialog appears
  1593. # [09:23] <glandium> smontagu: interesting
  1594. # [09:23] <glandium> smontagu: which one in particular?
  1595. # [09:23] <smontagu> 2012-08-15 doesn't crash, 2012-06-01 and earlier do
  1596. # [09:24] <glandium> smontagu: so, ftp://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/2012/06/2012-06-01-03-05-20-mozilla-central/firefox-15.0a1.en-US.linux-x86_64.tar.bz2 would crash for you?
  1597. # [09:24] * Quits: Jackneill (Jackneill@moz-25A39FB3.pool.digikabel.hu) (Input/output error)
  1598. # [09:25] <glandium> yep, crashes for me too
  1599. # [09:25] <smontagu> I assume that's what I was using, yes.
  1600. # [09:25] <smontagu> glandium: this is on Ubuntu 13.4
  1601. # [09:26] <glandium> ah, that reminds me of something
  1602. # [09:26] <NeilAway> does mach record a log of a build? I'm getting an error but there's too many warnings to see it in my terminal :s
  1603. # [09:26] <glandium> NeilAway: i don't think it does by default
  1604. # [09:26] * smontagu wonders if he reminded glandium of the same thing he reminded himself of
  1605. # [09:27] <smontagu> I saw a blogpost saying 13.10 had problems building Firefox, anyone know if that's been fixed?
  1606. # [09:27] <glandium> smontagu: what did you remind yourself or?
  1607. # [09:27] <glandium> of
  1608. # [09:27] <smontagu> glandium ^^
  1609. # [09:27] <glandium> i'm not aware of build problems on 13.10
  1610. # [09:28] * Joins: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP)
  1611. # [09:28] * Joins: gcp (gpascutto@A7F52B0C.52BAB490.46167C6F.IP)
  1612. # [09:28] * Quits: jduell (jduell@moz-3A304D92.hsd1.wa.comcast.net) (Input/output error)
  1613. # [09:28] <NeilAway> glandium: ok
  1614. # [09:29] <glandium> smontagu: bug 771569 is why those builds crash
  1615. # [09:29] <NeilAway> glandium: I don't suppose you know why mach outputs extra "blank" lines?
  1616. # [09:29] <glandium> NeilAway: no
  1617. # [09:29] <glandium> smontagu: (i think)
  1618. # [09:29] <@njn> whoa, looks like Australis landed, judging by the curvy tabs I have in my trunk build
  1619. # [09:30] <smontagu> glandium: I assume there's no workaround
  1620. # [09:30] <glandium> smontagu: there is, let me test it
  1621. # [09:30] <NeilAway> glandium: ok, now a real build question, any idea why I get unresolved external symbol _malloc_usable_size referenced in function _sqlite3MemSize when linking nss3.dll?
  1622. # [09:30] <glandium> NeilAway: because you're not on up-to-date m-i
  1623. # [09:31] <glandium> NeilAway: bug 938526
  1624. # [09:32] <NeilAway> glandium: ooh, I remember hitting that before
  1625. # [09:32] <smontagu> glandium: https://blog.mozilla.org/nnethercote/2013/10/24/warning-for-firefox-devs-planning-to-upgrade-to-ubuntu-13-10/
  1626. # [09:33] <glandium> smontagu: ah, i thought you were talking about something that would actually be our fault
  1627. # [09:33] * Joins: matthewgertner (matthewger@173F2E9D.96442F2E.EE1C58A.IP)
  1628. # [09:33] * Joins: lpy (lpy@C3406AEB.F09091A8.1348A864.IP)
  1629. # [09:34] * Joins: Ms2ger (Ms2ger@moz-27A4C0A.ugent.be)
  1630. # [09:34] <glandium> smontagu: so, unfortunately, the workaround doesn't work
  1631. # [09:35] * Quits: Ms2ger (Ms2ger@moz-27A4C0A.ugent.be) (Max SendQ exceeded)
  1632. # [09:36] * Joins: cpearce_laptop (chatzilla@moz-EC1018D1.jetstream.xtra.co.nz)
  1633. # [09:36] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/ba9ecdea3a90 - Nicholas Nethercote - Bug 940069 - Land a temporary debugging printf that runs on --enable-valgrind builds only, because Valgrind runs aren't available on tryserver. r=me.
  1634. # [09:38] * Quits: @njn (chatzilla@moz-BCC137C2.dyn.iinet.net.au) (Quit: ChatZilla 0.9.90.1 [Firefox 28.0a1/20131115043404])
  1635. # [09:38] * Quits: zsteve (zsteve@567B7B27.377B88F2.1611EE05.IP) (Client exited)
  1636. # [09:40] * Quits: gabor (gabor@moz-A74A9206.dip0.t-ipconnect.de) (Ping timeout)
  1637. # [09:40] <glandium> smontagu: okay, the workaround works, with a patch
  1638. # [09:41] <glandium> smontagu: so, apply this patch to your m-c tree https://diff.pastebin.mozilla.org/3633784
  1639. # [09:41] <glandium> smontagu: rebuild in objdir/build/unix/elfhack
  1640. # [09:42] <glandium> smontagu: then run objdir/build/unix/elfhack -r /path/to/old/firefox/*.so
  1641. # [09:42] * Quits: gcp (gpascutto@A7F52B0C.52BAB490.46167C6F.IP) (Quit: Make a new plan, Stan!)
  1642. # [09:44] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1643. # [09:44] * Joins: gabor (gabor@moz-A74A9206.dip0.t-ipconnect.de)
  1644. # [09:44] * Joins: erikvold (erikvold@4D2313B7.CEB4024D.BD7E11C1.IP)
  1645. # [09:45] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  1646. # [09:45] <smontagu> glandium: I've booted into windows meanwhile, I"ll try that out later
  1647. # [09:46] * Quits: victorporof (victorporo@79FE7CA6.284D02A8.D111398B.IP) (Quit: victorporof)
  1648. # [09:46] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  1649. # [09:46] * Quits: zakora (NC@moz-8EAF945F.fbx.proxad.net) (Quit: Computer has gone to sleep.)
  1650. # [09:48] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a045549217e2 - Nicholas Nethercote - Bug 939385 (part 2) - Expose vsizeMaxContiguous to telemetry. r=froydnj.
  1651. # [09:48] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/027fced104dc - Nicholas Nethercote - Bug 939385 (part 4) - Rename some distinguished amount functions. r=froydnj.
  1652. # [09:48] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/65048ac4ae6f - Nicholas Nethercote - Bug 939385 (part 3) - Expose vsizeMaxContiguous to about:memory. r=froydnj.
  1653. # [09:48] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a06dd3421421 - Nicholas Nethercote - Bug 939385 (part 1) - Rename largestContiguousVMBlock as vsizeMaxContiguous. r=froydnj.
  1654. # [09:50] * Quits: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Ping timeout)
  1655. # [09:51] * Joins: gandalf (zbraniecki@moz-B6E035E9.hsd1.ca.comcast.net)
  1656. # [09:51] * Joins: petruta (Mibbit@601F3B17.33662590.A5830293.IP)
  1657. # [09:52] * Joins: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  1658. # [09:52] * Quits: lpy (lpy@C3406AEB.F09091A8.1348A864.IP) (Ping timeout)
  1659. # [09:52] * Joins: lpy (lpy@7360AA58.F09091A8.1348A864.IP)
  1660. # [09:53] * Quits: squib (squib@moz-5175C098.dhcp.mdsn.wi.charter.com) (Quit: Leaving)
  1661. # [09:53] * Joins: rvitillo (vitillo@2D19BBF3.D1BEC4BB.30311652.IP)
  1662. # [09:55] * Joins: zakora (NC@moz-8EAF945F.fbx.proxad.net)
  1663. # [09:56] * Joins: gerv (Instantbir@moz-8E68CF56.in-addr.arpa)
  1664. # [09:57] * Quits: glazou (glazou@D8B9C081.E820043D.D4C04133.IP) (Ping timeout)
  1665. # [09:58] * Quits: annevk (annevk@8CEE44C9.4F390C2A.420B7681.IP) (Input/output error)
  1666. # [09:58] * Joins: h4writer (h4writer@moz-6BDA8831.access.telenet.be)
  1667. # [09:58] * Quits: rvitillo (vitillo@2D19BBF3.D1BEC4BB.30311652.IP) (Quit: rvitillo)
  1668. # [09:59] * Joins: jet (jet@538BABFE.A073F3E.97BBD552.IP)
  1669. # [10:01] * Quits: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP) (Quit: RealRaven)
  1670. # [10:01] * Joins: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP)
  1671. # [10:01] * Quits: jet (jet@538BABFE.A073F3E.97BBD552.IP) (Quit: jet)
  1672. # [10:02] * Quits: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Ping timeout)
  1673. # [10:04] * Quits: karl (karl@moz-C433B975.jetstream.xtra.co.nz) (Ping timeout)
  1674. # [10:05] * Joins: ss1905 (ss1905@5D1E8B58.574C31B9.3FDAF6BC.IP)
  1675. # [10:07] * Joins: Kailas (patilkr@21ABB6A8.FBB3C975.EA0E6944.IP)
  1676. # [10:07] <gaston> hmpf
  1677. # [10:07] <gaston> Program received signal SIGBUS, Bus error.
  1678. # [10:07] <gaston> 0x0000157d5eb31ed6 in gr_slot_linebreak_before () from /home/landry/firefox/libxul.so.1.0
  1679. # [10:08] * Joins: ggp (ggp@moz-3913D97B.dsl.telesp.net.br)
  1680. # [10:08] <gaston> so much for australis working ootb on npotb platforms..
  1681. # [10:09] * Quits: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP) (Quit: RealRaven)
  1682. # [10:09] <glandium> gaston: most likely unrelated to australis
  1683. # [10:09] <glandium> gaston: what changeset?
  1684. # [10:09] <gaston> i hope so :)
  1685. # [10:09] <gaston> f2adb62d07eb
  1686. # [10:09] * Joins: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP)
  1687. # [10:10] <gaston> the ui starts up, but as soon as something tries to be painted in the actual page it blows
  1688. # [10:10] <glandium> gaston: so that's before my landing, phew
  1689. # [10:10] <gaston> oh well i'll try a local build on this machine, maybe its just libs mismatch between builder & desktop
  1690. # [10:11] <glandium> gaston: you may want to try current m-c, i may have blown you up
  1691. # [10:11] * Quits: gandalf (zbraniecki@moz-B6E035E9.hsd1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  1692. # [10:11] <gaston> :(
  1693. # [10:11] <gaston> where/why/how/which bug ?
  1694. # [10:11] <glandium> gaston: depends if your linker is nice with __attribute__((section))
  1695. # [10:11] * jchen is now known as jchen|away
  1696. # [10:11] <glandium> gaston: 938437
  1697. # [10:11] <gaston> my linker is 10 years old
  1698. # [10:12] <gaston> so it's m-i tip now ?
  1699. # [10:12] <gaston> trying a build...
  1700. # [10:12] * Quits: lzzluca (lzzluca@moz-10429979.static.virginmediabusiness.co.uk) (Quit: Ex-Chat)
  1701. # [10:13] * AndreeaMatei is now known as Andreea|mtg
  1702. # [10:13] * Joins: lzzluca (lzzluca@moz-10429979.static.virginmediabusiness.co.uk)
  1703. # [10:13] <@smaug> 10 years old linker sounds a bit, well, old
  1704. # [10:13] <glandium> smaug: well, it's openbsd
  1705. # [10:14] * Joins: briansmith (briansmith@moz-25F87A36.utilitytelephone.net)
  1706. # [10:14] <gaston> smaug: gimme a working toolchain not under gplv3 that works on lots of archs ...
  1707. # [10:15] <gaston> glandium: kicked off a build with m-i tip, we'll see in a bunch of hours
  1708. # [10:17] * Quits: @smaug (chatzilla@moz-9E0B1701.pp.htv.fi) (Input/output error)
  1709. # [10:18] * Quits: cpearce_laptop (chatzilla@moz-EC1018D1.jetstream.xtra.co.nz) (Ping timeout)
  1710. # [10:18] * Joins: loadbang (simon@moz-284E462E.range86-169.btcentralplus.com)
  1711. # [10:18] * Quits: sfoster|afk (sfoster@moz-961AB6F2.hsd1.or.comcast.net) (Ping timeout)
  1712. # [10:18] * Joins: smaug (chatzilla@moz-9E0B1701.pp.htv.fi)
  1713. # [10:18] * ChanServ sets mode: +o smaug
  1714. # [10:20] * Quits: harth (harth@moz-A0276582.hsd1.ca.comcast.net) (Input/output error)
  1715. # [10:22] * Quits: dobalina (dobalina@moz-26175008.rev.numericable.fr) (Quit: Quiting...)
  1716. # [10:22] <@smaug> there was some name for the new Australis menu
  1717. # [10:22] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  1718. # [10:22] <@smaug> the one on the right side
  1719. # [10:23] * Quits: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP) (Quit: RealRaven)
  1720. # [10:23] * deian is now known as deian|away
  1721. # [10:23] * Joins: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP)
  1722. # [10:24] <smontagu> smaug: trigram for heaven
  1723. # [10:24] <smontagu> aka U+2630
  1724. # [10:24] * Joins: Manuela (manuela_mu@601F3B17.33662590.A5830293.IP)
  1725. # [10:24] * Joins: jgilbert (jgilbert@moz-4C088FCE.hsd1.ca.comcast.net)
  1726. # [10:25] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Ping timeout)
  1727. # [10:25] * Joins: victorporof (victorporo@79FE7CA6.284D02A8.D111398B.IP)
  1728. # [10:25] <gaston> oh, a build pre-australis also blows at runtime
  1729. # [10:26] <gaston> so i wont blame australis :)
  1730. # [10:26] * Joins: harth (harth@moz-A0276582.hsd1.ca.comcast.net)
  1731. # [10:26] * Joins: Gijs (gijs@moz-C11B0461.dsl.alice.nl)
  1732. # [10:27] * Joins: tallowen (tallowen@moz-ACF23BB3.hsd1.wa.comcast.net)
  1733. # [10:27] * Joins: rvitillo (vitillo@2D19BBF3.D1BEC4BB.30311652.IP)
  1734. # [10:27] * Joins: andreasn (andreasn@moz-54A49F8D.a336.priv.bahnhof.se)
  1735. # [10:27] <glandium> gaston: bug 797863?
  1736. # [10:28] * Quits: ggp (ggp@moz-3913D97B.dsl.telesp.net.br) (Connection reset by peer)
  1737. # [10:28] * Joins: ggp (ggp@moz-3913D97B.dsl.telesp.net.br)
  1738. # [10:29] <gaston> graphite2 from oct 2012 ?
  1739. # [10:29] * Quits: jgilbert (jgilbert@moz-4C088FCE.hsd1.ca.comcast.net) (Connection reset by peer)
  1740. # [10:31] * Quits: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro) (Ping timeout)
  1741. # [10:32] * Joins: gsvelto (gsvelto@moz-D89BCC70.clienti.tiscali.it)
  1742. # [10:33] * Quits: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP) (Quit: RealRaven)
  1743. # [10:33] * Joins: jduell (jduell@moz-3A304D92.hsd1.wa.comcast.net)
  1744. # [10:33] * Joins: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP)
  1745. # [10:36] * Quits: yury (yury@moz-86474802.ok.ok.cox.net) (Ping timeout)
  1746. # [10:36] * Joins: yury (yury@moz-86474802.ok.ok.cox.net)
  1747. # [10:38] * Quits: loadbang (simon@moz-284E462E.range86-169.btcentralplus.com) (Quit: loadbang)
  1748. # [10:39] * Quits: harth (harth@moz-A0276582.hsd1.ca.comcast.net) (Input/output error)
  1749. # [10:40] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Ping timeout)
  1750. # [10:40] * Quits: zzzzz (chatzilla@moz-609E4EC0.dhcp.embarqhsd.net) (Connection reset by peer)
  1751. # [10:40] * Joins: cpearce_laptop (chatzilla@moz-EC1018D1.jetstream.xtra.co.nz)
  1752. # [10:41] * jchen|away is now known as jchen
  1753. # [10:44] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1754. # [10:46] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  1755. # [10:46] * Joins: givanica (givanica@3ED9831D.251E5D55.FB866788.IP)
  1756. # [10:47] * Joins: msucan (mihai@5BCB9726.7652EAB6.C0E37CF3.IP)
  1757. # [10:47] * Quits: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com) (Input/output error)
  1758. # [10:47] * Joins: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com)
  1759. # [10:48] * Quits: rniwa (rniwa@573BF1B5.1A6EB244.3BFD8A78.IP) (Quit: rniwa)
  1760. # [10:49] <glandium> Tomcat|sheriffduty: note the win pgo red might be my fault with bug 938437. I'm double checking on try (pushed e07cab8a2732 + a backout)
  1761. # [10:49] * Andreea|mtg is now known as AndreeaMatei
  1762. # [10:49] <glandium> Tomcat|sheriffduty: https://tbpl.mozilla.org/?tree=Try&rev=c51a51dc2875 if you want to follow, i'm not sure i'll be around when it finishes
  1763. # [10:50] <Tomcat|sheriffduty> glandium: thanks! will follow
  1764. # [10:50] * jchen is now known as jchen|away
  1765. # [10:51] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  1766. # [10:52] * Quits: cpearce_laptop (chatzilla@moz-EC1018D1.jetstream.xtra.co.nz) (Ping timeout)
  1767. # [10:54] * Quits: mkaply (quassel@moz-E77BA452.gtwncmta01.grtntx.tl.dh.suddenlink.net) (Ping timeout)
  1768. # [10:54] <glandium> Tomcat|sheriffduty: and if your retrigger happens to go red again, and my try goes green, here's another try with a possible fixup https://tbpl.mozilla.org/?tree=Try&rev=b30a80f70839
  1769. # [10:54] * Joins: mkaply (quassel@moz-E77BA452.gtwncmta01.grtntx.tl.dh.suddenlink.net)
  1770. # [10:55] <glandium> Tomcat|sheriffduty: (note the build/mozconfig.common change is not part of the fixup ;) )
  1771. # [10:55] * Joins: glosoli (glosoli@moz-72C60525.static.zebra.lt)
  1772. # [10:56] * Quits: cdiehl (cdiehl@moz-6347CB81.pool.mediaways.net) (Ping timeout)
  1773. # [10:56] * Joins: cdiehl (cdiehl@moz-B026C960.pool.mediaways.net)
  1774. # [10:56] <Tomcat|sheriffduty> hrm glandium also a local windows 7 build fails here on m-c tip
  1775. # [10:56] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  1776. # [10:56] * whimboo is now known as whimboo|afk
  1777. # [10:56] <glandium> Tomcat|sheriffduty: fails how?
  1778. # [10:56] * Joins: annevk (annevk@88F51059.F3BBB17D.144F44FA.IP)
  1779. # [10:57] <Tomcat|sheriffduty> glandium: https://tomcat.pastebin.mozilla.org/3634136 is the log
  1780. # [10:57] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Quit: Leaving.)
  1781. # [10:57] <glandium> Tomcat|sheriffduty: unrelated :)
  1782. # [10:58] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  1783. # [10:58] <glandium> Tomcat|sheriffduty: there's an open bug for that one
  1784. # [10:58] <Tomcat|sheriffduty> ah ok :)
  1785. # [10:58] <glandium> Tomcat|sheriffduty: i bet you're building with --disable-optimize
  1786. # [10:59] <Tomcat|sheriffduty> yeah :)
  1787. # [10:59] <glandium> Tomcat|sheriffduty: bug 899948
  1788. # [10:59] * Quits: tallowen (tallowen@moz-ACF23BB3.hsd1.wa.comcast.net) (Input/output error)
  1789. # [10:59] * Quits: cdiehl (cdiehl@moz-B026C960.pool.mediaways.net) (Ping timeout)
  1790. # [10:59] * Joins: tallowen (tallowen@moz-ACF23BB3.hsd1.wa.comcast.net)
  1791. # [10:59] <Tomcat|sheriffduty> ah ok col thx glandium
  1792. # [10:59] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/8f88f4820fe6 - Tim Abraldes - bug 895581. Remove a mochitest-metro test that assumes double-tap should select; double-tap now causes a zoom instead. r=orange
  1793. # [11:01] <Tomcat|sheriffduty> glandium: should we close the tree for the pgo bustage
  1794. # [11:01] * Quits: tallowen (tallowen@moz-ACF23BB3.hsd1.wa.comcast.net) (Ping timeout)
  1795. # [11:01] * Joins: tomer (tomer@moz-F45DAEFD.static.012.net.il)
  1796. # [11:01] * whimboo|afk is now known as whimboo
  1797. # [11:02] <glandium> Tomcat|sheriffduty: up to you
  1798. # [11:02] <glandium> you're the sheriff, sheriff
  1799. # [11:02] <Tomcat|sheriffduty> edmorley: ^ closing inbound, pgo bustage
  1800. # [11:02] * Joins: mkaply_ (quassel@moz-E77BA452.gtwncmta01.grtntx.tl.dh.suddenlink.net)
  1801. # [11:03] * Quits: mkaply (quassel@moz-E77BA452.gtwncmta01.grtntx.tl.dh.suddenlink.net) (Ping timeout)
  1802. # [11:04] <glandium> Tomcat|sheriffduty: that's going to be a long close, considering the time it takes to do win pgo builds
  1803. # [11:04] <glandium> although fortunately, it's a not peak hour
  1804. # [11:04] * Joins: AlinT (AlinT@601F3B17.33662590.A5830293.IP)
  1805. # [11:04] <Tomcat|sheriffduty> yeah
  1806. # [11:05] * Quits: Morris (Morris@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1807. # [11:05] <Tomcat|sheriffduty> janv: ping
  1808. # [11:05] * Joins: loadbang (simon@moz-284E462E.range86-169.btcentralplus.com)
  1809. # [11:08] * ewong is now known as ewong|away
  1810. # [11:08] * Joins: cdiehl (cdiehl@moz-F7774AAB.pool.mediaways.net)
  1811. # [11:08] <Tomcat|sheriffduty> glandium: too bad in the meantime was no pgo build generated
  1812. # [11:08] * mattwoodrow is now known as mattwoodrow|away
  1813. # [11:08] <Tomcat|sheriffduty> the first pgo build after your push was busted too, but for a different reason
  1814. # [11:09] <Tomcat|sheriffduty> at least a different backout was done
  1815. # [11:09] * Joins: mikeratcliffe (Adium@AAEB493E.A29E579C.71D4DE87.IP)
  1816. # [11:11] * Joins: Ms2ger (Ms2ger@moz-B4F6BCFC.ugent.be)
  1817. # [11:15] * Quits: sicking (sicking@moz-4BB97A06.hsd1.ca.comcast.net) (Quit: sicking)
  1818. # [11:18] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  1819. # [11:20] * Quits: h4writer (h4writer@moz-6BDA8831.access.telenet.be) (Ping timeout)
  1820. # [11:23] * Quits: Kailas (patilkr@21ABB6A8.FBB3C975.EA0E6944.IP) (Quit: Leaving)
  1821. # [11:24] * Quits: victorporof (victorporo@79FE7CA6.284D02A8.D111398B.IP) (Quit: victorporof)
  1822. # [11:24] * Quits: Ms2ger (Ms2ger@moz-B4F6BCFC.ugent.be) (Ping timeout)
  1823. # [11:24] * Quits: capella (chatzilla@moz-6EBC7F51.twcny.res.rr.com) (Ping timeout)
  1824. # [11:27] <glandium> Tomcat|sheriffduty: yeah, windows was generally busted when i landed
  1825. # [11:27] * Quits: erikvold (erikvold@4D2313B7.CEB4024D.BD7E11C1.IP) (Quit: erikvold)
  1826. # [11:28] * Quits: stevensn (ssinger@moz-BF82D55D.dsl.bell.ca) (Ping timeout)
  1827. # [11:28] * Quits: loadbang (simon@moz-284E462E.range86-169.btcentralplus.com) (Quit: loadbang)
  1828. # [11:29] <smontagu> my build is saying:
  1829. # [11:29] <smontagu> header
  1830. # [11:29] <smontagu> header
  1831. # [11:29] <smontagu> header
  1832. # [11:29] * smontagu wonders if it's a typo for "hodor"
  1833. # [11:30] <glandium> smontagu: it's not. i think it's something related to xpidl that does that
  1834. # [11:30] * Quits: glosoli (glosoli@moz-72C60525.static.zebra.lt) (Quit: Textual IRC Client: www.textualapp.com)
  1835. # [11:31] * Joins: Ms2ger (Ms2ger@moz-B4F6BCFC.ugent.be)
  1836. # [11:31] <Tomcat|sheriffduty> glandium: added the try links to https://sheriffs.etherpad.mozilla.org/sheriffing-notes
  1837. # [11:31] <Tomcat|sheriffduty> under the current issues so that they don't get lost and for others :)
  1838. # [11:34] * Quits: dao (dao@moz-7D224C0C.superkabel.de) (Quit: Leaving.)
  1839. # [11:36] * Quits: rvitillo (vitillo@2D19BBF3.D1BEC4BB.30311652.IP) (Ping timeout)
  1840. # [11:38] * Joins: h4writer (h4writer@moz-6BDA8831.access.telenet.be)
  1841. # [11:40] * Quits: teoli (teoli@moz-A405C8B0.range81-157.btcentralplus.com) (Input/output error)
  1842. # [11:45] * Quits: tomer (tomer@moz-F45DAEFD.static.012.net.il) (Ping timeout)
  1843. # [11:45] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1844. # [11:46] * Joins: stevensn (ssinger@moz-64F7F04C.dsl.bell.ca)
  1845. # [11:46] * Joins: rvitillo (vitillo@2D19BBF3.D1BEC4BB.30311652.IP)
  1846. # [11:46] * Quits: m_kato (m_kato@moz-C286AD9A.bitcat.net) (Quit: Leaving...)
  1847. # [11:47] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  1848. # [11:47] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/282c409d2a35 - Carsten "Tomcat" Book - Backed out changeset 5cda44ae1ba0 (bug 921478) for perma-orange on Mochitest-1 on B2G Linux Opt on a CLOSED TREE
  1849. # [11:47] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/991626e1db16 - Carsten "Tomcat" Book - Backed out changeset e07cab8a2732 (bug 921478) for perma-orange on Mochitest-1 on B2G Linux Opt on a CLOSED TREE
  1850. # [11:48] * Quits: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP) (Quit: RealRaven)
  1851. # [11:49] * Joins: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP)
  1852. # [11:51] * Joins: mstange (markus@moz-9F660733.dip0.t-ipconnect.de)
  1853. # [11:51] <gaston> glandium: 938437 should have bitten me when linking libxul right ?
  1854. # [11:52] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/9dcb2141ae0a - Carsten "Tomcat" Book - Backed out changeset 65048ac4ae6f (bug 939385) for perma failures/orange in XPCShell Tests on Linux and OS X on a CLOSED TREE
  1855. # [11:52] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/904de03d6328 - Carsten "Tomcat" Book - Backed out changeset a045549217e2 (bug 939385) for perma failures/orange in XPCShell Tests on Linux and OS X on a CLOSED TREE
  1856. # [11:52] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/5ef410bdf303 - Carsten "Tomcat" Book - Backed out changeset a06dd3421421 (bug 939385) for perma failures/orange in XPCShell Tests on Linux and OS X on a CLOSED TREE
  1857. # [11:52] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/4904a40ab9c6 - Carsten "Tomcat" Book - Backed out changeset 027fced104dc (bug 939385) for perma failures/orange in XPCShell Tests on Linux and OS X on a CLOSED TREE
  1858. # [11:56] <glandium> gaston: that, or after, when starting ff
  1859. # [11:57] <glandium> Tomcat|sheriffduty: thanks
  1860. # [11:57] * Quits: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com) (Quit: Instantbird 1.5a1pre -- http://www.instantbird.com)
  1861. # [11:58] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  1862. # [11:59] * Joins: jeffz (Mibbit@977EFB76.2C4B375C.D6E1F3C4.IP)
  1863. # [11:59] <gaston> ah so i need to do a real test
  1864. # [12:00] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  1865. # [12:01] * Quits: @smaug (chatzilla@moz-9E0B1701.pp.htv.fi) (Ping timeout)
  1866. # [12:03] * Quits: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP) (Quit: RealRaven)
  1867. # [12:03] * Quits: briansmith (briansmith@moz-25F87A36.utilitytelephone.net) (Quit: Leaving)
  1868. # [12:04] * Joins: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP)
  1869. # [12:07] * Joins: clokep (Instantbir@moz-1484204D.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com)
  1870. # [12:08] * Quits: jhorak (jhorak@moz-107AD163.redhat.com) (Ping timeout)
  1871. # [12:08] * Joins: stransky (stransky@moz-107AD163.redhat.com)
  1872. # [12:09] <Tomcat|sheriffduty> glandium: so inbound retrigger went red
  1873. # [12:10] * Quits: gerv (Instantbir@moz-8E68CF56.in-addr.arpa) (Quit: Instantbird 1.5a1pre -- http://www.instantbird.com)
  1874. # [12:11] <glandium> Tomcat|sheriffduty: yeah i saw
  1875. # [12:11] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  1876. # [12:11] * khuey is now known as khuey|away
  1877. # [12:12] <glandium> Tomcat|sheriffduty: have to wait for the backout try to see if the hypothesis is right
  1878. # [12:14] * Quits: jdm (jdm@moz-99690620.hinet-ip.hinet.net) (Quit: Lost terminal)
  1879. # [12:15] <glandium> Tomcat|sheriffduty: although, both trys have gone past the ~70 minutes mark
  1880. # [12:17] * Quits: TimAbraldes (Instantbir@moz-7FD19BDC.hsd1.or.comcast.net) (Connection reset by peer)
  1881. # [12:18] <glandium> Tomcat|sheriffduty: so there are several options: backout and reopen (asserting the backout try is ok by the fact it's be running for longer than both m-i reds have been running) then land the fixup when confirmed, land the fixup and reopen, or wait for the trys
  1882. # [12:18] <Tomcat|sheriffduty> glandium: i'm for backout and reopen (if confirmed by that try run)
  1883. # [12:18] * Quits: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  1884. # [12:19] <glandium> Tomcat|sheriffduty: depends what you mean by confirmed
  1885. # [12:19] <Tomcat|sheriffduty> oh i mean the backout try is ok :)
  1886. # [12:20] <glandium> Tomcat|sheriffduty: so that'd be option 3
  1887. # [12:21] * Quits: @dbaron (dbaron@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1888. # [12:21] * Quits: rvitillo (vitillo@2D19BBF3.D1BEC4BB.30311652.IP) (Quit: rvitillo)
  1889. # [12:22] <Tomcat|sheriffduty> glandium: how much risk of a bustage do you think it would be now for opt 1 ?
  1890. # [12:22] * Joins: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com)
  1891. # [12:22] <glandium> Tomcat|sheriffduty: the more time passes, the more i think it's low
  1892. # [12:22] <glandium> Tomcat|sheriffduty: the try started 90 minutes ago
  1893. # [12:22] <Tomcat|sheriffduty> yeah and the inbound ones failed after 71 minutes
  1894. # [12:23] <Tomcat|sheriffduty> 71/73 min
  1895. # [12:23] <glandium> Tomcat|sheriffduty: maybe leave it 10 more minutes, in case the slave hit some clobber horror case
  1896. # [12:23] <Tomcat|sheriffduty> yeah thats ok for me and then i will backout and reopen
  1897. # [12:24] <glandium> (i've had the clobber step take 20~30 minutes on try in the past)
  1898. # [12:24] * whimboo is now known as whimboo|lunch
  1899. # [12:25] <gaston> glandium: at least it links fine with your attribute thingy
  1900. # [12:25] * Quits: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net) (Input/output error)
  1901. # [12:25] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  1902. # [12:26] <h4writer> Somebody online willing to help me with an issue when trying to include an extra .h/.cpp to the build system?
  1903. # [12:26] * Quits: twi (Adium@moz-4541C8E7.cust.dsl.vodafone.it) (Quit: Leaving.)
  1904. # [12:26] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Client exited)
  1905. # [12:26] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  1906. # [12:28] <Ms2ger> h4writer, shoot
  1907. # [12:29] <h4writer> Ms2ger, so I'm creating the file "IonOptimizationLevels.cpp" and "IonOptimizationLevels.h" in "./jit". I added the .cpp file to moz.build. And I included the header file in jit/MIRGenerator.h where I needed a class that is defined in that cpp file. Now when building I get: ../jit/MIRGenerator.h:38:43: error: ‘OptimizationInfo’ in namespace ‘js::jit’ does not name a type
  1908. # [12:30] <h4writer> *defined in that .h file
  1909. # [12:30] <Ms2ger> Pastebin your patch?
  1910. # [12:31] <h4writer> Ms2ger, uhm, full patch, or should I cut&paste only the important parts, because it is getting pretty large
  1911. # [12:31] <Ms2ger> Full patch, if pastebin can deal :)
  1912. # [12:33] <h4writer> Ms2ger, ok sec ;)
  1913. # [12:33] * Quits: kdcw (kdcw@moz-2CDF5822.pk.shawcable.net) (Connection reset by peer)
  1914. # [12:34] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/3b1d81c4c118 - Carsten "Tomcat" Book - Backed out changeset 002e26035367 (bug 938437) to fix PGO Build Bustage on a CLOSED TREE
  1915. # [12:34] <Tomcat|sheriffduty> glandium: backout done, tree reopen
  1916. # [12:35] * Joins: kdcw (kdcw@moz-2CDF5822.pk.shawcable.net)
  1917. # [12:36] <h4writer> Ms2ger, this is the full patch: http://paste.ubuntu.com/6442334/
  1918. # [12:37] * rail_away is now known as rail
  1919. # [12:39] * Quits: ethan (chatzilla@moz-99690620.hinet-ip.hinet.net) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0/20131025151332])
  1920. # [12:40] <Ms2ger> Don't see anything off-hand
  1921. # [12:40] * Quits: timdream (timdream@moz-99690620.hinet-ip.hinet.net) (Quit: timdream)
  1922. # [12:40] <h4writer> Ms2ger, and this is the diff (from a working state) to the state I'm now in (not working :S)
  1923. # [12:40] <h4writer> https://pastebin.mozilla.org/3634632
  1924. # [12:42] <h4writer> for some reason it doesn't want to "find" the OptimizationInfo class
  1925. # [12:42] <h4writer> while it is present in the .h file
  1926. # [12:43] <h4writer> And this is the full error msg: https://pastebin.mozilla.org/3634643
  1927. # [12:46] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/1a83f8d13bdb - Eddy Bruel - Bug 938907 - Get rid of the compile and go flag on ContextOptions; r=bholley
  1928. # [12:46] * Quits: Manuela (manuela_mu@601F3B17.33662590.A5830293.IP) (Quit: Manuela)
  1929. # [12:46] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Ping timeout)
  1930. # [12:47] * Joins: NeilAway (neil@moz-B1437A82.static.virginmediabusiness.co.uk)
  1931. # [12:47] <glandium> Tomcat|sheriffduty: and the fixup failed, so backout was the best choice
  1932. # [12:48] <Ms2ger> -> lunch
  1933. # [12:48] * Quits: Ms2ger (Ms2ger@moz-B4F6BCFC.ugent.be) (Quit: bbiab)
  1934. # [12:48] * Joins: zzzzz (chatzilla@moz-3B3DD44D.dhcp.embarqhsd.net)
  1935. # [12:48] * Quits: NeilAway (neil@moz-B1437A82.static.virginmediabusiness.co.uk) (Ping timeout)
  1936. # [12:49] * Joins: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com)
  1937. # [12:49] * Joins: capella (chatzilla@moz-6EBC7F51.twcny.res.rr.com)
  1938. # [12:50] <glandium> Tomcat|sheriffduty: linux pgo red is due to a race condition due to bug 939608
  1939. # [12:50] <glandium> Tomcat|sheriffduty: i say backout
  1940. # [12:50] * Joins: fredw (fredw@moz-B9C110E2.fbx.proxad.net)
  1941. # [12:51] <Tomcat|sheriffduty> glandium: ok will backout bug 939608 too from inbound
  1942. # [12:52] <decoder> glandium: i just flagged you for review on a simple thing (bug 940299). initially talked about this with ted, but he is too busy right now I think
  1943. # [12:52] * Joins: jhorak (jhorak@moz-107AD163.redhat.com)
  1944. # [12:52] <Tomcat|sheriffduty> glandium: i guess need backout 939608 from central too right ?
  1945. # [12:52] <glandium> Tomcat|sheriffduty: or a merge
  1946. # [12:53] <glandium> Tomcat|sheriffduty: mention https://mxr.mozilla.org/mozilla-central/source/js/xpconnect/src/Makefile.in#66 when you comment for the backout
  1947. # [12:53] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Ping timeout)
  1948. # [12:53] <Tomcat|sheriffduty> ok
  1949. # [12:54] * Joins: NeilAway (neil@moz-B1437A82.static.virginmediabusiness.co.uk)
  1950. # [12:54] <mjh563> h4writer: look at lines 944-945 in your diff
  1951. # [12:54] * rail is now known as rail_away
  1952. # [12:54] <mjh563> that's the line with the error, right?
  1953. # [12:54] * Joins: bobowen|afk (chatzilla@moz-A944D98D.dynamic.dsl.as9105.com)
  1954. # [12:54] <h4writer> mjh563, I think I found the issue :D
  1955. # [12:54] <mjh563> h4writer: ok
  1956. # [12:54] * bobowen|afk is now known as bobowen
  1957. # [12:55] <h4writer> mjh563, I copy/pasted the .h file, but forget the change the ifdef/define in there -.-
  1958. # [12:55] <h4writer> *to change
  1959. # [12:55] * edmorley is now known as edmorley|away-appt
  1960. # [12:57] <decoder> glandium: the file will be used when running with tsan. manually. you need to set an environment variable pointing to it
  1961. # [12:57] * Joins: Neil (neil@moz-32AA0D01.in-addr.btopenworld.com)
  1962. # [12:57] * Quits: NeilAway (neil@moz-B1437A82.static.virginmediabusiness.co.uk) (Ping timeout)
  1963. # [12:57] <decoder> just like valgrind suppressions
  1964. # [12:57] * Neil is now known as NeilAway
  1965. # [12:58] <decoder> if we ever get tsan in releng or something like that, it'll be integrated into the harnesses of course.. but thats way too early right now
  1966. # [12:58] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  1967. # [12:59] <glandium> decoder: can you comment in the bug? :)
  1968. # [12:59] <decoder> sure
  1969. # [12:59] <glandium> i'll look at it later
  1970. # [13:00] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  1971. # [13:02] * Quits: cdiehl (cdiehl@moz-F7774AAB.pool.mediaways.net) (Ping timeout)
  1972. # [13:02] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/e28e95dc0795 - Gijs Kruitbosch - Bug 890545 - provide a way to enumerate registered manifests, r=froydnj,f=glandium
  1973. # [13:02] * Joins: rvitillo (vitillo@88F51059.F3BBB17D.144F44FA.IP)
  1974. # [13:02] <NeilAway> aargh, stupid jsfiddle
  1975. # [13:02] <decoder> glandium: done. thx
  1976. # [13:02] * Quits: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl) (Quit: Leaving)
  1977. # [13:03] * Joins: Manuela (manuela_mu@601F3B17.33662590.A5830293.IP)
  1978. # [13:04] * Quits: gsvelto (gsvelto@moz-D89BCC70.clienti.tiscali.it) (Ping timeout)
  1979. # [13:05] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  1980. # [13:06] * Quits: maxli (maxli@moz-4D28BA20.student.cs.uwaterloo.ca) (Ping timeout)
  1981. # [13:07] * Joins: maxli (maxli@moz-4D28BA20.student.cs.uwaterloo.ca)
  1982. # [13:07] * Quits: clokep (Instantbir@moz-1484204D.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com) (Ping timeout)
  1983. # [13:08] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1984. # [13:09] * Joins: inolen1 (Adium@moz-3733E769.socal.res.rr.com)
  1985. # [13:09] * Joins: baku (baku@88F51059.F3BBB17D.144F44FA.IP)
  1986. # [13:09] * Quits: inolen (Adium@moz-E4D78779.socal.res.rr.com) (Ping timeout)
  1987. # [13:10] * Quits: inolen1 (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  1988. # [13:11] * hwine-ooo is now known as hwine
  1989. # [13:13] * Quits: petruta (Mibbit@601F3B17.33662590.A5830293.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1990. # [13:13] * Joins: petruta (Mibbit@601F3B17.33662590.A5830293.IP)
  1991. # [13:15] * Joins: cdiehl (cdiehl@moz-FEEB125E.pool.mediaways.net)
  1992. # [13:15] * Quits: baku (baku@88F51059.F3BBB17D.144F44FA.IP) (Input/output error)
  1993. # [13:16] <hsivonen> what's the right way to sort strings in chrome JS according to the collation order of the current UI locale?
  1994. # [13:17] * Joins: m_gol (m_gol@moz-4A03F5C1.dynamic.chello.pl)
  1995. # [13:18] * Joins: bitgeeky (bitgeeky@9B9315E1.A6025CA.1C37C358.IP)
  1996. # [13:21] * Joins: shorlander (shorlander@8F761026.B5EF4AF6.E96CA9D8.IP)
  1997. # [13:21] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  1998. # [13:22] * Joins: KaiRo (robert@moz-C9DE1FFF.adsl.highway.telekom.at)
  1999. # [13:23] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2000. # [13:23] * Joins: robertbindar (Thunderbir@986E6143.8CF5BBC3.89C0DD0D.IP)
  2001. # [13:24] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2002. # [13:27] * Joins: brennan (mibr0789@moz-39CD8C22.it.uu.se)
  2003. # [13:27] <NeilAway> hsivonen: pass something like http://mxr.mozilla.org/comm-central/source/mozilla/toolkit/mozapps/extensions/content/extensions.js#1361 to sort() ?
  2004. # [13:27] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2005. # [13:27] <tbsaunde> hsivonen: nsICollation?
  2006. # [13:28] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2007. # [13:28] <firebot> Check-in:
  2008. # [13:28] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ba12d004093f - Jim Mathies - Bug 939557 - Build bustage fix in vs11 and up in browsercomps - don't link to unicharutil and replace glue string compare calls with suitable crt replacements. r=rstrong
  2009. # [13:29] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/8cb5e2add225 - Nathan Froyd - Bug 940170 - part 1 - constify PLDHashTableOps in layout/; r=bz
  2010. # [13:29] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/d89eedd62c70 - Nathan Froyd - Bug 940170 - part 2 - constify PLDHashTableOps in content/; r=bz
  2011. # [13:29] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/3c2e6a8dd5ba - Nathan Froyd - Bug 940170 - part 3 - constify PLDHashTableOps in dom/; r=bz
  2012. # [13:30] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/71c415468a45 - Nathan Froyd - Bug 940170 - part 4 - constify PLDHashTableOps in miscellaneous other places; r=bz
  2013. # [13:30] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2014. # [13:32] * Quits: maxli (maxli@moz-4D28BA20.student.cs.uwaterloo.ca) (Quit: Leaving.)
  2015. # [13:33] * Joins: twi (Adium@moz-E1F80.business.telecomitalia.it)
  2016. # [13:34] * Quits: zakora (NC@moz-8EAF945F.fbx.proxad.net) (Input/output error)
  2017. # [13:35] * Joins: jhopkins (jhopkins@B0F7535B.D36C4CD0.B2D54A9E.IP)
  2018. # [13:35] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f12f7257b1c6 - Ehsan Akhgari - Bug 939659 - Build parts of the spellchecker in unified mode; r=roc
  2019. # [13:36] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2020. # [13:36] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/c335eaa4494a - Carsten "Tomcat" Book - Backed out changeset 161bfee3f57a (bug 939608) for fixing PGO Build Bustage
  2021. # [13:36] <firebot> http://hg.mozilla.org/mozilla-central/rev/5ba4c0b3567f - Carsten "Tomcat" Book - Backed out changeset 21df28ade757 (bug 939608) for fixing PGO Build Failures
  2022. # [13:37] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/0d469a8e2208 - Ehsan Akhgari - Bug 936912 - Build xpcom in unified mode; r=froydnj
  2023. # [13:37] <hsivonen> NeilAway: where does localeCompare get its locale?
  2024. # [13:38] <NeilAway> hsivonen: hey, I'm not a jseng hacker, I just use the stuff ;-)
  2025. # [13:38] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2026. # [13:39] * whimboo|lunch is now known as whimboo
  2027. # [13:39] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2028. # [13:40] <hsivonen> tbsaunde: nsICollation might do the right thing, but its documentation makes it look pretty naive
  2029. # [13:40] <hsivonen> NeilAway: OK. I'll try it
  2030. # [13:40] * bc|afk is now known as bc
  2031. # [13:41] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  2032. # [13:41] * Joins: coop (Chris@B0F7535B.D36C4CD0.B2D54A9E.IP)
  2033. # [13:41] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2034. # [13:41] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  2035. # [13:41] <hsivonen> well, localeCompare looks bogus for Finnish and Swedish at least. Fortunately, the strings I'm comparing probably won't show it
  2036. # [13:42] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2037. # [13:42] <tbsaunde> hsivonen: do you take me for someone who knows something about intl/
  2038. # [13:42] <tbsaunde> ?
  2039. # [13:42] <hsivonen> it seems to assume that if you ask for a case-insensitive compare, it's OK to throw away diacritics first
  2040. # [13:42] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/8dea4d73860a - Ehsan Akhgari - Bug 939538 - Build parts of the ipc code in unified mode; r=glandium
  2041. # [13:43] * Joins: dao (dao@moz-3FC4398D.superkabel.de)
  2042. # [13:43] * Quits: smontagu (chatzilla@moz-D0D053E4.red.bezeqint.net) (Ping timeout)
  2043. # [13:43] * Quits: michal (michal@moz-167B440E.broadband6.iol.cz) (Ping timeout)
  2044. # [13:43] * julienw_afk is now known as julienw
  2045. # [13:43] <hsivonen> hmm. except the examples for localeCompare are all about demoing how it works right for Swedish
  2046. # [13:43] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2047. # [13:44] * Joins: baku (baku@514D186.F3BBB17D.144F44FA.IP)
  2048. # [13:45] * Quits: m_gol (m_gol@moz-4A03F5C1.dynamic.chello.pl) (Quit: Leaving...)
  2049. # [13:45] <hsivonen> NeilAway: thanks
  2050. # [13:46] * Quits: jeffz (Mibbit@977EFB76.2C4B375C.D6E1F3C4.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2051. # [13:46] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2052. # [13:47] * Joins: erikvold (erikvold@4D2313B7.CEB4024D.BD7E11C1.IP)
  2053. # [13:47] * nthomas|away is now known as nthomas
  2054. # [13:49] * Quits: baku (baku@514D186.F3BBB17D.144F44FA.IP) (Input/output error)
  2055. # [13:50] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2056. # [13:51] * Joins: Ms2ger (Ms2ger@moz-C1CB862F.ugent.be)
  2057. # [13:51] * Joins: jrm2k6 (jrm2k6@moz-925F8EE7.osr0-terez.net.telekom.hu)
  2058. # [13:51] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2059. # [13:51] * Joins: marcoz (marco.zehe@moz-9B7EB95A.dip0.t-ipconnect.de)
  2060. # [13:52] * Quits: jez (user@moz-1B119F78.dsl.in-addr.zen.co.uk) (Ping timeout)
  2061. # [13:53] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2062. # [13:54] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2063. # [13:54] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a001cb4f9761 - Ehsan Akhgari - Bug 939596 - Build content/event in unified mode; r=glandium
  2064. # [13:57] * Quits: robertbindar (Thunderbir@986E6143.8CF5BBC3.89C0DD0D.IP) (Ping timeout)
  2065. # [13:57] <Ms2ger> Tomcat|sheriffduty, the tegra test backlog on try doesn't seem happy
  2066. # [13:58] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2067. # [13:58] * Tomcat|sheriffduty checks
  2068. # [13:58] <NeilAway> why do mochitests report so many errors to the console?
  2069. # [13:58] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2070. # [13:59] * Joins: surkov (surkov@74F7CB6C.E80E6317.6BEEAEBD.IP)
  2071. # [13:59] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  2072. # [13:59] <Optimize1> Mozilla ... stop changing github repo names ! :(
  2073. # [14:01] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  2074. # [14:02] * Quits: coop (Chris@B0F7535B.D36C4CD0.B2D54A9E.IP) (Quit: coop)
  2075. # [14:02] * Joins: maxli (maxli@moz-4D28BA20.student.cs.uwaterloo.ca)
  2076. # [14:02] * Joins: coop (Chris@B0F7535B.D36C4CD0.B2D54A9E.IP)
  2077. # [14:03] * Quits: coop (Chris@B0F7535B.D36C4CD0.B2D54A9E.IP) (Quit: coop)
  2078. # [14:03] * Joins: gsvelto (gsvelto@moz-D89BCC70.clienti.tiscali.it)
  2079. # [14:03] * Joins: robertbindar (Thunderbir@986E6143.8CF5BBC3.89C0DD0D.IP)
  2080. # [14:03] * Quits: shorlander (shorlander@8F761026.B5EF4AF6.E96CA9D8.IP) (Input/output error)
  2081. # [14:04] * Joins: shorlander (shorlander@8F761026.B5EF4AF6.E96CA9D8.IP)
  2082. # [14:04] * Joins: michal (michal@moz-6CE1017D.broadband17.iol.cz)
  2083. # [14:04] * Joins: pnkfelix (pnkfelix@87C1F78E.1DE10CA8.D8E68FF6.IP)
  2084. # [14:06] * Quits: shorlander (shorlander@8F761026.B5EF4AF6.E96CA9D8.IP) (Ping timeout)
  2085. # [14:07] * Joins: jez (user@moz-1B119F78.dsl.in-addr.zen.co.uk)
  2086. # [14:07] * Joins: baku (baku@514D186.F3BBB17D.144F44FA.IP)
  2087. # [14:07] * Joins: jpb (chatzilla@moz-DF053F63.cse.bris.ac.uk)
  2088. # [14:08] <Tomcat|sheriffduty> Ms2ger: now inbound backlog on tegras also look not good
  2089. # [14:08] <Tomcat|sheriffduty> checking with releng
  2090. # [14:12] <Ms2ger> "Backed out changeset 161bfee3f57a (bug 939608) for fixing PGO Build Bustage"
  2091. # [14:12] * bobowen is now known as bobowen|afk
  2092. # [14:12] <Ms2ger> That sounds like "It fixed something, can't have that!"
  2093. # [14:12] <froydnj> you can't win
  2094. # [14:13] * Quits: twi (Adium@moz-E1F80.business.telecomitalia.it) (Quit: Leaving.)
  2095. # [14:16] * Joins: inolen1 (Adium@moz-3733E769.socal.res.rr.com)
  2096. # [14:16] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2097. # [14:17] * rail_away is now known as rail
  2098. # [14:17] * Joins: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au)
  2099. # [14:17] * NeilAway sighs
  2100. # [14:17] <NeilAway> "ReferenceError: is is not defined"
  2101. # [14:17] <Tomcat|sheriffduty> heh Ms2ger :)
  2102. # [14:18] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d043f8a4fce0 - Carsten "Tomcat" Book - Backed out changeset 161bfee3f57a (bug 939608) PGO build issue
  2103. # [14:18] <Mitch> Existential crisis error?
  2104. # [14:18] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/962d9383207f - Michael Shuen - Bug 940153 - Build dom/encoding in unified mode; r=bzbarsky
  2105. # [14:18] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  2106. # [14:18] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/42105a54d127 - Carsten "Tomcat" Book - Backed out changeset 21df28ade757 (bug 939608) PGO build issue
  2107. # [14:19] * jmaher|afk is now known as jmaher
  2108. # [14:20] * Quits: baku (baku@514D186.F3BBB17D.144F44FA.IP) (Ping timeout)
  2109. # [14:21] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/6f85269fdb4a - Michael Shuen - Bug 940117 - Build startupcache in unified mode; r=ehsan
  2110. # [14:21] * Joins: victorporof (victorporo@79FE7CA6.284D02A8.D111398B.IP)
  2111. # [14:21] * Quits: michal (michal@moz-6CE1017D.broadband17.iol.cz) (Ping timeout)
  2112. # [14:22] * Quits: jhopkins (jhopkins@B0F7535B.D36C4CD0.B2D54A9E.IP) (Quit: jhopkins)
  2113. # [14:23] * Joins: baku (baku@88F51059.F3BBB17D.144F44FA.IP)
  2114. # [14:24] * Quits: gabor (gabor@moz-A74A9206.dip0.t-ipconnect.de) (Ping timeout)
  2115. # [14:24] * Joins: RyanVM (Thunderbir@moz-4C953DE7.phlapa.fios.verizon.net)
  2116. # [14:24] * Quits: inolen1 (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2117. # [14:25] <hsivonen> It's becoming clear to me why no one has wanted to touch the charset menu code since before Firefox
  2118. # [14:25] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f90e27cbc980 - Michael Shuen - Bug 939795 - Build image/decoder in unified mode; r=ehsan
  2119. # [14:25] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2120. # [14:25] * rail is now known as rail_away
  2121. # [14:26] * Joins: Jackneill (Jackneill@moz-16CEF626.pool.digikabel.hu)
  2122. # [14:26] * joduinn is now known as joduinn-afk
  2123. # [14:26] * Joins: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP)
  2124. # [14:27] * Quits: Optimize1 (Instantbir@4F3E1057.A6DE773B.88FACCAA.IP) (Ping timeout)
  2125. # [14:27] <hsivonen> aargh. I'll just remove the charset menu from View Source and see if it passes review that way
  2126. # [14:29] * Quits: romaxa (romaxa@89CA6FC8.8F03A4EA.BE7924BA.IP) (Ping timeout)
  2127. # [14:30] <Gijs> hsivonen: :o
  2128. # [14:30] <gaston> glandium: so a build with your commit runs fine for me with my ancient ld
  2129. # [14:30] <Gijs> I saw that! ;)
  2130. # [14:31] <gaston> (and yay it works with australis too!)
  2131. # [14:31] * nthomas is now known as nthomas|away
  2132. # [14:31] <gaston> Gijs: since you seem to be part of the australis landing and the ux branch, any idea if prefs-in-content will finally be default someday ? at some point this really looked promising
  2133. # [14:32] <Gijs> gaston: no clue, sorry. Unfocused or shorlander or madhava are better bet
  2134. # [14:32] <Gijs> *bets
  2135. # [14:32] <Gijs> I just fix bugs.
  2136. # [14:32] <Gijs> ;)
  2137. # [14:32] <gaston> we all do :)
  2138. # [14:32] <shorlander> gaston: probably won't land with Australis but people are working on fixing what we have now
  2139. # [14:32] <shorlander> So will eventually be default
  2140. # [14:32] <gaston> yay
  2141. # [14:32] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2142. # [14:33] * whimboo is now known as whimboo|afk
  2143. # [14:33] <gaston> i tested it a year ago when it landed, looked nice, but i was wondering if the idea got abandoned or if the students who were working on it at the time just gave up
  2144. # [14:33] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/dc6a1e1f686d - Chris Lord - Bug 869696 - Enable Gralloc on the Geeksphone Peak again. r=bjacob
  2145. # [14:33] * Quits: lpy (lpy@7360AA58.F09091A8.1348A864.IP) (Ping timeout)
  2146. # [14:34] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2147. # [14:35] * Joins: jrmuizel (jrmuizel@D87BD8D8.86AAE5E.9A8C35B4.IP)
  2148. # [14:36] * Joins: smaug (chatzilla@moz-9E0B1701.pp.htv.fi)
  2149. # [14:36] * ChanServ sets mode: +o smaug
  2150. # [14:37] * AndreeaMatei is now known as Andreea|mtg
  2151. # [14:37] * pmoore|away is now known as pmoore
  2152. # [14:38] * Joins: michal (michal@moz-167B440E.broadband6.iol.cz)
  2153. # [14:38] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2154. # [14:38] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2155. # [14:38] * Joins: gustavold (gustavold@8E1E218.9B943A8F.DF2AC62B.IP)
  2156. # [14:39] * Joins: tomatoeblue (textual@13F2CEC5.7672369.D8E68FF6.IP)
  2157. # [14:39] * Joins: norton (mibr0789@moz-39CD8C22.it.uu.se)
  2158. # [14:39] * Joins: m_gol (m_gol@moz-4A03F5C1.dynamic.chello.pl)
  2159. # [14:41] * Quits: jkitch (Thunderbir@moz-1421D5E8.lns21.adl2.internode.on.net) (Ping timeout)
  2160. # [14:41] * Joins: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl)
  2161. # [14:42] <Tomcat|sheriffduty> bz_sleep: ping
  2162. # [14:44] * Quits: Ms2ger (Ms2ger@moz-C1CB862F.ugent.be) (Ping timeout)
  2163. # [14:46] * Joins: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP)
  2164. # [14:46] * glob|away is now known as glob
  2165. # [14:48] * Parts: vigneshwaran (vigneshwar@FC0B83FD.138D8F1E.FD6A0EFF.IP)
  2166. # [14:49] * Quits: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au) (Ping timeout)
  2167. # [14:49] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/fba76534d05e - Ehsan Akhgari - Backed out changeset 962d9383207f (bug 940153) because of build bustage
  2168. # [14:49] * Joins: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au)
  2169. # [14:50] * bobowen|afk is now known as bobowen
  2170. # [14:50] * kats|away is now known as kats
  2171. # [14:51] * Joins: Archaeopteryx (itsme@moz-CE01FBF6.cust.telecolumbus.net)
  2172. # [14:52] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  2173. # [14:53] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  2174. # [14:54] * khuey|away is now known as khuey
  2175. # [14:55] * bobowen is now known as bobowen|afk
  2176. # [14:55] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  2177. # [14:55] * Joins: gerv (Instantbir@moz-8E68CF56.in-addr.arpa)
  2178. # [14:56] * Joins: Ms2ger (Ms2ger@moz-454C9175.ugent.be)
  2179. # [14:58] * Joins: lduros (user@moz-418FD747.phlapa.fios.verizon.net)
  2180. # [14:59] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  2181. # [15:01] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  2182. # [15:01] * edmorley|away-appt is now known as edmorley
  2183. # [15:02] * simone|away is now known as simone
  2184. # [15:02] * Quits: Ms2ger (Ms2ger@moz-454C9175.ugent.be) (Ping timeout)
  2185. # [15:02] * Quits: brennan (mibr0789@moz-39CD8C22.it.uu.se) (Quit: leaving)
  2186. # [15:02] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2187. # [15:02] * norton is now known as brennan
  2188. # [15:02] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2189. # [15:04] * Joins: Ms2ger (Ms2ger@moz-454C9175.ugent.be)
  2190. # [15:04] * JosiahOne|Away is now known as JosiahOne
  2191. # [15:05] * Quits: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au) (Ping timeout)
  2192. # [15:05] * Gijs wonders who's looking at the flaming red ball of horribleness that's inbound
  2193. # [15:05] * Quits: bitgeeky (bitgeeky@9B9315E1.A6025CA.1C37C358.IP) (Ping timeout)
  2194. # [15:05] * Joins: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au)
  2195. # [15:05] * Quits: Ms2ger (Ms2ger@moz-454C9175.ugent.be) (Ping timeout)
  2196. # [15:06] * Joins: b10n1k (j0ni@moz-9129EE4A.dsl.dyn.forthnet.gr)
  2197. # [15:06] <bjacob> does anyone know how I can tell our buildsystem to generate preprocessed (*.i) files ?
  2198. # [15:07] * Joins: Pike (chatzilla@moz-BD38E3AF.pool.mediaways.net)
  2199. # [15:07] * Quits: jpb (chatzilla@moz-DF053F63.cse.bris.ac.uk) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.9/20120422230342])
  2200. # [15:07] * Joins: Ms2ger (Ms2ger@moz-454C9175.ugent.be)
  2201. # [15:07] <RyanVM> Gijs: #releng
  2202. # [15:08] * Joins: automata (automata@D773866B.FA36B139.BB0EBA72.IP)
  2203. # [15:08] <Gijs> in good hands, then. Yay :)
  2204. # [15:08] <froydnj> bjacob: |make file.i| ?
  2205. # [15:08] * Joins: arky (arky@E75B4384.FC9D7307.FA662B63.IP)
  2206. # [15:08] * Joins: coop (Chris@moz-B65AF445.hfc.comcastbusiness.net)
  2207. # [15:08] <hsivonen> Gijs: on the bright side, your review queue contains an exorcism of nsCharsetMenu.cpp from Firefox!
  2208. # [15:08] <bjacob> froydnj: thanks!
  2209. # [15:08] <Gijs> hsivonen: looking already! :)
  2210. # [15:09] <Gijs> hsivonen: can you explain the detector change in charsetmenu.inc on the bug? Or did I miss what that is in relation to the comment you posted?
  2211. # [15:10] <Gijs> hsivonen: ie, I read your comment, I didn't think it was mentioned there, but maybe I'm wrong because this stuff was so complex before and I might not be putting 2 and 2 together
  2212. # [15:10] * coop is now known as coop|buildduty
  2213. # [15:11] <hsivonen> Gijs: Russian, Ukranian and Japanese are the only locales that ship with a detector by default. I figured I'd prune the list to just those when reimplementing the list, since the others all have removal bugs on file anyway.
  2214. # [15:11] <hsivonen> Gijs: so it seems silly to first reimplement UI for them and then remove
  2215. # [15:12] * Joins: miketaylr (mtaylor@moz-8ACC7131.dyn.grandenetworks.net)
  2216. # [15:12] * Joins: smontagu (chatzilla@moz-D0D053E4.red.bezeqint.net)
  2217. # [15:13] * Quits: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP) (Input/output error)
  2218. # [15:13] <Gijs> hsivonen: so we're removing .*Chinese, Korean, East Asian and Universal?
  2219. # [15:13] * Joins: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP)
  2220. # [15:14] * Joins: jhopkins (jhopkins@moz-B65AF445.hfc.comcastbusiness.net)
  2221. # [15:14] * Joins: jimm (jmathies@moz-F22D2B2A.pn.at.cox.net)
  2222. # [15:14] <hsivonen> Gijs: right
  2223. # [15:14] <hsivonen> Gijs: Universal isn't really universal, so it's bad that we tempt users to enable it when it can have adverse effects
  2224. # [15:15] <Gijs> hsivonen: it might be worth clarifying that with a comment on the bug. Bonus points for citing the bugs where those removals were already on file.
  2225. # [15:15] <hsivonen> Gijs: post-Encoding Standard, Traditional Chinese and Korean each only have one legacy encoding, so there isn't much point in detection
  2226. # [15:15] <Gijs> fair enough.
  2227. # [15:15] <hsivonen> as for Simplied Chineses, HZ is XSS-dangerous and GBK and GB18030 are the same for the common characters
  2228. # [15:16] * nthomas|away is now known as nthomas
  2229. # [15:16] * Joins: wlach (wlach@EF7B3B58.1AA94311.3DEE0DD0.IP)
  2230. # [15:16] <hsivonen> Gijs: IE/Chrome/Safari only have this stuff for Japanese, FWIW
  2231. # [15:17] * Joins: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca)
  2232. # [15:17] <Gijs> hsivonen: right. I trust your judgment! But I'd like to have that info on the bug for posterity.
  2233. # [15:17] * Joins: Andreea|mtg1 (Thunderbir@97DE32AA.4007429F.B8FD5DE3.IP)
  2234. # [15:17] * Quits: Andreea|mtg (Thunderbir@601F3B17.33662590.A5830293.IP) (Ping timeout)
  2235. # [15:17] <hsivonen> Gijs:
  2236. # [15:17] * Quits: petruta (Mibbit@601F3B17.33662590.A5830293.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2237. # [15:17] <hsivonen> Gijs: ok
  2238. # [15:17] * Quits: Manuela (manuela_mu@601F3B17.33662590.A5830293.IP) (Connection reset by peer)
  2239. # [15:17] * Quits: AlinT (AlinT@601F3B17.33662590.A5830293.IP) (Ping timeout)
  2240. # [15:18] * Quits: Andreea|mtg1 (Thunderbir@97DE32AA.4007429F.B8FD5DE3.IP) (Connection reset by peer)
  2241. # [15:18] * Joins: Andreea|mtg (Thunderbir@601F3B17.33662590.A5830293.IP)
  2242. # [15:18] * Quits: brennan (mibr0789@moz-39CD8C22.it.uu.se) (Quit: leaving)
  2243. # [15:19] * Quits: JosiahOne (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  2244. # [15:19] * joduinn-afk is now known as joduinn
  2245. # [15:19] * bc is now known as bc|afk
  2246. # [15:20] <bjacob> bsmedberg: ping, i have a header that has to include npapi.h just to get the NPP typedef, and typedefs can't be forward declared, and that's a problem because npapi.h drags in a lot of system headers. Can nptypes.h be abused as a place to more such typedefs to? Or should i create a new header?
  2247. # [15:20] * Joins: JosiahOne (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  2248. # [15:21] <@bsmedberg> bjacob: NPAPI headers are imported from http://code.google.com/p/npapi-sdk/ and so any changes would need to go there
  2249. # [15:21] <@bsmedberg> josh owns that project
  2250. # [15:22] * Joins: jdm (jdm@moz-ED0C7AC7.hinet-ip.hinet.net)
  2251. # [15:22] <bjacob> bsmedberg: ouch.
  2252. # [15:23] <gkw> glandium: for bug 940246, i still seem to hit the same error without CROSS_COMPILE=1
  2253. # [15:24] * pmoore is now known as pmoore|away
  2254. # [15:25] * sheppy-afk is now known as sheppy
  2255. # [15:26] * Joins: Optimizer1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP)
  2256. # [15:26] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2257. # [15:27] * Quits: arky (arky@E75B4384.FC9D7307.FA662B63.IP) (Ping timeout)
  2258. # [15:27] * Callek_disconnected is now known as Callek
  2259. # [15:30] * Joins: glazou (glazou@D8B9C081.E820043D.D4C04133.IP)
  2260. # [15:30] * Joins: inolen1 (Adium@moz-3733E769.socal.res.rr.com)
  2261. # [15:30] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Connection reset by peer)
  2262. # [15:31] * Joins: ahal (ahal@moz-7DE89BF0.cable.teksavvy.com)
  2263. # [15:31] * jlund|afk is now known as jlund
  2264. # [15:31] * Callek is now known as Callek_disconnected
  2265. # [15:32] * whimboo|afk is now known as whimboo
  2266. # [15:34] * Quits: vendo (chatzilla@24F08834.CE4DDBE6.300931B2.IP) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 25.0/20131025151332])
  2267. # [15:35] * simone is now known as simone|away
  2268. # [15:35] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b8e6160eb82e - Johannes Buchner - Bug 912465 - Use MsgNewSafeBufferedFileOutputStream instead of NewLocalFileOutputStream in various places. r=ehsan
  2269. # [15:35] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/07b7146e0b7d - huxuan - Bug 685628 - Make mpadded apply height/depth to logical metrics. r=fredw, r=karlt
  2270. # [15:35] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/730f103c9f8f - Michael Shuen - Bug 939471 - Fix typo in gcparam() error message. r=luke
  2271. # [15:35] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/afd90049af4c - David Caabeiro - Bug 897027 - Handle one argument cases for both Math.atan2() and Math.pow(). r=till
  2272. # [15:35] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/7842ca0705f5 - James Kitchener - Bug 936886 - Account for possibility of non-null terminated strings in nsWindowsRegKey::ReadStringValue(). r=dmajor
  2273. # [15:36] * bc|afk is now known as bc
  2274. # [15:36] * simone|away is now known as simone
  2275. # [15:36] * Quits: Optimizer1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP) (Ping timeout)
  2276. # [15:37] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2277. # [15:37] * Joins: AaronMT (uid14380@moz-31ABA2C0.irccloud.com)
  2278. # [15:37] * Joins: davidb (davidb@13F2CEC5.7672369.D8E68FF6.IP)
  2279. # [15:38] * Joins: AlinT (AlinT@601F3B17.33662590.A5830293.IP)
  2280. # [15:38] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2281. # [15:39] * pmoore|away is now known as pmoore
  2282. # [15:39] * catlee-away is now known as catlee
  2283. # [15:39] * Quits: Ms2ger (Ms2ger@moz-454C9175.ugent.be) (Ping timeout)
  2284. # [15:40] * BenWa|email is now known as BenWa
  2285. # [15:40] * Joins: Ms2ger (Ms2ger@moz-454C9175.ugent.be)
  2286. # [15:40] * Quits: derf (derf@moz-4168F490.net) (Ping timeout)
  2287. # [15:40] <Gijs> hsivonen: another question... doesn't the dialog that opens when you click "Customize" alter the pref that we're no longer using for this menu? :)
  2288. # [15:40] * rail_away is now known as rail
  2289. # [15:40] <Gijs> hsivonen: if so, why are we keeping that item?
  2290. # [15:41] <Gijs> Or am I missing something?
  2291. # [15:41] * jorendorff_away is now known as jorendorff
  2292. # [15:42] * BenWa is now known as BenWa|email
  2293. # [15:42] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  2294. # [15:42] * Joins: derf (derf@moz-4168F490.net)
  2295. # [15:42] * Joins: arky (arky@4B842C74.E3D3746.A5DEA753.IP)
  2296. # [15:42] * whimboo is now known as whimboo|afk
  2297. # [15:43] * Quits: b10n1k (j0ni@moz-9129EE4A.dsl.dyn.forthnet.gr) (Ping timeout)
  2298. # [15:43] * Joins: bitgeeky (bitgeeky@9B9315E1.A6025CA.1C37C358.IP)
  2299. # [15:44] * rail is now known as rail_away
  2300. # [15:44] * rail_away is now known as rail
  2301. # [15:46] * Quits: @smaug (chatzilla@moz-9E0B1701.pp.htv.fi) (Ping timeout)
  2302. # [15:46] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/ad311f0dd591 - James Willcox - Bug 928804 - Always use an up-to-date texture transform when compositing SharedTextureSourceOGL r=nical
  2303. # [15:46] <hsivonen> Gijs: there's no customization with this patch. Everything is just in the menu.
  2304. # [15:47] <NeilAway> "Only internal code is allowed to set the usePrivateBrowsing attribute"
  2305. # [15:47] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/9c5256d1d8a7 - Jan Beich - Bug 810716 - Detect res_ninit() on DragonFly and FreeBSD. r=ted
  2306. # [15:47] <hsivonen> Gijs: I see no point in providing customizability for a feature that's already unused in 99.99% of sessions
  2307. # [15:47] <Gijs> hsivonen: right, but you left bits of it
  2308. # [15:47] * Gijs pokes the patch
  2309. # [15:48] <hsivonen> Gijs: I didn't remove stuff that would burn c-c if removed
  2310. # [15:48] <hsivonen> or burn Thunderbird, rather
  2311. # [15:48] <hsivonen> this might already burn SeaMonkey, dunno
  2312. # [15:48] * Andreea|mtg is now known as AndreeaMatei
  2313. # [15:48] <Gijs> You added strings for it in charsetMenu.dtd
  2314. # [15:48] <Gijs> which was what confused me, I guess
  2315. # [15:49] <Gijs> if they're only used in the Australis widget, I'm not sure why you can't just remove the items which use those strings.
  2316. # [15:50] <NeilAway> that's a funny bug, "handle one argument case for atan2"
  2317. # [15:50] * Joins: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP)
  2318. # [15:51] * Quits: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2319. # [15:51] * Joins: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP)
  2320. # [15:51] <tbsaunde> RyanVM: I guess you've never seen this failure before https://tbpl.mozilla.org/?tree=Try&rev=e622e995ea36 ?
  2321. # [15:52] <RyanVM> tbsaunde: yes
  2322. # [15:52] <RyanVM> we backed out eeejay for that yesterday
  2323. # [15:52] * Joins: josh (josh@moz-6FB23C25.hvc.res.rr.com)
  2324. # [15:52] <RyanVM> it was a 3 bug push - don't know which one actually caused it
  2325. # [15:53] * Quits: inolen1 (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2326. # [15:53] <tbsaunde> RyanVM: I don't actually care just want to know its not my fault :-)
  2327. # [15:53] <josh> congrats to everyone who worked on australis, a big improvement
  2328. # [15:53] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2329. # [15:54] * Joins: jonasfj (jonasfj@moz-B65AF445.hfc.comcastbusiness.net)
  2330. # [15:54] <RyanVM> tbsaunde: presumably you just pushed on top of the bad parent :)
  2331. # [15:54] * Joins: grapenuts (chatzilla@moz-B65AF445.hfc.comcastbusiness.net)
  2332. # [15:54] <RyanVM> tbsaunde: /me repeats his usual mantra about the danger of pushing on top of inbound ;)
  2333. # [15:55] * Joins: petruta (Mibbit@97DE32AA.4007429F.B8FD5DE3.IP)
  2334. # [15:56] * Quits: jrm2k6 (jrm2k6@moz-925F8EE7.osr0-terez.net.telekom.hu) (Client exited)
  2335. # [15:57] * Quits: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP) (Input/output error)
  2336. # [15:57] * Joins: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP)
  2337. # [15:57] * BenWa|email is now known as BenWa
  2338. # [15:58] * Quits: robertbindar (Thunderbir@986E6143.8CF5BBC3.89C0DD0D.IP) (Ping timeout)
  2339. # [15:58] <tbsaunde> RyanVM: yeah, I know its just so easy and I usually get away with it :)
  2340. # [15:58] <tbsaunde> thanks for looking
  2341. # [15:58] <RyanVM> np
  2342. # [15:58] * khuey is now known as khuey|away
  2343. # [15:59] * Joins: grobinson|laptop (grob_@moz-88A00DE5.bn3t.de)
  2344. # [15:59] * Joins: rogeliodh (Thunderbir@66B54F99.78858CED.D67CC001.IP)
  2345. # [16:00] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  2346. # [16:02] <RyanVM> Gijs: hmm, do app tabs no longer change colors when the subject changes?
  2347. # [16:02] * Quits: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de) (Input/output error)
  2348. # [16:02] * RyanVM notices that his gmail tab isn't turning blue anymore
  2349. # [16:02] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  2350. # [16:02] <RyanVM> s/subject/title
  2351. # [16:02] <Gijs> RyanVM: they have a blue glob thing.
  2352. # [16:02] <Gijs> *glow
  2353. # [16:02] <Gijs> certainly should, anyhow
  2354. # [16:02] * Quits: rogeliodh (Thunderbir@66B54F99.78858CED.D67CC001.IP) (Quit: rogeliodh)
  2355. # [16:02] <glob> O_o
  2356. # [16:02] <@bsmedberg> I see a highlight, yeah
  2357. # [16:02] * Joins: dbaron (dbaron@moz-104CC309.mv.mozilla.com)
  2358. # [16:02] * ChanServ sets mode: +ao dbaron dbaron
  2359. # [16:03] <RyanVM> ah yes
  2360. # [16:03] <RyanVM> not as obvious as it used to be :(
  2361. # [16:03] <RyanVM> especially on a dark theme
  2362. # [16:03] * Quits: Ms2ger (Ms2ger@moz-454C9175.ugent.be) (Ping timeout)
  2363. # [16:04] * Joins: Ms2ger (Ms2ger@moz-454C9175.ugent.be)
  2364. # [16:05] * Quits: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2365. # [16:05] * Joins: romaxa (romaxa@89CA6FC8.8F03A4EA.BE7924BA.IP)
  2366. # [16:06] * whimboo|afk is now known as whimboo
  2367. # [16:06] * Joins: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP)
  2368. # [16:06] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/babac1cc0741 - Trevor Saunders - bug 939049 - get rid of useless QIs r=smaug
  2369. # [16:06] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ad287f78608a - Trevor Saunders - bug 939049 - staticly type nsIDocument::mDocumentContainer and nsDocumentViewerContainer::mContainer r=smaug
  2370. # [16:06] * Quits: victorporof (victorporo@79FE7CA6.284D02A8.D111398B.IP) (Quit: victorporof)
  2371. # [16:07] * sheppy is now known as sheppy-afk
  2372. # [16:08] * Quits: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2373. # [16:08] * Joins: Earth4 (cht-zla_un@moz-4DA476A6.static.snfr.nc.charter.com)
  2374. # [16:08] * Earth4 is now known as Earth4|away
  2375. # [16:10] * philor|away is now known as philor
  2376. # [16:10] * Quits: luke (luke@moz-7CF84B28.dhcp.ftwo.tx.charter.com) (Quit: Leaving.)
  2377. # [16:10] * Joins: lmandel (lmandel@13F2CEC5.7672369.D8E68FF6.IP)
  2378. # [16:11] * Quits: @dbaron (dbaron@moz-104CC309.mv.mozilla.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  2379. # [16:12] * Tomcat|sheriffduty is now known as Tomcat
  2380. # [16:12] * edmorley is now known as edmorley|sheriffduty
  2381. # [16:13] <@bz_sleep> jmaher: ping
  2382. # [16:13] <jmaher> bz_sleep: wake up, pong
  2383. # [16:13] * Joins: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP)
  2384. # [16:13] * BenWa is now known as BenWa|email
  2385. # [16:13] * Quits: jrmuizel (jrmuizel@D87BD8D8.86AAE5E.9A8C35B4.IP) (Client exited)
  2386. # [16:14] * simone is now known as simone|away
  2387. # [16:14] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/9c31c75b81ea - Ted Mielczarek - bug 914925 - fix --debugger for mochitest on OS X. r=jmaher
  2388. # [16:15] * Tomcat is now known as Tomcat|afk
  2389. # [16:15] <jmaher> bz_sleep: canvasmark numbers as a whole are showing a difference pre/post your patch set; the biggest offender was the 3d tests though
  2390. # [16:15] * Joins: jrm2k6 (jrm2k6@moz-925F8EE7.osr0-terez.net.telekom.hu)
  2391. # [16:15] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2392. # [16:15] * bz_sleep is now known as bz
  2393. # [16:15] <@bz> jmaher: so here's my problem
  2394. # [16:15] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2395. # [16:16] <jmaher> bz: ok
  2396. # [16:16] <@bz> jmaher: None of the patches involved should obviously have impacted this stuff
  2397. # [16:16] <@bz> jmaher: but clearly they did
  2398. # [16:16] <@bz> jmaher: What I'd like to do is figure out which patch is involved, because then I'd have something to go on
  2399. # [16:16] <@bz> jmaher: I guess I can just do some try runs, if the numbers are stable enough....
  2400. # [16:17] <@bz> jmaher: I was trying to figure out a way to run that 3d test locally, because that would reduce the turnaround time significantly
  2401. # [16:17] <@bz> jmaher: is this test under "other" on talos for try's purposes?
  2402. # [16:17] <jmaher> bz: we could do it with talos, although I am not sure how to run the single test outside of the full canvasmark benchmark
  2403. # [16:17] * Joins: Mitch_ (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au)
  2404. # [16:17] * Joins: ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP)
  2405. # [16:17] * ChanServ sets mode: +o ehsan
  2406. # [16:18] * Quits: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au) (Ping timeout)
  2407. # [16:18] <jmaher> bz: it is in the chromez suite
  2408. # [16:18] * Mitch_ is now known as Mitch
  2409. # [16:18] <@bz> ok
  2410. # [16:18] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/424d6f2a4ea7 - Asaf Romano - Bug 914687 - API for presetting GUIDs on bookmarks. r=mak. sr=gavin
  2411. # [16:18] <@bz> jmaher: and does compare_talos know about it?
  2412. # [16:19] <@bz> Looks like it, ok
  2413. # [16:19] <bjacob> ehsan: do you know if there is a plan to unify js/src ?
  2414. # [16:19] <@bz> But not about the per-test breakdown....
  2415. # [16:19] <jmaher> bz: try server will work, but the per-test stuff needs datazilla
  2416. # [16:19] <@ehsan> bjacob: yes, it resides in my head :)
  2417. # [16:19] * Quits: grobinson|laptop (grob_@moz-88A00DE5.bn3t.de) (Ping timeout)
  2418. # [16:19] <jmaher> as it stands, graphs.mozilla.org only knows about the top level numbers
  2419. # [16:19] <@bz> ah, but tbpl will have links to the datazilla bits
  2420. # [16:20] <@bz> ok
  2421. # [16:20] <jmaher> bz: yes, it will
  2422. # [16:20] <@bz> so I guess I'll do some pushes and then go from there, thanks
  2423. # [16:20] <jmaher> and you could run it locally without too much headache- although try is a few minutes of work up front and harvest the results when you have time
  2424. # [16:20] <jmaher> bz: sounds good
  2425. # [16:20] * Quits: JosiahOne (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  2426. # [16:21] <@bz> jmaher: I haven't figured out how to run _just_ the tcanvasmark test locally
  2427. # [16:21] * Quits: adalucinet (Mibbit@28C4EA76.976FBEE.5BC07656.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2428. # [16:21] <@bz> jmaher: and at this point I'm not sure me spending more time trying to figure that out is worth it
  2429. # [16:22] * Joins: JosiahOne (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  2430. # [16:22] * Joins: jrmuizel (jrmuizel@D87BD8D8.86AAE5E.9A8C35B4.IP)
  2431. # [16:22] <@bz> jmaher: any suggestion for which OS to do the try on?
  2432. # [16:22] <jmaher> bz: understood
  2433. # [16:22] <jmaher> bz: windows
  2434. # [16:22] <@bz> jmaher: ok
  2435. # [16:22] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  2436. # [16:22] <jmaher> win7 shows the largest regression
  2437. # [16:23] <@bz> ok
  2438. # [16:23] * @bz does that
  2439. # [16:23] * Joins: dmarcos (dmarcos@AC51B14F.F694A87D.943C3C9C.IP)
  2440. # [16:23] * Joins: nicklebedev-vm (nicklebede@moz-838152B8.net135.n37.ru)
  2441. # [16:24] * bhearsum|afk is now known as bhearsum
  2442. # [16:24] <jmaher> nice! if you send me links to the try server runs, I could look at them in X hours and analyze the results up front
  2443. # [16:24] <jmaher> bz: ^
  2444. # [16:25] <@bz> jmaher: I'll put them in the bug.
  2445. # [16:25] <jmaher> bz: great
  2446. # [16:25] <@bz> jmaher: and thank you!
  2447. # [16:26] <jmaher> bz: thank you for looking into this
  2448. # [16:26] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2449. # [16:26] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2450. # [16:26] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/64791f0d76bf - Seth Fowler - Bug 933057 - Part 1: Correct scaling of SVG images in nsLayoutUtils::DrawSingleImage. r=dholbert, a=lsblakk
  2451. # [16:26] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/44dec0c5b7e3 - Landry Breuil - Bug 939498 - Properly include <algorithm> for std::max. r=bsmith, a=lsblakk
  2452. # [16:27] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/a1d2983c6f12 - Seth Fowler - Bug 933057 - Part 2: Add tests for scaling explicitly sized svg:image elements in inline SVGs. r=dholbert, a=lsblakk
  2453. # [16:27] * Joins: armenzg (armenzg@moz-B65AF445.hfc.comcastbusiness.net)
  2454. # [16:27] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/5ebf49f88efe - Makoto Kato - Bug 935499. r=honzab, a=lsblakk
  2455. # [16:28] * Joins: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  2456. # [16:28] * edmorley|sheriffduty is now known as edmorley|afk
  2457. # [16:28] * Joins: till (till@88F51059.F3BBB17D.144F44FA.IP)
  2458. # [16:28] * Joins: victorporof (victorporo@79FE7CA6.284D02A8.D111398B.IP)
  2459. # [16:28] <mikeratcliffe> browser mochitests do not cache test files because they are local. Anybody know a way to force them be cached?
  2460. # [16:28] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/ce8a25e53bda - Vendelin Ruzicka - Bug 921478 - Part 2: Convert test_contacts_upgrade.html to real chrome mochitest. r=bent
  2461. # [16:29] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/fc6579a5b551 - Jan Varga - Bug 921478 - Remove BackstagePass IDB constructor resolve hook and use Cu.importGlobalProperties. r=bholley,bent
  2462. # [16:29] * Joins: feltnerm (feltnerm@9AC552E8.C69D9A6B.61C21BB7.IP)
  2463. # [16:30] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  2464. # [16:30] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2465. # [16:30] * sheppy-afk is now known as sheppy
  2466. # [16:30] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2467. # [16:31] * BenWa|email is now known as BenWa
  2468. # [16:33] * Joins: gcp (gpascutto@moz-9CEB1C98.access.telenet.be)
  2469. # [16:33] * Joins: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP)
  2470. # [16:34] * Quits: arky (arky@4B842C74.E3D3746.A5DEA753.IP) (Quit: Leaving)
  2471. # [16:35] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2472. # [16:35] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2473. # [16:35] * Callek_disconnected is now known as Callek
  2474. # [16:36] * Quits: Archaeopteryx (itsme@moz-CE01FBF6.cust.telecolumbus.net) (Quit: Goodbye)
  2475. # [16:37] * Joins: rwaldron (rwaldron@moz-6D80EF31.snva.ca.megapath.net)
  2476. # [16:37] * Quits: rwaldron (rwaldron@moz-6D80EF31.snva.ca.megapath.net) (Max SendQ exceeded)
  2477. # [16:38] * simone|away is now known as simone
  2478. # [16:39] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2479. # [16:39] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  2480. # [16:39] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2481. # [16:39] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a92288689224 - Phil Ringnalda - Back out babac1cc0741:ad287f78608a (bug 939049) for OS X build bustage
  2482. # [16:40] * Joins: rwaldron (rwaldron@moz-6D80EF31.snva.ca.megapath.net)
  2483. # [16:40] * Quits: rwaldron (rwaldron@moz-6D80EF31.snva.ca.megapath.net) (Max SendQ exceeded)
  2484. # [16:40] * Joins: harth (harth@moz-A0276582.hsd1.ca.comcast.net)
  2485. # [16:40] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/7c50dd0a345f - Nick Thomas - Bug 937458, bump the required clang version in mach bootstrap, r=gps DONTBUILD
  2486. # [16:41] * Joins: glosoli (glosoli@moz-72C60525.static.zebra.lt)
  2487. # [16:41] * Joins: rwaldron (rwaldron@moz-6D80EF31.snva.ca.megapath.net)
  2488. # [16:41] * Quits: rwaldron (rwaldron@moz-6D80EF31.snva.ca.megapath.net) (Max SendQ exceeded)
  2489. # [16:41] * Joins: ericjung (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  2490. # [16:41] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4df4f9fff8c5 - Brian Hackett - Bug 938950 - Don't provide full access to compartment/zone/runtime during Ion compilation, r=jandem. CLOBBER
  2491. # [16:42] <RyanVM> bhackett: err
  2492. # [16:42] * Joins: rwaldron (rwaldron@moz-6D80EF31.snva.ca.megapath.net)
  2493. # [16:42] <RyanVM> putting CLOBBER in the commit message doesn't magically do anything
  2494. # [16:42] * Quits: rwaldron (rwaldron@moz-6D80EF31.snva.ca.megapath.net) (Max SendQ exceeded)
  2495. # [16:42] <RyanVM> bhackett: allow to touch CLOBBER for you
  2496. # [16:42] * Quits: harth (harth@moz-A0276582.hsd1.ca.comcast.net) (Ping timeout)
  2497. # [16:42] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/dcc781880684 - Michael Shuen - Bug 940185 - Build dom/audiochannel in unified mode. r=bzbarsky
  2498. # [16:43] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/5ce118a0b0b5 - Michael Shuen - Bug 940153 - Build dom/encoding in unified mode. r=bzbarsky
  2499. # [16:43] * Joins: rwaldron (rwaldron@moz-6D80EF31.snva.ca.megapath.net)
  2500. # [16:43] * Joins: pbocan (Thunderbir@moz-2B4BB411.sin.cvut.cz)
  2501. # [16:43] * froydnj wonders what that clobber is for
  2502. # [16:43] * Quits: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP) (Ping timeout)
  2503. # [16:44] * Joins: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP)
  2504. # [16:44] * Quits: dmarcos (dmarcos@AC51B14F.F694A87D.943C3C9C.IP) (Quit: Leaving...)
  2505. # [16:45] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/ddf925dab861 - Ryan VanderMeulen - Bug 938950 - Touch CLOBBER.
  2506. # [16:45] * Quits: AndreeaMatei (Thunderbir@601F3B17.33662590.A5830293.IP) (Quit: AndreeaMatei)
  2507. # [16:45] * jchen|away is now known as jchen
  2508. # [16:45] <RyanVM> oh, ed and tomcat are both afk
  2509. # [16:45] <RyanVM> nice of them to ping me
  2510. # [16:46] * RyanVM is now known as RyanVM|sheriffduty
  2511. # [16:46] <philor> you're on, kid, this is your chance to shine
  2512. # [16:46] <RyanVM|sheriffduty> heh
  2513. # [16:46] <RyanVM|sheriffduty> OMG THE PRESSURE
  2514. # [16:47] <jmaher> philor: heh
  2515. # [16:48] * bhearsum hums a bass line
  2516. # [16:48] * Quits: pbocan (Thunderbir@moz-2B4BB411.sin.cvut.cz) (Quit: pbocan)
  2517. # [16:49] <@bz> RyanVM: "You have to learn to pace yourself..."
  2518. # [16:49] * mcote|afk is now known as mcote
  2519. # [16:49] * bobowen|afk is now known as bobowen
  2520. # [16:50] <RyanVM|sheriffduty> bz: it's OK, I stayed at a Holiday Inn Express last night
  2521. # [16:51] * Quits: glazou (glazou@D8B9C081.E820043D.D4C04133.IP) (Ping timeout)
  2522. # [16:52] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/7e5acb32bd11 - Nathan Froyd - Bug 922094 - part 2 - make nsGlobalWindow report its proto/iface cache size, if appropriate; r=bz
  2523. # [16:52] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/56ad6d6b2c14 - Nathan Froyd - Bug 939109 - remove stray debugging statement; r=ehsan
  2524. # [16:52] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/427cd48f6c6d - Nathan Froyd - Bug 922094 - part 1 - report proto/iface cache size to about:memory; r=njn
  2525. # [16:52] * Joins: glazou (glazou@moz-8E16FB05.w80-12.abo.wanadoo.fr)
  2526. # [16:53] * Joins: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP)
  2527. # [16:53] * sewardj_ is now known as sewardj
  2528. # [16:53] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2529. # [16:53] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2530. # [16:53] * Joins: pbocan (Thunderbir@moz-2B4BB411.sin.cvut.cz)
  2531. # [16:53] <@bz> RyanVM|sheriffduty: hmm?
  2532. # [16:53] <RyanVM|sheriffduty> nevermind
  2533. # [16:56] * Quits: peterv (peterv@moz-4BC60BE9.access.telenet.be) (Ping timeout)
  2534. # [16:56] * Quits: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au) (Ping timeout)
  2535. # [16:56] <@bsmedberg> Hrm, firebot reports mozilla-inbound checkins here but not fx-team?
  2536. # [16:56] * Joins: ckerschb1 (ckerschb@moz-DF6EADF2.vp.reshsg.uci.edu)
  2537. # [16:56] <RyanVM|sheriffduty> yes
  2538. # [16:56] <RyanVM|sheriffduty> there's a bug on file for that
  2539. # [16:56] <RyanVM|sheriffduty> and b-i
  2540. # [16:56] <@bsmedberg> ah ok
  2541. # [16:57] * Joins: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au)
  2542. # [16:57] <RyanVM|sheriffduty> pretty sure it was filed and forgotten
  2543. # [16:57] * Quits: ggp (ggp@moz-3913D97B.dsl.telesp.net.br) (Ping timeout)
  2544. # [16:57] * Joins: peterv (peterv@moz-4BC60BE9.access.telenet.be)
  2545. # [16:57] * Quits: ckerschb1 (ckerschb@moz-DF6EADF2.vp.reshsg.uci.edu) (Quit: Leaving.)
  2546. # [16:57] * Joins: gandalf (zbraniecki@moz-B6E035E9.hsd1.ca.comcast.net)
  2547. # [16:57] * Joins: gwagner (gwagner@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2548. # [16:57] * Joins: ggp (ggp@moz-3913D97B.dsl.telesp.net.br)
  2549. # [16:58] * Quits: Ms2ger (Ms2ger@moz-454C9175.ugent.be) (Quit: bbl)
  2550. # [16:58] <RyanVM|sheriffduty> ckitching: looks like you've got random Android bustage again
  2551. # [16:58] <RyanVM|sheriffduty> ckitching: [@ libdvm.so + 0x48022
  2552. # [16:58] <RyanVM|sheriffduty> sounds familiar to me
  2553. # [16:58] * RyanVM|sheriffduty goes ahead and backs bug 913985 out
  2554. # [16:59] * Joins: twi (Adium@moz-E1F80.business.telecomitalia.it)
  2555. # [16:59] * Joins: bwc (Adium@1E9D28E.80F17AD8.4AA0E643.IP)
  2556. # [17:00] * Quits: glosoli (glosoli@moz-72C60525.static.zebra.lt) (Ping timeout)
  2557. # [17:01] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  2558. # [17:01] * whimboo is now known as whimboo|afk
  2559. # [17:01] * Joins: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2560. # [17:01] * bobowen is now known as bobowen|afk
  2561. # [17:01] * Quits: gwagner (gwagner@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  2562. # [17:02] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  2563. # [17:02] * Quits: glazou (glazou@moz-8E16FB05.w80-12.abo.wanadoo.fr) (Quit: bbl)
  2564. # [17:03] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2565. # [17:03] * Quits: fabrice (fabrice@moz-94F028C6.hsd1.ca.comcast.net) (Quit: Leaving.)
  2566. # [17:03] * Quits: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2567. # [17:03] * Joins: kk1fff (kk1fff@moz-359A0D8.dynamic.hinet.net)
  2568. # [17:03] * Quits: jaoo (user@moz-6599B16F.red-83-46-195.dynamicip.rima-tde.net) (Ping timeout)
  2569. # [17:03] <RyanVM|sheriffduty> bz: mmm, python syntax errors on certain unified source moz.build patches...
  2570. # [17:03] * Quits: @ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2571. # [17:03] * Quits: nicklebedev (nicklebede@moz-838152B8.net135.n37.ru) (Quit: )
  2572. # [17:03] * Joins: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2573. # [17:04] * Joins: ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP)
  2574. # [17:04] * ChanServ sets mode: +o ehsan
  2575. # [17:04] <RyanVM|sheriffduty> +UNIFIED_SOURCES += {
  2576. # [17:04] * Joins: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP)
  2577. # [17:04] * Quits: tomatoeblue (textual@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Computer has gone to sleep.)
  2578. # [17:04] <RyanVM|sheriffduty> what could possibly go wrong
  2579. # [17:04] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2580. # [17:05] * simone is now known as simone|away
  2581. # [17:06] * Quits: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2582. # [17:06] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/fe616b87fefe - Ryan VanderMeulen - Bug 940153 - Fix python syntax error. r=BlameTheShiftKey
  2583. # [17:06] * Joins: glosoli (glosoli@moz-72C60525.static.zebra.lt)
  2584. # [17:06] <smontagu> what code path does displaying placeholder text in <input> go through?
  2585. # [17:07] * Quits: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  2586. # [17:07] * Quits: Optimizer (Optimizer@7B06B82B.246489EE.BE4CF869.IP) (Ping timeout)
  2587. # [17:08] * Quits: jhorak (jhorak@moz-107AD163.redhat.com) (Quit: Leaving)
  2588. # [17:08] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2ea9176d5e7e - Nicholas D. Matsakis - Bug 926401 - Zero-length arrays r=waldo
  2589. # [17:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/28ed31db6d98 - Nicholas D. Matsakis - Bug 930974 - Check IsObject() and not just ObjectIsHandle() r=till
  2590. # [17:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/5b797c0177d3 - Nicholas D. Matsakis - Bug 898359 - Implement reference types in typed objects r=sfink
  2591. # [17:08] <@bz> RyanVM|sheriffduty: Sorry. :(
  2592. # [17:08] <@bz> RyanVM|sheriffduty: read too fast. :(
  2593. # [17:08] <@bz> RyanVM|sheriffduty: Assumed person posting patch might have compiled it. :(
  2594. # [17:08] <RyanVM|sheriffduty> bz: "You have to learn to pace yourself..."
  2595. # [17:09] <RyanVM|sheriffduty> :)
  2596. # [17:09] <@bz> RyanVM|sheriffduty: heh
  2597. # [17:09] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/133f7eae3078 - Gregory Szorc - Bug 939587 - js/src should regenerate build backend when necessary; r=glandium
  2598. # [17:09] <@bz> RyanVM|sheriffduty: I hate having to assume people are incompetent. :(
  2599. # [17:09] <RyanVM|sheriffduty> :)
  2600. # [17:10] * Quits: baku (baku@88F51059.F3BBB17D.144F44FA.IP) (Quit: baku)
  2601. # [17:10] * @bz gets depressed by reviews a lot
  2602. # [17:11] * Joins: ethan (chatzilla@moz-12F2BCF9.dynamic.hinet.net)
  2603. # [17:11] * Joins: marco (Thunderbir@moz-200BC415.retail.telecomitalia.it)
  2604. # [17:13] <tbsaunde> so, what is the current macro to export stuff from libxul?
  2605. # [17:13] * Quits: gustavold (gustavold@8E1E218.9B943A8F.DF2AC62B.IP) (Ping timeout)
  2606. # [17:14] <@bz> NS_COM_JS_EXPORT_API?
  2607. # [17:14] * Joins: inolen1 (Adium@moz-3733E769.socal.res.rr.com)
  2608. # [17:14] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Connection reset by peer)
  2609. # [17:14] <@bz> Seriously, people seem to use NS_EXPORT/NS_EXPORT_
  2610. # [17:14] * Joins: bjacob (bjacob@13F2CEC5.7672369.D8E68FF6.IP)
  2611. # [17:15] <@bsmedberg> tbsaunde: ugh, why are you exporting stuff?
  2612. # [17:15] <@bsmedberg> I'd like to review any new exports
  2613. # [17:15] * Joins: gustavold (gustavold@4DC84B90.F1297147.DF2AC62B.IP)
  2614. # [17:16] <tbsaunde> bsmedberg: I'm uninlining a function in nsIDocument that some mac stuff in browsercomps uses
  2615. # [17:16] * Joins: luke (luke@moz-7CF84B28.dhcp.ftwo.tx.charter.com)
  2616. # [17:16] <@bsmedberg> is that necessary for perf?
  2617. # [17:16] * Quits: petruta (Mibbit@97DE32AA.4007429F.B8FD5DE3.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2618. # [17:17] <tbsaunde> bsmedberg: huh?
  2619. # [17:17] <@bsmedberg> tbsaunde: why are you doing this?
  2620. # [17:17] <@bsmedberg> exports like this are probably not a good idea
  2621. # [17:17] * Quits: till (till@88F51059.F3BBB17D.144F44FA.IP) (Client exited)
  2622. # [17:17] <@bsmedberg> virtual funcs or inlines are what we should use here, until/unless browsercomps can stop using this API completely
  2623. # [17:17] <tbsaunde> bsmedberg: otherwise I'd have to include nsIDocShell into nsIDocument.h
  2624. # [17:17] * Joins: till (till@88F51059.F3BBB17D.144F44FA.IP)
  2625. # [17:18] <tbsaunde> bsmedberg: I guess I can make it virtual but why is that better than exporting?
  2626. # [17:18] <@bsmedberg> because when you export, binary addons might start using it and then we have an ABI compat issue. Also because exports cost startup perf.
  2627. # [17:18] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  2628. # [17:19] <@bsmedberg> We worked really hard to reduce the number and ABI impact of libxul exports.
  2629. # [17:19] <tbsaunde> bsmedberg: don't you have a relocation either way
  2630. # [17:19] * Quits: till (till@88F51059.F3BBB17D.144F44FA.IP) (Ping timeout)
  2631. # [17:19] <@bsmedberg> no
  2632. # [17:20] <@bsmedberg> *calling* any function which is exported requires a PLT lookup on ELF platforms
  2633. # [17:20] * Joins: bent (chatzilla@moz-932324BF.hsd1.ca.comcast.net)
  2634. # [17:20] * Joins: gabor (gabor@moz-A74A9206.dip0.t-ipconnect.de)
  2635. # [17:20] <@bsmedberg> which means that the function has to spend a register for the PLT, and make an indirect jump
  2636. # [17:21] <@bsmedberg> most of our hot functions nowadays don't have to do that, and it noticeably improves perf on ELF platforms
  2637. # [17:21] * simone|away is now known as simone
  2638. # [17:21] <tbsaunde> bsmedberg: I thought we built with -Bsymbolic so we didn't have to deal with the plt when inside libxul
  2639. # [17:22] * Joins: spohl1 (Adium@moz-FED9006F.static.hvvc.us)
  2640. # [17:22] <froydnj> -Bsymbolic doesn't do what you want in this case
  2641. # [17:22] <tbsaunde> oh?
  2642. # [17:24] <froydnj> -Bsymbolic will resolve the symbols locally, but it does nothing about any code the compiler put it because the compiler thought calls needed a plt lookup
  2643. # [17:24] * Joins: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP)
  2644. # [17:24] <froydnj> so it's only a halfway solution
  2645. # [17:24] * Quits: rwaldron (rwaldron@moz-6D80EF31.snva.ca.megapath.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  2646. # [17:24] <froydnj> and I don't think we build -Bsymbolic anyway
  2647. # [17:24] <tbsaunde> oh, yeah blerg I guess you need lto or something for that :(
  2648. # [17:24] <@bsmedberg> Yeah, I was looking at that
  2649. # [17:25] <@bsmedberg> We didn't a while back, but we seem to at least in some cases now.
  2650. # [17:25] <froydnj> or you need awful things like what glibc does :)
  2651. # [17:26] * corey|away is now known as corey
  2652. # [17:26] <tbsaunde> well, I guess I can make it final and virtual and hopefully it'll get devirtualized away
  2653. # [17:26] * edmorley|afk is now known as edmorley
  2654. # [17:28] * mdas is now known as mdas|afk
  2655. # [17:28] * julienw is now known as julienw_afk
  2656. # [17:28] * Joins: WeirdAl (chatzilla@moz-527389C3.hsd1.ca.comcast.net)
  2657. # [17:29] * Joins: Optimizer (Optimizer@3F74C040.DDD2B1C2.D2D1FAF0.IP)
  2658. # [17:30] * Quits: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Quit: masayuki1)
  2659. # [17:30] * Quits: inolen1 (Adium@moz-3733E769.socal.res.rr.com) (Quit: Leaving.)
  2660. # [17:30] * Joins: mshal (mshal@moz-B65AF445.hfc.comcastbusiness.net)
  2661. # [17:32] * Fallen is now known as Fallen|away
  2662. # [17:32] * Joins: musingmario (Mibbit@moz-81F896DC.gamma42.maxonline.com.sg)
  2663. # [17:32] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  2664. # [17:33] * Joins: gwagner (gwagner@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2665. # [17:33] * gregglind_away is now known as gregglind
  2666. # [17:36] * julienw_afk is now known as julienw
  2667. # [17:36] * Joins: blassey (blassey@moz-BBE3ABD.mv.mozilla.com)
  2668. # [17:36] * Quits: stransky (stransky@moz-107AD163.redhat.com) (Quit: Connection reset by beer)
  2669. # [17:36] * ctalbert|afk is now known as ctalbert
  2670. # [17:37] * Quits: gwagner (gwagner@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  2671. # [17:37] * Joins: dmarcos (dmarcos@moz-C07D5168.p2p.sfo1.mozilla.com)
  2672. # [17:37] * Joins: dmarcos_ (dmarcos@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2673. # [17:38] * edmorley is now known as edmorley|sheriffduty
  2674. # [17:38] * Quits: peterv (peterv@moz-4BC60BE9.access.telenet.be) (Connection reset by peer)
  2675. # [17:38] * RyanVM|sheriffduty is now known as RyanVM|brb
  2676. # [17:38] * Quits: dmarcos (dmarcos@moz-C07D5168.p2p.sfo1.mozilla.com) (Ping timeout)
  2677. # [17:39] * JosiahOne is now known as JosiahOne|Away
  2678. # [17:39] * Joins: huseby (huseby@moz-9127FDEC.torservers.net)
  2679. # [17:40] * Joins: peterv (peterv@moz-4BC60BE9.access.telenet.be)
  2680. # [17:40] * Quits: dao (dao@moz-3FC4398D.superkabel.de) (Quit: Leaving.)
  2681. # [17:41] * Joins: b10n1k (j0ni@moz-9129EE4A.dsl.dyn.forthnet.gr)
  2682. # [17:41] * Joins: dao (dao@moz-3FC4398D.superkabel.de)
  2683. # [17:41] * Quits: dao (dao@moz-3FC4398D.superkabel.de) (Connection reset by peer)
  2684. # [17:41] <@bz> ugh
  2685. # [17:42] * Joins: Snuffleupagus (chatzilla@moz-7411B7A4.bredband.comhem.se)
  2686. # [17:42] <@bz> How do I get my titlebar back?
  2687. # [17:42] * Joins: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net)
  2688. # [17:42] <@bz> moving windows is a PITA now
  2689. # [17:42] <@bz> And since sessionstore doesn't restore their positions I have to move them a lot.... :(
  2690. # [17:43] * Quits: b10n1k (j0ni@moz-9129EE4A.dsl.dyn.forthnet.gr) (Ping timeout)
  2691. # [17:43] * Quits: cdiehl (cdiehl@moz-FEEB125E.pool.mediaways.net) (Ping timeout)
  2692. # [17:44] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2693. # [17:44] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2694. # [17:44] <luke> anyone around familiar with packaged apps (specifically how and where they get installed?)
  2695. # [17:45] * Joins: protz (protz@moz-E29D2A15.inria.fr)
  2696. # [17:45] * Joins: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com)
  2697. # [17:46] <Rik> bz: https://groups.google.com/forum/#!topic/firefox-dev/PIUDZUfBU44 two options in 1)
  2698. # [17:46] * Joins: vendo (chatzilla@4097A75F.69EDD1E9.2B0D1E01.IP)
  2699. # [17:47] * Quits: botond-laptop (chatzilla@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2700. # [17:48] * Quits: matthewgertner (matthewger@173F2E9D.96442F2E.EE1C58A.IP) (Quit: matthewgertner)
  2701. # [17:50] * Joins: teoli (teoli@moz-16743A2F.cust.bluewin.ch)
  2702. # [17:50] <@bz> Rik: Thanks
  2703. # [17:51] * Joins: vladan (vladan@13F2CEC5.7672369.D8E68FF6.IP)
  2704. # [17:51] * Joins: drno (drno@moz-8C24FDC2.hsd1.ca.comcast.net)
  2705. # [17:51] * simone is now known as simone|away
  2706. # [17:52] * Joins: ehugg (ehugg@moz-FC93A892.cisco.com)
  2707. # [17:52] * Quits: kk1fff (kk1fff@moz-359A0D8.dynamic.hinet.net) (Quit: kk1fff)
  2708. # [17:52] * simone|away is now known as simone
  2709. # [17:52] * @bz wonders whether he can make the tabs smaller once they're out of the titlebar
  2710. # [17:52] <@bz> because they're a lot taller than they used to be. :(
  2711. # [17:52] * Quits: janv (varga@BCF8EBD.C1B7BBD9.4F33160D.IP) (Quit: This computer has gone to sleep)
  2712. # [17:52] * Joins: baku (baku@514D186.F3BBB17D.144F44FA.IP)
  2713. # [17:54] * Joins: mchang (mchang@BE99BE02.84BCE52A.BCAEBB33.IP)
  2714. # [17:54] * Joins: jgriffin (jgriffin@moz-C55C3E25.hsd1.wa.comcast.net)
  2715. # [17:55] * froydnj goes to change flags, finds bz has already reviewed his patch
  2716. # [17:55] * Quits: wlach (wlach@EF7B3B58.1AA94311.3DEE0DD0.IP) (Quit: Ex-Chat)
  2717. # [17:55] * Quits: protz (protz@moz-E29D2A15.inria.fr) (Quit: Leaving)
  2718. # [17:56] * jlund is now known as jlund|food
  2719. # [17:57] * simone is now known as simone|away
  2720. # [17:57] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2721. # [17:57] * Quits: @bz (bzbarsky@moz-EEFF43A9.bstnma.fios.verizon.net) (Ping timeout)
  2722. # [17:57] * Quits: twi (Adium@moz-E1F80.business.telecomitalia.it) (Quit: Leaving.)
  2723. # [17:58] * Joins: jimb (user@125EF623.B2666F0E.66399531.IP)
  2724. # [17:58] * Joins: bz (bzbarsky@moz-EEFF43A9.bstnma.fios.verizon.net)
  2725. # [17:58] * ChanServ sets mode: +o bz
  2726. # [17:58] <@bz> froydnj: nix the printfs, though
  2727. # [17:58] * Joins: sfoster (sfoster@moz-37AA60E3.hsd1.wa.comcast.net)
  2728. # [17:58] <froydnj> bz: probably going to be some sort of followup anyway, because mochitest-bc crashes locally with that patch :(
  2729. # [17:58] * Joins: janv (varga@moz-A506EDFE.flarion.as5628.telecom.sk)
  2730. # [17:59] <froydnj> didn't wait long enough to see if the test successfully ran
  2731. # [17:59] <@bz> froydnj: fun
  2732. # [17:59] <froydnj> bz: "fun"
  2733. # [18:00] * bobowen|afk is now known as bobowen
  2734. # [18:00] * lightsofapollo|portland is now known as lightsofapollo
  2735. # [18:00] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2736. # [18:00] * Joins: inolen1 (Adium@moz-3733E769.socal.res.rr.com)
  2737. # [18:01] * Quits: gandalf (zbraniecki@moz-B6E035E9.hsd1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  2738. # [18:01] * Quits: blassey (blassey@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  2739. # [18:01] * Quits: ethan (chatzilla@moz-12F2BCF9.dynamic.hinet.net) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0/20131028112446])
  2740. # [18:01] * Joins: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net)
  2741. # [18:01] * Joins: Rik_ (rik@87C1F78E.1DE10CA8.D8E68FF6.IP)
  2742. # [18:01] * Quits: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP) (Connection reset by peer)
  2743. # [18:01] * Joins: blassey (blassey@moz-BBE3ABD.mv.mozilla.com)
  2744. # [18:01] * Quits: inolen1 (Adium@moz-3733E769.socal.res.rr.com) (Connection reset by peer)
  2745. # [18:01] * Joins: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz)
  2746. # [18:02] * Quits: teoli (teoli@moz-16743A2F.cust.bluewin.ch) (Ping timeout)
  2747. # [18:02] * Quits: baku (baku@514D186.F3BBB17D.144F44FA.IP) (Quit: baku)
  2748. # [18:02] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  2749. # [18:02] * geekboy|afk is now known as geekboy
  2750. # [18:02] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Ping timeout)
  2751. # [18:02] * Quits: WeirdAl (chatzilla@moz-527389C3.hsd1.ca.comcast.net) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0.1/20131112160018])
  2752. # [18:02] * Joins: inolen (Adium@moz-3733E769.socal.res.rr.com)
  2753. # [18:02] * Joins: botond-laptop (chatzilla@13F2CEC5.7672369.D8E68FF6.IP)
  2754. # [18:03] * geekboy is now known as geekboy|afk
  2755. # [18:03] * Quits: bajaj (Adium@moz-8B9C61D3.hsd1.ca.comcast.net) (Ping timeout)
  2756. # [18:03] * Joins: jedp (jedp@moz-89599B04.dsl.dynamic.sonic.net)
  2757. # [18:03] * Joins: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2758. # [18:04] * Joins: Mossop (dtownsend@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2759. # [18:04] * Quits: inolen (Adium@moz-3733E769.socal.res.rr.com) (Connection reset by peer)
  2760. # [18:04] * Quits: marcoz (marco.zehe@moz-9B7EB95A.dip0.t-ipconnect.de) (Quit: Leaving.)
  2761. # [18:04] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2762. # [18:05] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2763. # [18:05] * Joins: paolo_ (paolo@5FB45659.87C8F476.84B85C50.IP)
  2764. # [18:05] * Quits: AlinT (AlinT@601F3B17.33662590.A5830293.IP) (Ping timeout)
  2765. # [18:06] * Quits: bjacob (bjacob@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Konversation terminated!)
  2766. # [18:06] * Joins: bjacob (bjacob@13F2CEC5.7672369.D8E68FF6.IP)
  2767. # [18:06] * Joins: harth (harth@moz-A0276582.hsd1.ca.comcast.net)
  2768. # [18:06] * h4writer is now known as h4writer|brb
  2769. # [18:06] * Joins: naveed (naveed@moz-BBE3ABD.mv.mozilla.com)
  2770. # [18:07] * h4writer|brb is now known as h4writer
  2771. # [18:08] * Quits: vladan (vladan@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Leaving.)
  2772. # [18:08] * Quits: armenzg (armenzg@moz-B65AF445.hfc.comcastbusiness.net) (Ping timeout)
  2773. # [18:08] * Joins: vladan (vladan@13F2CEC5.7672369.D8E68FF6.IP)
  2774. # [18:08] * Quits: vladan (vladan@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Leaving.)
  2775. # [18:08] * Joins: vladan (vladan@13F2CEC5.7672369.D8E68FF6.IP)
  2776. # [18:09] * Joins: mt (Adium@moz-7B0110AD.mv.mozilla.com)
  2777. # [18:09] <RyanVM|brb> bz: the lack of titlebar space is murder for multi-monitor users :(
  2778. # [18:09] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr)
  2779. # [18:10] * Quits: jrmuizel (jrmuizel@D87BD8D8.86AAE5E.9A8C35B4.IP) (Client exited)
  2780. # [18:10] * Joins: pbocan1 (Thunderbir@moz-445D4B08.vc.cvut.cz)
  2781. # [18:10] * geekboy|afk is now known as geekboy
  2782. # [18:11] * Quits: pbocan (Thunderbir@moz-2B4BB411.sin.cvut.cz) (Ping timeout)
  2783. # [18:12] * Quits: pbocan1 (Thunderbir@moz-445D4B08.vc.cvut.cz) (Ping timeout)
  2784. # [18:12] * Joins: ctangira (ctangira@moz-CFCC7B62.cisco.com)
  2785. # [18:12] * mconley is now known as mconley|lunch
  2786. # [18:13] * Joins: jrmuizel (jrmuizel@D87BD8D8.86AAE5E.9A8C35B4.IP)
  2787. # [18:13] * julienw is now known as julienw_afk
  2788. # [18:13] * jcranmer|away is now known as jcranmer
  2789. # [18:13] * Joins: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com)
  2790. # [18:13] <@bsmedberg> RyanVM|brb: right now the saving grace is the space on the left of the tabbar which is draggable
  2791. # [18:14] * Quits: ehugg (ehugg@moz-FC93A892.cisco.com) (Quit: ehugg)
  2792. # [18:14] <Rik_> funny, I don't move my windows too much. it was the lack of full window title that was a problem for me
  2793. # [18:15] <@bsmedberg> Rik_: huh, Firefox on Windows hasn't had a window title in ages
  2794. # [18:15] * Quits: jonasfj (jonasfj@moz-B65AF445.hfc.comcastbusiness.net) (Ping timeout)
  2795. # [18:15] <Rik_> I'm on OS X
  2796. # [18:15] <@bsmedberg> welcome to the new hotness :-(
  2797. # [18:15] * Joins: nicklebedev (nicklebede@moz-29D843ED.net151.n37.ru)
  2798. # [18:16] <smontagu> isn't there a pref?
  2799. # [18:16] <smontagu> browser.tabs.drawInTitlebar
  2800. # [18:16] * Quits: jrmuizel (jrmuizel@D87BD8D8.86AAE5E.9A8C35B4.IP) (Client exited)
  2801. # [18:16] <@bz> Rik_: I have to move my windows every time I restart
  2802. # [18:17] <@bz> Rik_: because session restore fucks up the positions. :(
  2803. # [18:17] <@bsmedberg> smontagu: yes, but the styling doesn't work
  2804. # [18:17] <smontagu> can't have everything :-P
  2805. # [18:17] * julienw_afk is now known as julienw
  2806. # [18:17] <@bz> space on the left of the tabbar is tiny too
  2807. # [18:17] * Quits: @bz (bzbarsky@moz-EEFF43A9.bstnma.fios.verizon.net) (Quit: Leaving)
  2808. # [18:17] * Joins: mt1 (Adium@moz-BBE3ABD.mv.mozilla.com)
  2809. # [18:17] <julienw> bsmedberg, unless you configure it :)
  2810. # [18:17] * Joins: bz (bzbarsky@moz-EEFF43A9.bstnma.fios.verizon.net)
  2811. # [18:17] * ChanServ sets mode: +o bz
  2812. # [18:18] <julienw> (for the window title)
  2813. # [18:18] <Rik_> bz: I guess patches welcome :)
  2814. # [18:18] * Quits: mt (Adium@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  2815. # [18:18] <@bz> Rik_: except they're not
  2816. # [18:18] <@bsmedberg> julienw: configure what?
  2817. # [18:18] <@bz> Rik_: because the new look is how it's designed to look
  2818. # [18:18] * Quits: sfink (chatzilla@moz-1A23C815.dsl.pltn13.sbcglobal.net) (Ping timeout)
  2819. # [18:18] * Quits: josh (josh@moz-6FB23C25.hvc.res.rr.com) (Quit: josh)
  2820. # [18:18] <@bsmedberg> julienw: I'm sure my addon can fix the styling, once I figure out what the current styles are doing
  2821. # [18:18] <Rik_> bz: I meant patches for session restore to restore the positions
  2822. # [18:20] * glob is now known as glob|away
  2823. # [18:20] * Quits: ahal (ahal@moz-7DE89BF0.cable.teksavvy.com) (Ping timeout)
  2824. # [18:21] * Joins: matthewgertner (matthewger@E05025B2.7102BCB6.B7C3970A.IP)
  2825. # [18:21] <Gijs> bz: can you explain what you mean by "space on the left of the tabbar" ?
  2826. # [18:22] * Quits: maxli (maxli@moz-4D28BA20.student.cs.uwaterloo.ca) (Quit: Leaving.)
  2827. # [18:22] <Gijs> space for what purpose?
  2828. # [18:22] <@bz> Gijs: I want to be able to drag the window
  2829. # [18:22] <@bz> Gijs: without having to hit a 5-px-wide target to do it
  2830. # [18:22] <Gijs> bz: sure.
  2831. # [18:22] * Joins: hurley (hurley@moz-E76806A0.dsl.static.sonic.net)
  2832. # [18:22] * Joins: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com)
  2833. # [18:22] <@bz> Gijs: How do I do that?
  2834. # [18:23] <@bz> Gijs: bsmedberg said there is space to the left of the tabbar that he managed to use for this purpose
  2835. # [18:23] <@bz> Gijs: but at least afaict on Mac there is no such space that's reasonably large
  2836. # [18:23] * @bsmedberg checks on mac
  2837. # [18:24] * Joins: pbocan (Thunderbir@moz-56F618DE.eduroam.fit.cvut.cz)
  2838. # [18:24] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  2839. # [18:24] <@bsmedberg> oh yeah, there's not on mac because of the red/yellow buttons
  2840. # [18:24] <@bz> Yep
  2841. # [18:24] <@bz> Exactly
  2842. # [18:24] * Joins: tallowen (tallowen@moz-ACF23BB3.hsd1.wa.comcast.net)
  2843. # [18:24] <@bsmedberg> sorry, use Windows ;-)
  2844. # [18:24] <@bz> mmm
  2845. # [18:24] <@bz> How about "Use Safari"?
  2846. # [18:24] <@bz> Might be simpler. ;)
  2847. # [18:24] <@bz> I mean, I can also flip the pref
  2848. # [18:25] <@bz> Makes the larger-than-before tabs a bit annoying
  2849. # [18:25] * Joins: Ms2ger (Ms2ger@92EF86A7.A020F168.187A1082.IP)
  2850. # [18:25] <@bz> but at least gives me a usable titlebar
  2851. # [18:25] <Gijs> bz: well, it's either/or, right?
  2852. # [18:25] <Gijs> I'm not sure how to magically make space at the top without losing space at the bottom
  2853. # [18:25] * gaye|brb is now known as gaye
  2854. # [18:25] * Joins: ahal (ahal@moz-7DE89BF0.cable.teksavvy.com)
  2855. # [18:26] <@bz> Gijs: sure
  2856. # [18:26] * Quits: mdas|afk (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2857. # [18:26] * Joins: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP)
  2858. # [18:26] <@bz> Gijs: the actual height of a tab is about 1.5x what it used to be
  2859. # [18:26] * Joins: abwillis (abwillis@CBAC43F2.9DD4DBBF.6A7A197.IP)
  2860. # [18:26] <Gijs> bz: but more seriously, we could probably add more padding at the top if you can convince shorlander. I would agree with you, but I don't know if changing this is an option.
  2861. # [18:27] <@ehsan> bjacob: ping
  2862. # [18:27] * Quits: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2863. # [18:27] * Quits: kdc (chatzilla@moz-2ACC6B38.pk.shawcable.net) (Connection reset by peer)
  2864. # [18:27] <Gijs> bz: I don't think that's true, though.
  2865. # [18:27] <@bz> Gijs: which?
  2866. # [18:27] * Joins: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP)
  2867. # [18:27] * Joins: kdc (chatzilla@moz-2ACC6B38.pk.shawcable.net)
  2868. # [18:27] <Gijs> bz: 1.5x ?
  2869. # [18:27] <Gijs> it's 31px vs. 26px
  2870. # [18:28] <@bz> um
  2871. # [18:28] <Gijs> that's closer to 1 than 1.5
  2872. # [18:28] * @bz measures
  2873. # [18:28] <Gijs> document.getElementById("TabsToolbar").getBoundingClientRect().height :)
  2874. # [18:28] <Gijs> (I just checked beta vs. nightly)
  2875. # [18:28] <@bz> Ah, it just looks like that because part of the urlbar looks like part of the tab
  2876. # [18:28] <shorlander> It's more like 1.25x
  2877. # [18:28] <RyanVM|brb> Gijs: well, we could drop the padding on the navbar to reclaim some space
  2878. # [18:29] <RyanVM|brb> i found that going from 8px to 2px was less waste-tastic
  2879. # [18:29] * Quits: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  2880. # [18:29] <@bz> I agree that it's about 5px taller when I compare the full height of the chrome
  2881. # [18:29] * Joins: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com)
  2882. # [18:29] * @bz wonders whether he can userChrome.css his way to victory here or something
  2883. # [18:29] <bjacob> ehsan: on the phone
  2884. # [18:29] <Gijs> Probably
  2885. # [18:30] <Gijs> the curves are SVG
  2886. # [18:30] * Joins: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com)
  2887. # [18:30] <Gijs> they should scale.
  2888. # [18:30] * Joins: jonasfj (jonasfj@moz-B65AF445.hfc.comcastbusiness.net)
  2889. # [18:30] <Gijs> and you could remove some of the padding that RyanVM|brb was talking about
  2890. # [18:30] * @bz doesn't much care about the curves
  2891. # [18:30] <@bz> I do care about quickly finding the right window
  2892. # [18:30] <@bz> and being able to move them
  2893. # [18:30] <@bz> both of which are way easier with an actual title
  2894. # [18:30] * Joins: twi (Adium@moz-4541C8E7.cust.dsl.vodafone.it)
  2895. # [18:30] <@ehsan> bjacob: k
  2896. # [18:30] <@ehsan> bjacob: I just want to ask if you know how to build angle standalone on mac
  2897. # [18:31] <@ehsan> no rush though
  2898. # [18:31] * Joins: terrence (terrence@moz-7B0110AD.mv.mozilla.com)
  2899. # [18:31] <RyanVM|brb> bz: https://pastebin.mozilla.org/3636258 for the navbar padding
  2900. # [18:31] <@bz> Unless there's a better suggestion for how to do that?
  2901. # [18:31] * Quits: @ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2902. # [18:31] <gcp> bsmedberg: what addon?
  2903. # [18:31] <gcp> there's some classic style addon, but it has broken history/tab menus
  2904. # [18:31] * Joins: b10n1k (j0ni@moz-9129EE4A.dsl.dyn.forthnet.gr)
  2905. # [18:31] * Joins: ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP)
  2906. # [18:31] * ChanServ sets mode: +o ehsan
  2907. # [18:31] <gcp> https://addons.mozilla.org/en-US/firefox/addon/classicthemerestorer/
  2908. # [18:31] <@bsmedberg> gcp: I have two, https://addons.mozilla.org/en-us/firefox/addon/aero-window-title/ and https://addons.mozilla.org/en-US/firefox/addon/iconic-firefox-menu/ that I'll be updating for Australis
  2909. # [18:31] * Quits: jonasfj (jonasfj@moz-B65AF445.hfc.comcastbusiness.net) (Ping timeout)
  2910. # [18:32] <gcp> this looked promising, but I use recently closed tabs & history too much to miss it
  2911. # [18:32] * Joins: Archaeopteryx (itsme@moz-CE01FBF6.cust.telecolumbus.net)
  2912. # [18:32] * nthomas is now known as nthomas|away
  2913. # [18:32] * Joins: danieru_ (danieru@80C199A4.DE1B4A7B.22E1B6C8.IP)
  2914. # [18:32] <RyanVM|brb> bsmedberg: <3 iconic
  2915. # [18:33] <RyanVM|brb> bsmedberg: only problem I've had with iconic is that sometimes app tabs end up underneath the firefox button
  2916. # [18:34] <RyanVM|brb> but unmaximizing and remaximizing fixes it
  2917. # [18:34] <@bsmedberg> interesting, that's probably because I only use it with aero window title
  2918. # [18:34] <@bsmedberg> so I haven't caught that kind of issue
  2919. # [18:34] * Joins: grobinson|laptop (grob_@E6C3B35B.1D8BF1C3.9E74FAD6.IP)
  2920. # [18:34] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2921. # [18:34] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2922. # [18:34] * @bsmedberg is amused that dietrich's australess addons makes the titlebar even smaller
  2923. # [18:35] <dietrich> it was an awkward height. i fixed it.
  2924. # [18:36] * Joins: ckerschb (ckerschb@moz-82777327.ics.uci.edu)
  2925. # [18:36] * Quits: grobinson|laptop (grob_@E6C3B35B.1D8BF1C3.9E74FAD6.IP) (Ping timeout)
  2926. # [18:36] * Joins: rmkoesters (Thunderbir@moz-37C52F11.resnet.wisc.edu)
  2927. # [18:36] * RyanVM|brb is now known as RyanVM
  2928. # [18:36] * Quits: abr (abr@1C05CC21.246E5E69.4AE11518.IP) (Quit: AFK)
  2929. # [18:36] * Quits: surkov (surkov@74F7CB6C.E80E6317.6BEEAEBD.IP) (Ping timeout)
  2930. # [18:37] <@bsmedberg> for some variant of "fixed", I guess...
  2931. # [18:37] * Callek is now known as Callek|Buildduty
  2932. # [18:37] * coop|buildduty is now known as coop|lunch
  2933. # [18:37] * Joins: armenzg (armenzg@moz-B65AF445.hfc.comcastbusiness.net)
  2934. # [18:37] * Joins: surkov (surkov@74F7CB6C.E80E6317.6BEEAEBD.IP)
  2935. # [18:38] * philor is now known as philor|away
  2936. # [18:38] <shorlander> dietrich++
  2937. # [18:40] * Quits: naveed (naveed@moz-BBE3ABD.mv.mozilla.com) (Input/output error)
  2938. # [18:40] * Quits: Mossop (dtownsend@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: This computer has gone to sleep)
  2939. # [18:40] * Joins: naveed (naveed@moz-BBE3ABD.mv.mozilla.com)
  2940. # [18:40] <dietrich> bsmedberg: why do you want more titlebar?
  2941. # [18:40] * Joins: wlach (wlach@5A322A17.4F9B71DB.80C20C35.IP)
  2942. # [18:41] <@bsmedberg> dietrich: for dragging, for the window title
  2943. # [18:41] * Quits: marco (Thunderbir@moz-200BC415.retail.telecomitalia.it) (Ping timeout)
  2944. # [18:41] * Joins: lpy (lpy@12172131.F09091A8.1348A864.IP)
  2945. # [18:41] <nemo> say. why does clearing recent history lock up the browser?
  2946. # [18:41] <@bsmedberg> for being a window that lives among all my other windows
  2947. # [18:41] <nemo> don't quite get why it needs to block.
  2948. # [18:41] <dietrich> bsmedberg: ah i work in maximize all the time
  2949. # [18:42] * Quits: annevk (annevk@88F51059.F3BBB17D.144F44FA.IP) (Input/output error)
  2950. # [18:43] <dietrich> shorlander: it bugged me that the window controls weren't vertically centered along a line with the tab titles
  2951. # [18:43] <dietrich> shorlander: so i reduced titlebar height (unused space except for dragging) and centered those
  2952. # [18:44] <dietrich> it's not all right yet, but closer ;)
  2953. # [18:44] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Quit: Jesse)
  2954. # [18:44] * Quits: bwc (Adium@1E9D28E.80F17AD8.4AA0E643.IP) (Quit: Leaving.)
  2955. # [18:44] * Joins: marco (Thunderbir@moz-200BC415.retail.telecomitalia.it)
  2956. # [18:45] * Joins: till (till@moz-543E5C84.threembb.co.uk)
  2957. # [18:47] * Joins: jonasfj (jonasfj@moz-B65AF445.hfc.comcastbusiness.net)
  2958. # [18:47] * Joins: smaug (chatzilla@moz-9E0B1701.pp.htv.fi)
  2959. # [18:47] * ChanServ sets mode: +o smaug
  2960. # [18:47] <@bz> dietrich: That's the thing
  2961. # [18:47] * mconley|lunch is now known as mconley
  2962. # [18:48] <@bz> dietrich: For people who always have their browser maximized, smaller titlebar makes sense
  2963. # [18:48] <@bz> dietrich: for people who have multiple windows visible at once (e.g. I mostly tile them two across), you need a sane titlebar...
  2964. # [18:48] * Quits: jonasfj (jonasfj@moz-B65AF445.hfc.comcastbusiness.net) (Ping timeout)
  2965. # [18:48] * Quits: lgarner (lgarner@moz-771027BC.dsl.dynamic.sonic.net) (Ping timeout)
  2966. # [18:48] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Quit: Boriss)
  2967. # [18:49] * Joins: azakai (alon@moz-BBE3ABD.mv.mozilla.com)
  2968. # [18:49] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  2969. # [18:49] * bent is now known as bent|away
  2970. # [18:50] * Joins: Mook_as (mook@moz-1FCC0032.activestate.com)
  2971. # [18:51] <RyanVM> mccr8: bsmedberg: this doesn't look good - https://tbpl.mozilla.org/php/getParsedLog.php?id=30775696&tree=Mozilla-Inbound
  2972. # [18:51] <RyanVM> froydnj ^
  2973. # [18:51] * Quits: danieru_ (danieru@80C199A4.DE1B4A7B.22E1B6C8.IP) (Ping timeout)
  2974. # [18:51] <RyanVM> oh, that's just bustage
  2975. # [18:51] <RyanVM> nmatsakis ^
  2976. # [18:51] <dietrich> nemo: fixing that is part of this ongoing project: https://bugzilla.mozilla.org/show_bug.cgi?id=699820
  2977. # [18:52] <dietrich> i think
  2978. # [18:52] <dietrich> CRH does clear things that might not be in that list, actually
  2979. # [18:52] * Joins: jonasfj (jonasfj@moz-B65AF445.hfc.comcastbusiness.net)
  2980. # [18:52] * Joins: maxli (maxli@moz-4D28BA20.student.cs.uwaterloo.ca)
  2981. # [18:52] <froydnj> RyanVM: it's *possible* that's me, but I think have a green try run with my push in that area
  2982. # [18:53] * Joins: ehugg (ehugg@moz-96F986B0.smartcity.com)
  2983. # [18:53] <nmatsakis> RyanVM: looking
  2984. # [18:53] <RyanVM> froydnj: I'm inclined to blame nmatsakis
  2985. # [18:53] <RyanVM> just not sure which of the 3
  2986. # [18:53] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Quit: jib)
  2987. # [18:53] * Quits: gcp (gpascutto@moz-9CEB1C98.access.telenet.be) (Quit: Make a new plan, Stan!)
  2988. # [18:53] <RyanVM> froydnj: but there hasn't been any earlier win debug builds since your push
  2989. # [18:53] <RyanVM> so could be you too :)
  2990. # [18:53] <Ms2ger> * RyanVM|sheriffduty refrains from the inevitable "these problems have been around for how long?!?!" comments
  2991. # [18:53] <Ms2ger> RyanVM, btw: two days
  2992. # [18:54] * Quits: pnkfelix (pnkfelix@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: Leaving.)
  2993. # [18:54] * Parts: Snuffleupagus (chatzilla@moz-7411B7A4.bredband.comhem.se)
  2994. # [18:54] <RyanVM> Ms2ger: that was more directed at the clobber stuff
  2995. # [18:54] * Quits: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP) (Quit: RealRaven)
  2996. # [18:54] <RyanVM> webidl rather
  2997. # [18:54] <Ms2ger> RyanVM, my bugmail says that's nearly fixed
  2998. # [18:54] <nmatsakis> RyanVM: I ran try runs on all those 3, didn't see anything like that, but I did have to rebase over a weekend's stuff, so maybe something occured in that rebase
  2999. # [18:54] * simone|away is now known as simone
  3000. # [18:54] <froydnj> RyanVM: nope, that's me, bug 922094
  3001. # [18:54] <RyanVM> Ms2ger: yes, after how many months? ;)
  3002. # [18:55] <mccr8> it looks like something touching a dead window, maybe
  3003. # [18:55] <RyanVM> froydnj: thanks
  3004. # [18:55] <Ms2ger> RyanVM, one :)
  3005. # [18:55] * KWierso catching up on scrollback, bsmedberg wants bug 906196 to be fixed for fxteam and b2g-inbound checkins to be announced by firebot
  3006. # [18:55] <RyanVM> Ms2ger: ok, windows webidl needs-clobber issues have been around way longer than 1 month
  3007. # [18:55] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  3008. # [18:55] <RyanVM> Ms2ger: the *latest* issue may be more recent
  3009. # [18:55] <RyanVM> but come on
  3010. # [18:56] <Ms2ger> RyanVM, sure, and those older problems were fixed
  3011. # [18:56] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3012. # [18:56] * RyanVM is glad that maybe just maybe this rewrite will resolve them once and for all
  3013. # [18:56] * Joins: Mossop (dtownsend@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3014. # [18:56] <RyanVM> but given the track record, I don't think you can really blame those of us constantly dealing with these bustages for being a bit cynical
  3015. # [18:56] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  3016. # [18:57] <RyanVM> froydnj: you want me to backout or are you?
  3017. # [18:57] <Ms2ger> Sure, that's why it's been rewritten
  3018. # [18:57] <@ehsan> vlad: https://groups.google.com/forum/#!topic/mozilla.dev.platform/HdXdNdfdy2w
  3019. # [18:57] <froydnj> RyanVM: if you can, that'd be great
  3020. # [18:57] <RyanVM> froydnj: will do
  3021. # [18:57] <Ms2ger> And that's the reason it's taken a while
  3022. # [18:57] <froydnj> RyanVM: thanks
  3023. # [18:57] * Quits: lduros (user@moz-418FD747.phlapa.fios.verizon.net) (Ping timeout)
  3024. # [18:57] * Quits: terrence (terrence@moz-7B0110AD.mv.mozilla.com) (Quit: Reconnecting…)
  3025. # [18:57] * Joins: lduros (user@moz-418FD747.phlapa.fios.verizon.net)
  3026. # [18:57] * Joins: terrence (terrence@moz-7B0110AD.mv.mozilla.com)
  3027. # [18:58] * Joins: sfink (chatzilla@moz-BBE3ABD.mv.mozilla.com)
  3028. # [18:58] * Quits: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au) (Ping timeout)
  3029. # [18:58] <gps> bbondy_: your build times in codefirefox.com were over an hour. either your machine needs upgrading or your build environment is whacked (VM possibly?)
  3030. # [18:58] <mwargers> RyanVM, I'll be happy to make a patch for b2g26 for bug 927196, once I get it fixed on trunk first. Can you perhaps give me explanation how to get to the b2g26 branch?
  3031. # [18:58] <bbondy_> gps: vm inside osx
  3032. # [18:58] <RyanVM> Ms2ger: i'm sure it'll stop being a punchline once that proves to be the case
  3033. # [18:58] * gps screams
  3034. # [18:58] <Ms2ger> I hope so too
  3035. # [18:58] <RyanVM> mwargers: https://hg.mozilla.org/releases/mozilla-b2g26_v1_2/
  3036. # [18:59] * Joins: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au)
  3037. # [18:59] <gps> bbondy_: terrific work btw!
  3038. # [18:59] <bbondy_> no one will notice the build times though
  3039. # [18:59] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/987504ee4b4c - Ryan VanderMeulen - Backed out changesets 7e5acb32bd11 and 427cd48f6c6d (bug 922094) for Windows debug mochitest-4 crashes.
  3040. # [18:59] <bbondy_> thanks :)
  3041. # [18:59] * Quits: ehugg (ehugg@moz-96F986B0.smartcity.com) (Quit: ehugg)
  3042. # [18:59] * RyanVM is now known as RyanVM|sheriffduty
  3043. # [19:00] <mwargers> RyanVM, ok, thanks
  3044. # [19:00] <RyanVM|sheriffduty> gps: impeccable timing on landing that js build fix, btw :) :P
  3045. # [19:01] * Joins: jhammel (jhammel@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3046. # [19:01] * Quits: azakai (alon@moz-BBE3ABD.mv.mozilla.com) (Quit: Ex-Chat)
  3047. # [19:01] * Joins: azakai (alon@moz-BBE3ABD.mv.mozilla.com)
  3048. # [19:02] * Quits: abwillis (abwillis@CBAC43F2.9DD4DBBF.6A7A197.IP) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.7.2/20130908222133])
  3049. # [19:02] * hwine is now known as hwine|mtg
  3050. # [19:02] * Quits: blassey (blassey@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  3051. # [19:02] * Joins: lassey (blassey@moz-BBE3ABD.mv.mozilla.com)
  3052. # [19:03] <nalexander> RyanVM|sheriffduty: trees are closed, right?
  3053. # [19:03] <RyanVM|sheriffduty> nalexander: not for long
  3054. # [19:03] * Quits: erikvold (erikvold@4D2313B7.CEB4024D.BD7E11C1.IP) (Quit: erikvold)
  3055. # [19:03] <nalexander> \o/
  3056. # [19:03] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  3057. # [19:03] <RyanVM|sheriffduty> just cleaning up some stuff
  3058. # [19:03] * Quits: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  3059. # [19:04] * Joins: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP)
  3060. # [19:04] * Joins: inolen (Adium@A88571AE.CDFDA8DC.591ED24F.IP)
  3061. # [19:05] * Joins: ehugg_lime (ehugg_lime@moz-96F986B0.smartcity.com)
  3062. # [19:05] <RyanVM|sheriffduty> nalexander: have fun
  3063. # [19:05] * jlund|food is now known as jlund
  3064. # [19:05] * Joins: grobinson|laptop (grob_@moz-FF0B8E6D.ipredator.se)
  3065. # [19:06] * Quits: inolen (Adium@A88571AE.CDFDA8DC.591ED24F.IP) (Ping timeout)
  3066. # [19:06] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  3067. # [19:06] <RyanVM|sheriffduty> froydnj: if it makes you feel better, other platforms didn't like it either
  3068. # [19:07] * Joins: inolen (Adium@A88571AE.CDFDA8DC.591ED24F.IP)
  3069. # [19:08] * AutomatedTester is now known as AutomatedTester|away
  3070. # [19:09] * philor|away is now known as philor
  3071. # [19:09] * Joins: Jesse (jruderman@moz-BBE3ABD.mv.mozilla.com)
  3072. # [19:09] * Quits: lzzluca (lzzluca@moz-10429979.static.virginmediabusiness.co.uk) (Quit: Ex-Chat)
  3073. # [19:09] * Joins: TimAbraldes (Instantbir@moz-7FD19BDC.hsd1.or.comcast.net)
  3074. # [19:09] <froydnj> RyanVM|sheriffduty: huh, they did on try :(
  3075. # [19:09] <RyanVM|sheriffduty> froydnj: ASAN crapped out on it too
  3076. # [19:10] * Joins: gandalf (zbraniecki@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3077. # [19:11] * jimm is now known as jimm-lunch
  3078. # [19:11] * edmorley|sheriffduty is now known as edmorley
  3079. # [19:11] <froydnj> RyanVM|sheriffduty: argh, -p all fail
  3080. # [19:12] <RyanVM|sheriffduty> jaws: suspicious-looking bc failure on fx-team
  3081. # [19:12] <gps> uh oh
  3082. # [19:12] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/c386d6f16bd5 - Gregory Szorc - Bug 928195 - Part 2: Provide a mach command to run WebIDL parser tests; r=bz
  3083. # [19:12] <gps> mercurial fail
  3084. # [19:12] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b6f5dfa97f98 - Gregory Szorc - Bug 928195 - Part 5: Add docs for WebIDL and the build system
  3085. # [19:12] * Quits: marco (Thunderbir@moz-200BC415.retail.telecomitalia.it) (Ping timeout)
  3086. # [19:12] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/608c663f691f - Gregory Szorc - Bug 928195 - Part 6: Rewrite WebIDL build system integration
  3087. # [19:12] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/95fe878b5db8 - Gregory Szorc - Bug 939925 - Catch exceptions when recording resource usage; r=mshal
  3088. # [19:13] <RyanVM|sheriffduty> gps: ruh roh?
  3089. # [19:13] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/afc54efcf0fd - Gregory Szorc - Bug 928195 - Part 4: mach command for generating WebIDL example files; r=froydnj
  3090. # [19:13] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/e4e085ffb2dd - Gregory Szorc - Bug 937803 - os.path.exists should work with MockedOpen; r=glandium
  3091. # [19:13] <Ms2ger> Was 6 reviewed?
  3092. # [19:13] <gps> RyanVM|sheriffduty: I pushed more patches than I should. I'll back things out
  3093. # [19:13] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/c0e8f2c0465f - Gregory Szorc - Bug 928195 - Part 3: Consolidate all WebIDL Python logic into mozwebidl module; r=bz, froydnj
  3094. # [19:13] <RyanVM|sheriffduty> ok
  3095. # [19:13] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/d51357993d25 - Gregory Szorc - Bug 928195 - Part 1: Remove trailing whitespace from Codegen.py; r=bz
  3096. # [19:14] <RyanVM|sheriffduty> jaws: going out on a limb that bug 935753 is at fault
  3097. # [19:14] * RyanVM|sheriffduty looks for a try push in the bug....nope
  3098. # [19:14] * coop|lunch is now known as coop|buildduty
  3099. # [19:15] <jaws> RyanVM|sheriffduty: looking
  3100. # [19:15] <RyanVM|sheriffduty> jaws: my finger's literally hovering over the trigger
  3101. # [19:15] <gps> does qbackout not understand revsets? boo
  3102. # [19:15] <RyanVM|sheriffduty> gps: what do you mean?
  3103. # [19:15] <jaws> RyanVM|sheriffduty: awww fffff, if you're ready to back out then go ahead and do it
  3104. # [19:15] * Joins: eduardostalinho (eduardo@E4AA2CA.78662DF2.7DED4104.IP)
  3105. # [19:15] <gps> hg qbackout -r c0e8f2c0465f::608c663f691f
  3106. # [19:15] <RyanVM|sheriffduty> one :
  3107. # [19:15] <RyanVM|sheriffduty> that works fine
  3108. # [19:16] <jaws> the test just needs to be updated
  3109. # [19:16] <jaws> RyanVM|sheriffduty: ^
  3110. # [19:16] <RyanVM|sheriffduty> you can also do A:B+C
  3111. # [19:16] <RyanVM|sheriffduty> gps ^
  3112. # [19:16] * Joins: marco (Thunderbir@moz-200BC415.retail.telecomitalia.it)
  3113. # [19:16] <gps> RyanVM|sheriffduty: :: is proper. :: is a DAG range. : is a revision range
  3114. # [19:16] <jaws> RyanVM|sheriffduty: but i'm in a meeting, so backout of just that one patch would be appreciated
  3115. # [19:16] <RyanVM|sheriffduty> jaws: already gone
  3116. # [19:16] * Callek|Buildduty is now known as Callek
  3117. # [19:17] <RyanVM|sheriffduty> gps: whatever, I just know that c0e8f2c0465f:608c663f691f works
  3118. # [19:17] <jaws> RyanVM|sheriffduty: thanks and sorry
  3119. # [19:17] <RyanVM|sheriffduty> take it up with sfink I guess
  3120. # [19:17] * ahal is now known as ahal|lunch
  3121. # [19:18] * nalexander wonders why hg rebase takes 800 megs of ram
  3122. # [19:18] * Joins: tessarakt3 (jens@moz-8C7D6700.dip0.t-ipconnect.de)
  3123. # [19:18] * Joins: erikvold (erikvold@E5182DD9.B04BD6DC.AA745434.IP)
  3124. # [19:18] <RyanVM|sheriffduty> nalexander: qpop, pull, qpush :)
  3125. # [19:19] <RyanVM|sheriffduty> much faster
  3126. # [19:19] <gps> nalexander: facebook is working on amend performance
  3127. # [19:19] <nalexander> RyanVM|sheriffduty: I'm using changeset evolution -- much better, when it works.
  3128. # [19:19] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  3129. # [19:19] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/718017bd6265 - Timothy Nikkel - Bug 908100. Prefer the pointerDownTarget when resetting the active state because that is what we set active state on. r=vingtetun
  3130. # [19:19] <RyanVM|sheriffduty> nalexander: i see
  3131. # [19:19] <tbsaunde> and isn't using 800 megs of ram :p
  3132. # [19:20] <nalexander> gps: my use case is rebasing a dormant feature branch onto mainline; mq does this, but loses lots of context.
  3133. # [19:20] <RyanVM|sheriffduty> gps: should I close the tree until you backout?
  3134. # [19:20] <gps> RyanVM|sheriffduty: i just managed to get qbackout to work
  3135. # [19:20] * Joins: abr (abr@moz-96F986B0.smartcity.com)
  3136. # [19:20] <gps> RyanVM|sheriffduty: the good news is it shouldn't break the tree. but you'll need to clobber inbound
  3137. # [19:21] <RyanVM|sheriffduty> k
  3138. # [19:21] <RyanVM|sheriffduty> gps: clobbered - fire away
  3139. # [19:21] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/32d371a9aa83 - Eitan Isaacson - Bug 937775 - Make AccessFu logging less verbose by default. r=yzen
  3140. # [19:21] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/fcb819355580 - Eitan Isaacson - Bug 937369 - Use moz.build in accessibility/src/jsat. r=davidb
  3141. # [19:21] <Ms2ger> gps, I think gps likes to know about clobbers :)
  3142. # [19:21] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b8053dd037bc - Eitan Isaacson - Bug 937466 - Introduce Constants module. r=yzen
  3143. # [19:22] <RyanVM|sheriffduty> Ms2ger: yeah, he should probably file a bug and CC him
  3144. # [19:22] <RyanVM|sheriffduty> eeejay: with 100% less bustage this tiem? :)
  3145. # [19:22] * hwine|mtg is now known as hwine
  3146. # [19:22] * Quits: musingmario (Mibbit@moz-81F896DC.gamma42.maxonline.com.sg) (Quit: http://www.mibbit.com ajax IRC Client)
  3147. # [19:22] <Ms2ger> RyanVM|sheriffduty, is 50% good too?
  3148. # [19:22] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Quit: Boriss)
  3149. # [19:22] <RyanVM|sheriffduty> Ms2ger: all or nothing
  3150. # [19:23] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  3151. # [19:23] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/644408afbf21 - Gregory Szorc - Backed out 4 changesets (c0e8f2c0465f::608c663f691f) (bug 928195) for landing prematurely
  3152. # [19:24] * Fallen|away is now known as Fallen
  3153. # [19:25] * Joins: ekr (ekr@moz-7B0110AD.mv.mozilla.com)
  3154. # [19:25] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  3155. # [19:25] * Joins: jammink (textual@moz-BBE3ABD.mv.mozilla.com)
  3156. # [19:25] * Joins: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3157. # [19:26] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/5ef1eb4f5d57 - Jan de Mooij - Bug 894881 - Fix JIT fast paths to work with typed array properties. r=bhackett
  3158. # [19:27] * Quits: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net) (Ping timeout)
  3159. # [19:27] * whimboo|afk is now known as whimboo
  3160. # [19:27] * Quits: paolo_ (paolo@5FB45659.87C8F476.84B85C50.IP) (Quit: Konversation terminated!)
  3161. # [19:28] * lightsofapollo is now known as lightsofapollo|coffee
  3162. # [19:28] * Quits: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  3163. # [19:28] * Quits: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  3164. # [19:28] * Quits: mt1 (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  3165. # [19:28] * Joins: mt (Adium@moz-BBE3ABD.mv.mozilla.com)
  3166. # [19:28] * Joins: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com)
  3167. # [19:29] * Joins: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3168. # [19:29] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  3169. # [19:29] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  3170. # [19:29] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Ping timeout)
  3171. # [19:29] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3172. # [19:30] * Joins: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com)
  3173. # [19:30] <firebot> Check-in:
  3174. # [19:30] * Quits: mt (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  3175. # [19:30] * nthomas|away is now known as nthomas
  3176. # [19:30] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/c534f99dacf6 - Landry Breuil - Bug 931354: OpenBSD doesn't provide arc4random_addrandom anymore, fix libevent accordingly by #ifndef'ing out its caller evutil_secure_rng_add_bytes() (which isnt called
  3177. # [19:30] <firebot> anywhere) r=joshaas
  3178. # [19:31] * Joins: cdiehl (cdiehl@moz-653282C6.pool.mediaways.net)
  3179. # [19:31] <RyanVM|sheriffduty> Gijs: fixed-in-inbound - haven't seen that in ages! :P
  3180. # [19:32] * Joins: pcwalton (pcwalton@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3181. # [19:32] * Joins: mt (Adium@moz-7B0110AD.mv.mozilla.com)
  3182. # [19:32] <Gijs> :P
  3183. # [19:32] <Gijs> old habits...
  3184. # [19:32] <Gijs> you're talking to someone who still sort of watches trees when pushing
  3185. # [19:33] <gaston> is it that exceptional ? :)
  3186. # [19:33] <@dolske> Gijs still maintains a hg-to-cvs bridge.
  3187. # [19:33] <edmorley> Gijs: heh :-)
  3188. # [19:33] <Gijs> dolske: ow. That hurt.
  3189. # [19:33] * Quits: ehugg_lime (ehugg_lime@moz-96F986B0.smartcity.com) (Connection reset by peer)
  3190. # [19:33] * Joins: ehugg_lime (ehugg_lime@moz-96F986B0.smartcity.com)
  3191. # [19:34] <@dolske> :D
  3192. # [19:34] * Gijs doesn't think his mac has cvs anymore, and is thankful for that
  3193. # [19:34] * Quits: bent|away (chatzilla@moz-932324BF.hsd1.ca.comcast.net) (Ping timeout)
  3194. # [19:34] * Quits: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  3195. # [19:34] * Joins: bajaj1 (Adium@moz-BBE3ABD.mv.mozilla.com)
  3196. # [19:34] <@dolske> I seem to. D:
  3197. # [19:35] <gaston> hey, i still use cvs daily.
  3198. # [19:35] <Gijs> -bash: cvs: command not found
  3199. # [19:35] <Gijs> \o/
  3200. # [19:35] * Ms2ger hands gaston some chocolate
  3201. # [19:35] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/ea330dbf8163 - Camilo Viecco - Bug 912155 - Adding new interface in nssCertifcateDB for testing. r=bsmith
  3202. # [19:35] <gaston> (i also hate it daily but that's another story)
  3203. # [19:36] * Joins: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net)
  3204. # [19:36] <jhammel> no, its the same story ;)
  3205. # [19:37] * Joins: squib (squib@moz-5175C098.dhcp.mdsn.wi.charter.com)
  3206. # [19:37] * Joins: mmc|laptop (mchew@moz-BBE3ABD.mv.mozilla.com)
  3207. # [19:37] <gaston> you dont change old farts habits like this...
  3208. # [19:37] * Joins: danieru_ (danieru@D4ECB35D.DE1B4A7B.22E1B6C8.IP)
  3209. # [19:38] * Quits: mt (Adium@moz-7B0110AD.mv.mozilla.com) (Quit: Leaving.)
  3210. # [19:38] <tbsaunde> gaston: why don't you just use git-cvs?
  3211. # [19:38] * Quits: lpy (lpy@12172131.F09091A8.1348A864.IP) (Quit: Leaving...)
  3212. # [19:38] * Quits: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP) (Ping timeout)
  3213. # [19:38] <gaston> hmmm too much possibility to shoot yourself in the foot :)
  3214. # [19:39] * Joins: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP)
  3215. # [19:39] * Quits: eduardostalinho (eduardo@E4AA2CA.78662DF2.7DED4104.IP) (Ping timeout)
  3216. # [19:39] <tbsaunde> maybe you shouldn't use cvs either then it could do something wrong you should talk to the cvs server by hand with nc or telent ;)
  3217. # [19:39] * Quits: rmkoesters (Thunderbir@moz-37C52F11.resnet.wisc.edu) (Ping timeout)
  3218. # [19:40] <tbsaunde> *telnet
  3219. # [19:40] <Ms2ger> Why did Fx suddenly jump from 800MB to 1.7GB memory and back.
  3220. # [19:40] <Ms2ger> ?
  3221. # [19:40] * Joins: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3222. # [19:40] <sfink> gps: weird. I just pass it to scmutil.revrange(repo, rev). Maybe that doesn't handle full revsets? Hrm. what does?
  3223. # [19:40] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  3224. # [19:41] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3225. # [19:41] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3226. # [19:41] <gps> sfink: turns out it was my working copy issue. I was not updated to tip when I performed the backout
  3227. # [19:41] <nalexander> gps: does your evolution flow use rebase a lot? I wonder if I'm hitting bad cases with evolve that don't turn up without it. This rebase is taking 10-15 minutes per iteration, meaning I always lose push races :(
  3228. # [19:41] <gps> nalexander: i use rebase and histedit a ton
  3229. # [19:41] * Quits: danieru_ (danieru@D4ECB35D.DE1B4A7B.22E1B6C8.IP) (Ping timeout)
  3230. # [19:41] <gps> nalexander: I also use amend a lot
  3231. # [19:42] * Quits: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au) (Ping timeout)
  3232. # [19:42] <nalexander> gps: yeah, I assumed so -- you kind of have to in order to take advantage of evolution.
  3233. # [19:42] <gps> the perf on a large repo is currently pretty bad. Facebook has been contributing patches to make it faster. a bunch landed in Mercurial over the weekend
  3234. # [19:42] * Joins: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au)
  3235. # [19:42] <nalexander> gps: hmm. Not sure I'm ready to run bleeding edge hg.
  3236. # [19:42] * Quits: bnicholson (bnicholson@moz-46A94A2D.hsd1.ca.comcast.net) (Ping timeout)
  3237. # [19:43] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/6ae587e0c6d0 - Matthew Gregan - Bug 939662 - Remove "using namespace mozilla::dom;" from MediaDecoder.h and fix fallout. r=cpearce
  3238. # [19:43] <nalexander> I wonder if it's 'cuz I have lots of troubled change sets.
  3239. # [19:43] <nalexander> That I haven't bothered to fix yet.
  3240. # [19:43] * Quits: mstange (markus@moz-9F660733.dip0.t-ipconnect.de) (Ping timeout)
  3241. # [19:43] * Quits: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Ping timeout)
  3242. # [19:44] <gps> nalexander: there is a reason changeset evolution isn't enabled out of the box yet :)
  3243. # [19:44] * Joins: lgarner (lgarner@2D337F52.2D31AF7B.5AEB50C4.IP)
  3244. # [19:44] * Joins: mt (Adium@moz-7B0110AD.mv.mozilla.com)
  3245. # [19:44] <nalexander> gps: is perf a known issue? I didn't see any warnings when I was reading.
  3246. # [19:44] * Joins: karl (karl@moz-C433B975.jetstream.xtra.co.nz)
  3247. # [19:44] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/66ab5cb18c25 - Nikhil Marathe - Bug 939909 - Get rid of Optional<> from internal Promise functions. r=bz
  3248. # [19:45] <gps> nalexander: it just hasn't been optimized yet. there were patches landing over the weekend that made amend go from ~9s to 2.5s
  3249. # [19:45] * Joins: mstange (markus@moz-9F660733.dip0.t-ipconnect.de)
  3250. # [19:45] * Quits: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com) (Quit: Instantbird 1.5a1pre -- http://www.instantbird.com)
  3251. # [19:45] * bobowen is now known as bobowen|afk
  3252. # [19:45] <nemo> azakai: say. I was reading a post on HN last week where the person said they did not use asm.js because they needed to grow memory (for a video codec in JS)
  3253. # [19:45] <nemo> azakai: is that really an asm.js limitation?
  3254. # [19:46] <nemo> just wondering 'cause we definitely need that.
  3255. # [19:46] <azakai> nemo: yes, in asm.js the heap size is fixed in order to make it easy to optimize (shouldn't we talk on #emscripten btw ;)
  3256. # [19:46] * Joins: ehugg (ehugg@moz-96F986B0.smartcity.com)
  3257. # [19:47] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a6bb8146e7bc - Nikhil Marathe - Bug 882076 - C++ callbacks to DOM Promises. r=baku,mccr8
  3258. # [19:48] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: )
  3259. # [19:48] * Quits: lmandel (lmandel@13F2CEC5.7672369.D8E68FF6.IP) (Quit: lmandel)
  3260. # [19:48] * Quits: grobinson|laptop (grob_@moz-FF0B8E6D.ipredator.se) (Ping timeout)
  3261. # [19:49] * Quits: davidillsley (chatzilla@moz-3EEF2A06.range109-156.btcentralplus.com) (Client exited)
  3262. # [19:49] * Joins: lmandel (lmandel@13F2CEC5.7672369.D8E68FF6.IP)
  3263. # [19:49] * Joins: davidillsley (chatzilla@moz-3EEF2A06.range109-156.btcentralplus.com)
  3264. # [19:50] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3265. # [19:50] * Quits: ekr (ekr@moz-7B0110AD.mv.mozilla.com) (Quit: ekr)
  3266. # [19:50] <bgrins> nemo azakai that was me who was talking about that btw. And I worked around it by setting TOTAL_MEMORY to a bigger fixed value and disabling memory growth
  3267. # [19:50] * Quits: feltnerm (feltnerm@9AC552E8.C69D9A6B.61C21BB7.IP) (Client exited)
  3268. # [19:50] * Quits: mt (Adium@moz-7B0110AD.mv.mozilla.com) (Quit: Leaving.)
  3269. # [19:50] * Quits: Ms2ger (Ms2ger@92EF86A7.A020F168.187A1082.IP) (Quit: Leaving)
  3270. # [19:51] * Joins: ekr (ekr@moz-7B0110AD.mv.mozilla.com)
  3271. # [19:51] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  3272. # [19:51] * Quits: jwalker (jwalker@moz-76873736.cable.virginm.net) (Ping timeout)
  3273. # [19:51] * Joins: jwalker (jwalker@moz-76873736.cable.virginm.net)
  3274. # [19:52] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  3275. # [19:52] * Quits: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  3276. # [19:53] * Joins: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP)
  3277. # [19:53] * Joins: grobinson|laptop (grob_@moz-D1465452.torservers.net)
  3278. # [19:54] * Quits: naveed (naveed@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  3279. # [19:55] * Quits: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3280. # [19:55] * jimm-lunch is now known as jimm
  3281. # [19:56] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Quit: jib)
  3282. # [19:56] * Joins: naveed (naveed@moz-7B0110AD.mv.mozilla.com)
  3283. # [19:56] <nalexander> gps: where are these patches landing? I see two linked repos, one hosted by Selenic and another at intevation. I see sid0 landing some stuff, but it doesn't look perfy.
  3284. # [19:56] * Joins: mt (Adium@moz-7B0110AD.mv.mozilla.com)
  3285. # [19:57] <gps> nalexander: I pull and run the @ bookmark from http://selenic.com/repo/hg
  3286. # [19:57] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3287. # [19:58] * Quits: bitgeeky (bitgeeky@9B9315E1.A6025CA.1C37C358.IP) (Ping timeout)
  3288. # [19:58] * Joins: bnicholson (bnicholson@moz-BBE3ABD.mv.mozilla.com)
  3289. # [19:58] * Quits: ehugg_lime (ehugg_lime@moz-96F986B0.smartcity.com) (Client exited)
  3290. # [19:59] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  3291. # [20:00] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3292. # [20:01] * Quits: JosiahOne|Away (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  3293. # [20:02] * Joins: ehugg_lime (ehugg_lime@moz-96F986B0.smartcity.com)
  3294. # [20:03] * Joins: bwc (Adium@moz-BBE3ABD.mv.mozilla.com)
  3295. # [20:03] * Joins: JosiahOne|Away (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  3296. # [20:04] * geekboy is now known as geekboy|afk
  3297. # [20:04] * Quits: ctangira (ctangira@moz-CFCC7B62.cisco.com) (Ping timeout)
  3298. # [20:04] * Quits: heftig (heftig@moz-4353C6FC.dip0.t-ipconnect.de) (Ping timeout)
  3299. # [20:04] * Joins: rmkoesters (Thunderbir@moz-B37C2A72.cs.wisc.edu)
  3300. # [20:05] * Quits: lduros (user@moz-418FD747.phlapa.fios.verizon.net) (Quit: ERC Version 5.3 (IRC client for Emacs))
  3301. # [20:05] * Joins: lduros (user@moz-418FD747.phlapa.fios.verizon.net)
  3302. # [20:05] <NeilAway> aargh, can't even run tests remotely because tilt
  3303. # [20:05] * Quits: nicklebedev (nicklebede@moz-29D843ED.net151.n37.ru) (Quit: )
  3304. # [20:05] * Joins: gwagner (gwagner@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3305. # [20:05] * Joins: ctangira (ctangira@moz-4D414606.cisco.com)
  3306. # [20:06] * Joins: bent|away (chatzilla@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3307. # [20:06] * bobowen|afk is now known as bobowen
  3308. # [20:06] * bent|away is now known as bent
  3309. # [20:07] * Quits: pbocan (Thunderbir@moz-56F618DE.eduroam.fit.cvut.cz) (Ping timeout)
  3310. # [20:07] * Joins: heftig (heftig@moz-4994C5AA.dip0.t-ipconnect.de)
  3311. # [20:08] <sid0> evolution is known to be O(length of history) for everything
  3312. # [20:08] * Quits: ehugg_lime (ehugg_lime@moz-96F986B0.smartcity.com) (Client exited)
  3313. # [20:08] * Quits: jammink (textual@moz-BBE3ABD.mv.mozilla.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
  3314. # [20:08] * Joins: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP)
  3315. # [20:09] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/594c44cf5a05 - Gregory Szorc - Bug 939080 - Allow support-files in manifests to exist in parent paths; r=ted
  3316. # [20:09] * Quits: abr (abr@moz-96F986B0.smartcity.com) (Quit: AFK)
  3317. # [20:09] <nalexander> sid0: well, that probably explains it. So, not usable.
  3318. # [20:09] * Joins: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3319. # [20:09] <nalexander> sid0: that's unfortunate. Is FB using evolvution?
  3320. # [20:09] <sid0> no
  3321. # [20:09] <sid0> not yet
  3322. # [20:09] * Joins: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com)
  3323. # [20:10] <froydnj> O(history)? that sounds pretty suboptimal
  3324. # [20:10] <sid0> yes
  3325. # [20:10] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3326. # [20:10] * Joins: danieru_ (danieru@80C199A4.DE1B4A7B.22E1B6C8.IP)
  3327. # [20:10] * Quits: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3328. # [20:10] <sid0> we're going to start optimizing it soon
  3329. # [20:11] <froydnj> is that because you have to rewrite all the revlogs for all the files or something?
  3330. # [20:11] <gps> froydnj: evolution makes revlogs immutable - like they should be
  3331. # [20:11] * Quits: rmkoesters (Thunderbir@moz-B37C2A72.cs.wisc.edu) (Quit: rmkoesters)
  3332. # [20:11] <sid0> no, it's because the current way filtering for obsolescence is implemented is by walking the entire dag
  3333. # [20:11] <sid0> no core hg operations are O(history) right now
  3334. # [20:12] * Joins: briansmith (briansmith@moz-25F87A36.utilitytelephone.net)
  3335. # [20:12] * Quits: danieru_ (danieru@80C199A4.DE1B4A7B.22E1B6C8.IP) (Ping timeout)
  3336. # [20:12] * Joins: jammink (textual@moz-BBE3ABD.mv.mozilla.com)
  3337. # [20:12] * Joins: Boriss (Boriss@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3338. # [20:13] <jaws> bbondy: if you land your changes on mozilla-central, then you shouldn't need to worry about separately landing on holly since m-c will merge over to holly
  3339. # [20:13] <sid0> this isn't fundamental to obsolete markers, we just haven't paid attention to optimizing it
  3340. # [20:13] * Joins: rstrong (rstrong@moz-204A999A.hsd1.ca.comcast.net)
  3341. # [20:13] <bbondy> jaws: but this work in particular has at least one bug that is completely different for both australis and non-australis
  3342. # [20:13] * froydnj is just going to continue using git
  3343. # [20:13] <gps> sid0: I don't have to tell you to optimize manifests on large repos :)
  3344. # [20:14] * Joins: squeakytoy (squeakytoy@moz-79070305.dynamic.se.alltele.net)
  3345. # [20:14] <bbondy> like ui in desktop firefox for switching to metro
  3346. # [20:14] <jaws> bbondy: oh ok, bug #?
  3347. # [20:14] * Quits: ehugg (ehugg@moz-96F986B0.smartcity.com) (Quit: ehugg)
  3348. # [20:14] <jaws> bbondy: oh, so maybe you will need a widget in australis to switch browser modes?
  3349. # [20:15] <bbondy> jaws: we've developed that already
  3350. # [20:15] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f03f1737bb87 - Ehsan Akhgari - Bug 939580 - #include LOCAL_INCLUDES after the source dir and current dir includes; r=gps
  3351. # [20:15] <bbondy> and the non australis one
  3352. # [20:15] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/c27ae275e7e2 - Ehsan Akhgari - Bug 939571 - Build Web Audio in unified mode; r=glandium
  3353. # [20:15] <bbondy> see bug 924914 I just marked it as WFM, it is the non-australis version of the work.
  3354. # [20:15] <bbondy> bug 934032 is the australis version of the work
  3355. # [20:16] <jaws> bbondy: ok, if you land your patches, please separate out the australis specific patch and place [Australis] in the commit message so it will be backed out when merging over to Holly
  3356. # [20:16] * Quits: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com) (Quit: mccr8)
  3357. # [20:16] * Joins: feltnerm (feltnerm@9AC552E8.C69D9A6B.61C21BB7.IP)
  3358. # [20:16] <bbondy> ok thanks
  3359. # [20:17] <gps> is inbound busted? ValueError: Item already in manifest: testing/mochitest/tests/dom/devicestorage/test/devicestorage_common.js
  3360. # [20:17] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  3361. # [20:18] * Joins: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com)
  3362. # [20:18] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  3363. # [20:18] <jmaher> bz: I can help you get talos running locally
  3364. # [20:18] <gps> RyanVM|sheriffduty: I think my patch broke inbound
  3365. # [20:19] <RyanVM|sheriffduty> gps: dunno
  3366. # [20:19] <RyanVM|sheriffduty> want me to close?
  3367. # [20:19] <gps> RyanVM|sheriffduty: I'll just back it out
  3368. # [20:19] <RyanVM|sheriffduty> k
  3369. # [20:19] * Quits: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com) (Quit: mccr8)
  3370. # [20:19] * Joins: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com)
  3371. # [20:20] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a829f4d2584a - Nick Alexander - Bug 934646 - Declare Android resource directories relative to $SRCDIR. r=glandium,gps,mfinkle
  3372. # [20:20] * Quits: harth (harth@moz-A0276582.hsd1.ca.comcast.net) (Input/output error)
  3373. # [20:20] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/5dd946b1f29b - Nick Alexander - Bug 934646 - Delete unused resources. r=mfinkle
  3374. # [20:20] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/4ae3d82562fa - Nick Alexander - Bug 934646 - Replace hard-coded Android resource ID. r=mfinkle
  3375. # [20:20] * lightsofapollo|coffee is now known as lightsofapollo
  3376. # [20:20] * Quits: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com) (Quit: mccr8)
  3377. # [20:20] <nalexander> And... I forgot to touch clobber.
  3378. # [20:20] * Quits: jonasfj (jonasfj@moz-B65AF445.hfc.comcastbusiness.net) (Ping timeout)
  3379. # [20:20] * Joins: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com)
  3380. # [20:21] * Joins: harth (harth@moz-A0276582.hsd1.ca.comcast.net)
  3381. # [20:21] <froydnj> nalexander: checkin-fail
  3382. # [20:21] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/1214806e64b2 - Gregory Szorc - Backed out changeset 594c44cf5a05 (bug 939080) for breaking buildconfig
  3383. # [20:21] * Joins: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP)
  3384. # [20:21] * Quits: pcwalton (pcwalton@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  3385. # [20:21] <nalexander> I know, even after talking about it in #build.
  3386. # [20:21] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  3387. # [20:21] <cpeterson> fyi, the hazards test abbreviation is "SM(Hf)"
  3388. # [20:22] * mattwoodrow|away is now known as mattwoodrow
  3389. # [20:22] <@ehsan> bjacob: https://hg.mozilla.org/integration/mozilla-inbound/rev/bf8e6aa4c831
  3390. # [20:22] * Joins: jonasfj (jonasfj@moz-B65AF445.hfc.comcastbusiness.net)
  3391. # [20:23] * Parts: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com)
  3392. # [20:23] * Quits: sheppy-offline (sheppy@moz-4992DE6D.static.kgpt.tn.charter.com) (Ping timeout)
  3393. # [20:23] * Quits: Optimizer (Optimizer@3F74C040.DDD2B1C2.D2D1FAF0.IP) (Ping timeout)
  3394. # [20:23] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/bf8e6aa4c831 - Ehsan Akhgari - Add some comments about angle-build-unified.patch, no bug
  3395. # [20:23] * Joins: Optimizer (Optimizer@3F74C040.DDD2B1C2.D2D1FAF0.IP)
  3396. # [20:23] * julienw is now known as julienw_afk
  3397. # [20:24] <bjacob> ehsan: r+
  3398. # [20:25] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/6bd8ff07e16f - Nick Alexander - Bug 934646 - Clobber. r=me
  3399. # [20:25] * Quits: gsvelto (gsvelto@moz-D89BCC70.clienti.tiscali.it) (Ping timeout)
  3400. # [20:26] * Quits: mt (Adium@moz-7B0110AD.mv.mozilla.com) (Quit: Leaving.)
  3401. # [20:26] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/8c91fdae3362 - Ehsan Akhgari - Bug 939296 - Build content/html in unified mode; r=jst,bzbarsky
  3402. # [20:26] * ahal|lunch is now known as ahal
  3403. # [20:27] * Quits: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  3404. # [20:27] * whimboo is now known as whimboo|afk
  3405. # [20:27] * Quits: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  3406. # [20:27] * Quits: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  3407. # [20:27] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  3408. # [20:28] * Joins: juanb (jbecerra@moz-ACDE7EEC.mozilla.com)
  3409. # [20:28] <sfoster> can anyone point me at a relatively recent, known-to-build on vs2012 changeset on m-c?
  3410. # [20:28] * Quits: naveed (naveed@moz-7B0110AD.mv.mozilla.com) (Input/output error)
  3411. # [20:28] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3412. # [20:28] * Joins: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com)
  3413. # [20:28] <sfoster> not sure what to roll back to
  3414. # [20:28] * Joins: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net)
  3415. # [20:29] * Quits: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com) (Max SendQ exceeded)
  3416. # [20:29] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/cc9c2520a53e - Steve Workman - Bug 923458 - ProxyAutoConfig::ResolveAddress should make medium priority DNS requests to use negative cache entries r=mcmanus
  3417. # [20:29] * Joins: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com)
  3418. # [20:30] * Quits: smontagu (chatzilla@moz-D0D053E4.red.bezeqint.net) (Ping timeout)
  3419. # [20:30] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  3420. # [20:30] * Quits: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com) (Max SendQ exceeded)
  3421. # [20:30] * Joins: pbocan (Thunderbir@moz-2B4BB411.sin.cvut.cz)
  3422. # [20:30] * Joins: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com)
  3423. # [20:31] * Quits: marco (Thunderbir@moz-200BC415.retail.telecomitalia.it) (Quit: marco)
  3424. # [20:31] * Joins: abr (abr@moz-96F986B0.smartcity.com)
  3425. # [20:32] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/bc13933a8f76 - Terrence Cole - Bug 940558 - Fix an exact rooting hazard false positive in replaceLastProperty; r=sfink
  3426. # [20:32] * Quits: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl) (Quit: Leaving)
  3427. # [20:33] * Joins: ehugg (ehugg@moz-96F986B0.smartcity.com)
  3428. # [20:33] * Quits: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com) (Quit: Leaving.)
  3429. # [20:33] * Joins: bitgeeky (bitgeeky@9B9315E1.A6025CA.1C37C358.IP)
  3430. # [20:34] * Quits: Archaeopteryx (itsme@moz-CE01FBF6.cust.telecolumbus.net) (Quit: Goodbye)
  3431. # [20:34] * Joins: sheppy-offline (sheppy@moz-4992DE6D.static.kgpt.tn.charter.com)
  3432. # [20:35] * Quits: brambles (xymox@moz-969AAE9B.barwen.ch) (Ping timeout)
  3433. # [20:35] * Joins: brambles (xymox@moz-969AAE9B.barwen.ch)
  3434. # [20:35] * Quits: ehugg (ehugg@moz-96F986B0.smartcity.com) (Quit: ehugg)
  3435. # [20:35] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3436. # [20:35] * Quits: till (till@moz-543E5C84.threembb.co.uk) (Client exited)
  3437. # [20:35] * bobowen is now known as bobowen|afk
  3438. # [20:35] * Joins: ehugg_lime (ehugg_lime@moz-A7B125E6.mycingular.net)
  3439. # [20:36] * Quits: bobowen|afk (chatzilla@moz-A944D98D.dynamic.dsl.as9105.com) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0.1/20131112160018])
  3440. # [20:36] <cpeterson> vladan: are you the man to ask about Talos? Are the Windows 5.1, 6.1, and 6.2 tests run on equivalent hardware? ts_paint is bimodal (~800 ms or 20,000 ms) on Windows 6.1 and 6.2, but not 5.1.
  3441. # [20:36] <BenWa> ehsan: try is green, ready to unify cairo after your review: https://bugzilla.mozilla.org/show_bug.cgi?id=940178
  3442. # [20:37] <BenWa> ehsan: same with harfbuzz https://bugzilla.mozilla.org/show_bug.cgi?id=940416
  3443. # [20:37] <vladan> cpeterson: I am not. ping jmaher
  3444. # [20:37] * Joins: mt (Adium@moz-BBE3ABD.mv.mozilla.com)
  3445. # [20:37] <cpeterson> vladan: thanks.
  3446. # [20:37] <vladan> np
  3447. # [20:37] * Joins: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP)
  3448. # [20:38] * Quits: janv (varga@moz-A506EDFE.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  3449. # [20:38] * Joins: Archaeopteryx (itsme@moz-CE01FBF6.cust.telecolumbus.net)
  3450. # [20:38] * Joins: danieru_ (danieru@492EC478.DE1B4A7B.22E1B6C8.IP)
  3451. # [20:39] * Joins: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP)
  3452. # [20:39] * juanb is now known as juanb|afk
  3453. # [20:40] * Joins: naveed (naveed@moz-BBE3ABD.mv.mozilla.com)
  3454. # [20:41] * Quits: ehugg_lime (ehugg_lime@moz-A7B125E6.mycingular.net) (Ping timeout)
  3455. # [20:42] * Joins: Benvie_ (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3456. # [20:42] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  3457. # [20:43] * Quits: Benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  3458. # [20:43] * gaye is now known as gaye|brb
  3459. # [20:43] <TimAbraldes> is there a canonical IRC logger for Mozilla IRC channels?
  3460. # [20:43] * Quits: jimb (user@125EF623.B2666F0E.66399531.IP) (Ping timeout)
  3461. # [20:44] * Quits: Benvie_ (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: )
  3462. # [20:44] * Quits: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  3463. # [20:44] <@gavin> I think logbot is the most common now
  3464. # [20:44] <tbsaunde> TimAbraldes: see the topic?
  3465. # [20:44] * Quits: abr (abr@moz-96F986B0.smartcity.com) (Quit: AFK)
  3466. # [20:44] <@gavin> run by... glob
  3467. # [20:44] * Quits: Archaeopteryx (itsme@moz-CE01FBF6.cust.telecolumbus.net) (Quit: Goodbye)
  3468. # [20:44] * Quits: jedp (jedp@moz-89599B04.dsl.dynamic.sonic.net) (Quit: Computer has gone to sleep.)
  3469. # [20:45] * Joins: jimb (user@125EF623.B2666F0E.66399531.IP)
  3470. # [20:45] * Joins: abr (abr@moz-96F986B0.smartcity.com)
  3471. # [20:45] <TimAbraldes> I'm aware of logbot and ircloggr. I guess those seem like the most commonly used ones. I'm just trying to get IRC logging for #windev in a place that people will know/think to look
  3472. # [20:47] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  3473. # [20:47] * Joins: jhford__ (uid15926@moz-A42E5B7B.irccloud.com)
  3474. # [20:47] * Quits: jdm (jdm@moz-ED0C7AC7.hinet-ip.hinet.net) (Ping timeout)
  3475. # [20:48] * Quits: bajaj1 (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  3476. # [20:48] * Quits: abr (abr@moz-96F986B0.smartcity.com) (Quit: AFK)
  3477. # [20:48] * Quits: jhford (jhford@83BD095B.5DDAAF8.20F09BA6.IP) (Quit: ZNC - http://znc.in)
  3478. # [20:48] * jhford_ is now known as jhford
  3479. # [20:48] * jhford__ is now known as jhford_
  3480. # [20:49] <TimAbraldes> glob|away: ping RE adding logbot to #windev :)
  3481. # [20:49] * jhford is now known as jhford__
  3482. # [20:49] * jhford_ is now known as jhford
  3483. # [20:49] * Quits: rvitillo (vitillo@88F51059.F3BBB17D.144F44FA.IP) (Quit: rvitillo)
  3484. # [20:50] * mdas is now known as mdas|afk
  3485. # [20:50] <@ehsan> BenWa: how did you get harfbuzz to build? o_O
  3486. # [20:50] <@ehsan> I tried that the other day
  3487. # [20:50] * Quits: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  3488. # [20:50] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  3489. # [20:50] * Joins: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP)
  3490. # [20:50] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Quit: Gone to save the world!)
  3491. # [20:51] * Joins: ehugg_lime (ehugg_lime@moz-A7B125E6.mycingular.net)
  3492. # [20:51] <jhford> BenWa:
  3493. # [20:51] <jhford> oops
  3494. # [20:51] <jhford> sorry
  3495. # [20:51] <jhford> (trying new irc client)
  3496. # [20:51] * Quits: paul (paul@moz-6078D3C7.norad.org) (Ping timeout)
  3497. # [20:51] <@ehsan> jhford:
  3498. # [20:51] <@ehsan> :P
  3499. # [20:52] <@ehsan> BenWa: r=me
  3500. # [20:52] <froydnj> jhford has nothing to say to you
  3501. # [20:52] <jhford> actually, i might
  3502. # [20:52] <@ehsan> :P
  3503. # [20:52] <@ehsan> :D
  3504. # [20:52] <jhford> depending on which benoit :)
  3505. # [20:52] <@ehsan> oh
  3506. # [20:52] * Quits: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3507. # [20:52] <@ehsan> I'm no Benoit myself
  3508. # [20:52] * Joins: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP)
  3509. # [20:52] <froydnj> maybe you could be an honorary benoit
  3510. # [20:53] <RyanVM|sheriffduty> ehsan: we can all only hope to be some day
  3511. # [20:53] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  3512. # [20:53] <@ehsan> I know!
  3513. # [20:53] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2304a0293543 - Dan Minor - Bug 939262 - Add new jit-test dependencies to test package; r=ted
  3514. # [20:54] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  3515. # [20:54] <@ehsan> stop mid-airing me people!
  3516. # [20:54] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  3517. # [20:54] * froydnj looks for something to push
  3518. # [20:54] <BenWa> ehsan: It just worked for me once I removed a few sources
  3519. # [20:54] * Joins: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl)
  3520. # [20:54] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/1d1aa6ddabad - Ehsan Akhgari - Bug 939303 - Build content/base in unified mode; r=jst,bzbarsky
  3521. # [20:54] <BenWa> jhford: depends which benoit you need
  3522. # [20:54] <@ehsan> BenWa: interesting... I admit I didn't spend too much time on it
  3523. # [20:55] <BenWa> ehsan: *double checks my try results*
  3524. # [20:55] <RyanVM|sheriffduty> froydnj: how about bug 936987?
  3525. # [20:55] <RyanVM|sheriffduty> you even gave it the r+
  3526. # [20:55] <RyanVM|sheriffduty> otherwise I will
  3527. # [20:57] * Quits: Optimizer (Optimizer@3F74C040.DDD2B1C2.D2D1FAF0.IP) (Ping timeout)
  3528. # [20:57] * Joins: paul (paul@moz-6078D3C7.norad.org)
  3529. # [20:57] * Joins: Optimizer (Optimizer@3F74C040.DDD2B1C2.D2D1FAF0.IP)
  3530. # [20:57] * Quits: Boriss (Boriss@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Client exited)
  3531. # [20:57] * Joins: Boriss (Boriss@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3532. # [20:58] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  3533. # [20:58] <sfink> RyanVM|sheriffduty: do you happen to know why checkouts fail so often? I don't understand why "No such file or directory" is even possible.
  3534. # [20:59] <RyanVM|sheriffduty> better asked in #releng
  3535. # [21:00] <philor> wow, Oak doesn't win the Cheap Twig award today, more pending and more running than Try
  3536. # [21:00] * Joins: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com)
  3537. # [21:00] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/64f36ac2784c - Simone Carletti - Bug 940478 - Remove nt.gov.au from PSL. r=gerv
  3538. # [21:00] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/59994113d911 - Ben Kelly - Bug 940488 - Initalize RotatedBuffer::mDidSelfCopy. r=BenWa
  3539. # [21:00] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a2af190cd480 - ISHIKAWA, Chiaki - Bug 936987 - Propagate the error code of PR_Close() against a file under CIFS-share under Linux. r=froydnj
  3540. # [21:00] <@ehsan> cpeterson: thanks a lot for helping out with the unified builds stuff
  3541. # [21:01] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ae449ab94606 - Simone Carletti - Bug 940478 - Format comment for Bug 547985 according to the conventions adopted by the recent similar patches. r=gerv
  3542. # [21:01] <cpeterson> ehsan: np :)
  3543. # [21:01] * Quits: drno (drno@moz-8C24FDC2.hsd1.ca.comcast.net) (Quit: drno)
  3544. # [21:01] * Joins: abr (abr@moz-96F986B0.smartcity.com)
  3545. # [21:01] <cpeterson> Does anyone know why Talos ts_paint times are flat on Windows XP (~600 ms) but bimodal and Windows 6.x (~900 ms and 20+ *seconds*)?
  3546. # [21:01] * Quits: ehugg_lime (ehugg_lime@moz-A7B125E6.mycingular.net) (Ping timeout)
  3547. # [21:01] * geekboy|afk is now known as geekboy
  3548. # [21:02] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/bbf4e009ba00 - Jim Blandy - Bug 896100: Convert all uses of OldMove and MoveRef to true rvalue references and the modern Move and Forward. r=luke, r=waldo
  3549. # [21:02] * kats is now known as kats-interview
  3550. # [21:03] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  3551. # [21:03] * Quits: Mossop (dtownsend@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: This computer has gone to sleep)
  3552. # [21:03] <jmaher> cpeterson: i remember looking into this a while ago on win8 and it seems that there is a magical 20 second hang sometimes- this is not a machine specific issue, nor a build issue
  3553. # [21:03] <mstange> cpeterson: bug 859571? Though comment 49 says it has stopped.
  3554. # [21:03] * Quits: jhammel (jhammel@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: foodz)
  3555. # [21:03] * Quits: naveed (naveed@moz-BBE3ABD.mv.mozilla.com) (Input/output error)
  3556. # [21:03] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a18969434210 - Ehsan Akhgari - Bug 939609 - Build content/xslt in unified mode; r=jst
  3557. # [21:04] * ferjm is now known as ferjm|afk
  3558. # [21:04] <cpeterson> mstange: thanks, I think you are correct. 859571 looks like the issue.
  3559. # [21:04] * Quits: liuche (liuche@moz-DB4A9C19.scl3.mozilla.com) (Quit: leaving)
  3560. # [21:05] * Joins: ehugg_lime (ehugg_lime@moz-A7B125E6.mycingular.net)
  3561. # [21:05] * Joins: liuche (liuche@moz-DB4A9C19.scl3.mozilla.com)
  3562. # [21:05] * Quits: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au) (Ping timeout)
  3563. # [21:05] * Joins: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au)
  3564. # [21:05] <BenWa> RyanVM|sheriffduty: You beat me to landing 940488 for bkelly :)
  3565. # [21:05] * jcranmer is now known as jcranmer|away
  3566. # [21:06] * Quits: harth (harth@moz-A0276582.hsd1.ca.comcast.net) (Input/output error)
  3567. # [21:07] * Quits: dmarcos_ (dmarcos@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving...)
  3568. # [21:07] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f7b74d242905 - Gian-Carlo Pascutto - Bug 937119 - Increase default Android audio buffers to 40ms. r=jesup
  3569. # [21:07] * RyanVM|sheriffduty fastest draw in the west
  3570. # [21:07] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/0434656a5176 - Gian-Carlo Pascutto - Bug 937119 - Fix stereo setting errors on Android/OpenSLES. r=jesup
  3571. # [21:07] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/970ef8123dc3 - Benoit Girard - Bug 940178 - Build cairo in unified mode. r=ehsan
  3572. # [21:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/894551227ac5 - Benoit Girard - Bug 940416 - Build gfx/harfbuzz in unified mode. r=ehsan
  3573. # [21:08] <bkelly> RyanVM|sheriffduty, thanks!
  3574. # [21:08] * Quits: ehugg_lime (ehugg_lime@moz-A7B125E6.mycingular.net) (Client exited)
  3575. # [21:08] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/6be9a40c54b6 - Ehsan Akhgari - Bug 939608 - Part 1: Code changes required to build xpconnect in unified mode; r=bholley
  3576. # [21:08] <RyanVM|sheriffduty> 8)
  3577. # [21:09] <@ehsan> RyanVM|sheriffduty: hmm, we're not getting too many builds on inbound. normal?
  3578. # [21:09] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Input/output error)
  3579. # [21:09] <RyanVM|sheriffduty> we've been behind all day
  3580. # [21:09] <jesup> people keep insisting on checking stuff in. Silly
  3581. # [21:10] <@ehsan> stupid people like me!
  3582. # [21:10] * @ehsan will stop now
  3583. # [21:10] <RyanVM|sheriffduty> "Merge with caution!"
  3584. # [21:10] <RyanVM|sheriffduty> thank you Travis
  3585. # [21:10] * Quits: jimb (user@125EF623.B2666F0E.66399531.IP) (Ping timeout)
  3586. # [21:11] * Quits: jonasfj (jonasfj@moz-B65AF445.hfc.comcastbusiness.net) (Ping timeout)
  3587. # [21:11] * Quits: ctangira (ctangira@moz-4D414606.cisco.com) (Ping timeout)
  3588. # [21:12] * Quits: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
  3589. # [21:13] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  3590. # [21:14] * Joins: ctangira (ctangira@moz-CFCC7B62.cisco.com)
  3591. # [21:14] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Input/output error)
  3592. # [21:15] <nemo> hm. the australis "help" menu somehow looks like a visual error
  3593. # [21:15] <nemo> dunno why
  3594. # [21:15] <nemo> like. the bit indicating menu below it somehow looks like part of the window didn't paint or something
  3595. # [21:15] * Quits: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com) (Quit: Leaving.)
  3596. # [21:16] * Joins: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP)
  3597. # [21:16] * Joins: Mossop (dtownsend@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3598. # [21:16] * Joins: Snuffleupagus (chatzilla@moz-7411B7A4.bredband.comhem.se)
  3599. # [21:17] * Joins: kentuckyfriedtakahe (ajones@538BABFE.A073F3E.97BBD552.IP)
  3600. # [21:17] <sheppy> Hey all, I'm having an odd problem when using display:table-cell. This page https://developer.mozilla.org/en-US/docs/Web/Guide/HTML works right in Safari, but in Nightly, the only link on the page that works is the heading in the right-hand box: "Using HTML5 audio and video".
  3601. # [21:17] <sheppy> Any ideas?
  3602. # [21:17] * Quits: abr (abr@moz-96F986B0.smartcity.com) (Quit: AFK)
  3603. # [21:18] * Quits: brambles (xymox@moz-969AAE9B.barwen.ch) (Ping timeout)
  3604. # [21:18] * Quits: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3605. # [21:18] * geekboy is now known as geekboy|afk
  3606. # [21:20] * Joins: brambles (xymox@moz-969AAE9B.barwen.ch)
  3607. # [21:20] * Joins: naveed (naveed@moz-BBE3ABD.mv.mozilla.com)
  3608. # [21:21] <sheppy> If I inspect any of my other content, the inspector tells me I'm looking at the <li> that makes up that box. It's odd.
  3609. # [21:21] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  3610. # [21:22] * davidb is now known as davidb|w3c
  3611. # [21:25] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  3612. # [21:25] * Joins: smontagu (chatzilla@moz-D0D053E4.red.bezeqint.net)
  3613. # [21:25] * bbondy_ is now known as bbondy
  3614. # [21:25] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  3615. # [21:25] * Quits: gabor (gabor@moz-A74A9206.dip0.t-ipconnect.de) (Ping timeout)
  3616. # [21:26] * Joins: shorlander (shorlander@13F2CEC5.7672369.D8E68FF6.IP)
  3617. # [21:27] * Joins: ehugg_lime (ehugg_lime@moz-96F986B0.smartcity.com)
  3618. # [21:27] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  3619. # [21:27] * Quits: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net) (Quit: damons)
  3620. # [21:29] * Joins: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3621. # [21:29] * Joins: gsvelto (gsvelto@moz-D89BCC70.clienti.tiscali.it)
  3622. # [21:29] * Joins: abr (abr@moz-96F986B0.smartcity.com)
  3623. # [21:29] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3624. # [21:29] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3625. # [21:30] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  3626. # [21:30] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  3627. # [21:30] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3628. # [21:31] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  3629. # [21:31] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  3630. # [21:31] * AutomatedTester|away is now known as AutomatedTester
  3631. # [21:32] * Quits: brambles (xymox@moz-969AAE9B.barwen.ch) (Ping timeout)
  3632. # [21:32] * Quits: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  3633. # [21:32] * Joins: brambles (xymox@moz-969AAE9B.barwen.ch)
  3634. # [21:32] <philor> nalexander: does Elm really need those pending tests on the nightly on tegras?
  3635. # [21:32] * Joins: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP)
  3636. # [21:33] <nalexander> philor: right now? Certainly not, kill away.
  3637. # [21:33] <philor> thx!
  3638. # [21:33] * Quits: abr (abr@moz-96F986B0.smartcity.com) (Quit: AFK)
  3639. # [21:33] <philor> 38 down, 899 to go
  3640. # [21:34] * ctalbert is now known as ctalbert|lunch
  3641. # [21:34] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3642. # [21:34] <philor> Holly? I'm not even going to ask
  3643. # [21:34] * Joins: jet (jet@538BABFE.A073F3E.97BBD552.IP)
  3644. # [21:35] * Quits: wolfiR (wolfiR@moz-42609ABC.dip0.t-ipconnect.de) (Quit: Leaving)
  3645. # [21:36] * Joins: drno (drno@moz-5B507345.static.sonic.net)
  3646. # [21:36] * Joins: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com)
  3647. # [21:36] * Joins: WeirdAl (chatzilla@moz-D461843.ask.info)
  3648. # [21:36] * Quits: davidb|w3c (davidb@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3649. # [21:36] * Quits: ekr (ekr@moz-7B0110AD.mv.mozilla.com) (Quit: ekr)
  3650. # [21:37] <philor> bbondy: so, those pending Android Tegra tests on Oak, you don't have the slightest need for them, do you?
  3651. # [21:37] <WeirdAl> nsm: ping
  3652. # [21:37] * Joins: ekr (ekr@moz-7B0110AD.mv.mozilla.com)
  3653. # [21:37] <jimm> did we get rid of drop down buttons on Windows?
  3654. # [21:38] * Joins: davidb (davidb@13F2CEC5.7672369.D8E68FF6.IP)
  3655. # [21:38] <WeirdAl> Unfocused: you too :) https://pastebin.mozilla.org/3637147
  3656. # [21:38] * simone is now known as simone|away
  3657. # [21:38] * Joins: cpearce_laptop (chatzilla@538BABFE.A073F3E.97BBD552.IP)
  3658. # [21:38] <WeirdAl> just trying to get an idea whether I'm using OS.File correctly
  3659. # [21:39] <nmatsakis> bholley: ping
  3660. # [21:40] <bholley> nmatsakis: hi
  3661. # [21:40] <nmatsakis> bholley: re: bug 936232 / APPLICATION_SLOTS,
  3662. # [21:40] <@bsmedberg> ted: any thoughts on what's going on with bug 940535?
  3663. # [21:40] <nmatsakis> bholley: I have a problem that seems mildly related and I wanted to describe the error i'm seeing to you on the off chance you can help me diagnose :)
  3664. # [21:41] * Quits: simo (simo@2D14DFF6.8EB87DB5.8A1F9AD.IP) (Ping timeout)
  3665. # [21:41] <bholley> nmatsakis: ok. I can't promise you that many cycles though
  3666. # [21:41] <nmatsakis> bholley: ok I'll keep it real brief:
  3667. # [21:41] <nmatsakis> bholley: I changed typedobject init and now I'm seeing crashes in xpc::Scriptability::Scriptability with a NULL principal
  3668. # [21:42] <@ted> bsmedberg: i would ask gps
  3669. # [21:42] <@ted> he knows more about psutil
  3670. # [21:42] <nmatsakis> bholley: and I have no idea what that code is, how it's running, or how I might have affected it, but I was hoping that might ring a bell for you :)
  3671. # [21:42] * jesup sees Australis....
  3672. # [21:42] <nmatsakis> bholley: if not, no worries, I'll keep digging :)
  3673. # [21:42] * Quits: ehugg_lime (ehugg_lime@moz-96F986B0.smartcity.com) (Input/output error)
  3674. # [21:43] * jesup wonders where Chatzilla/Mass Password Reset/SessionManager/etc from Tools will go...
  3675. # [21:44] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3676. # [21:44] <bholley> nmatsakis: well, I added that code recently
  3677. # [21:44] <@smaug> jesup: in the Customize
  3678. # [21:44] <bholley> nmatsakis: so I'm certainly the guy to ask
  3679. # [21:44] <bholley> ;-)
  3680. # [21:44] * jesup No way to add back "Email link" it seems either
  3681. # [21:44] <bholley> nmatsakis: can you give me a stack trace?
  3682. # [21:44] <@smaug> jesup: you can move cz button from there to some sane place
  3683. # [21:44] <@smaug> jesup: also, alt button seems to activate the old menu bar
  3684. # [21:44] <jesup> smaug: like a menu? ;-)\
  3685. # [21:45] * Quits: naveed (naveed@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  3686. # [21:45] * Quits: mreavy (chatzilla@moz-B6D1658D.phlapa.fios.verizon.net) (Ping timeout)
  3687. # [21:45] <jesup> smaug: Alt.... that's weird (for me)
  3688. # [21:45] <@smaug> jesup: well, apparently you can make menubar to be visible always
  3689. # [21:46] <luke> smaug, jesup: you can also turn it on permanently by right clicking in the "empty tab-strip space" and clicking 'menu'
  3690. # [21:46] <@smaug> jesup: isn't alt coming from Windows
  3691. # [21:46] * simone|away is now known as simone
  3692. # [21:46] * Joins: mreavy (chatzilla@moz-B6D1658D.phlapa.fios.verizon.net)
  3693. # [21:46] <@smaug> jesup: but Australis is very good at hiding useful things
  3694. # [21:47] <@smaug> and not telling where they are in the new world
  3695. # [21:47] <nmatsakis> bholley: https://pastebin.mozilla.org/3637184
  3696. # [21:47] <tbsaunde> so is the point of australis to teach people to play with stuff until they make it work or something?
  3697. # [21:47] <jesup> Oh, that's WEIRD: holding down alt does nothing, *releasing* alt pops the menu and pops it open
  3698. # [21:47] <jesup> (linux)
  3699. # [21:47] * Quits: ss1905 (ss1905@5D1E8B58.574C31B9.3FDAF6BC.IP) (Quit: )
  3700. # [21:47] * kats-interview is now known as kats
  3701. # [21:48] <luke> nmatsakis: any chance that your object is coming from the self-hosted or atoms compartment (which i'm guessing might have nul principals)?
  3702. # [21:48] <jesup> Never expected a modifier key to have a keyup action and no keydown
  3703. # [21:48] <bholley> nmatsakis: so, this global that's being created
  3704. # [21:48] <nmatsakis> luke: ...maybe? I'm not sure which objecct "my object" is
  3705. # [21:48] <bholley> nmatsakis: is this a global that XPConnect should be aware of? Or is it some funny off-main-thread thing?
  3706. # [21:48] * Quits: danieru_ (danieru@492EC478.DE1B4A7B.22E1B6C8.IP) (Ping timeout)
  3707. # [21:49] * Joins: naveed (naveed@moz-7B0110AD.mv.mozilla.com)
  3708. # [21:49] <luke> nmatsakis: you can try obj->dump() on it to see what it is
  3709. # [21:49] <bholley> workerGlobalClass
  3710. # [21:49] <bholley> luke, nmatsakis: so yeah
  3711. # [21:49] * Joins: annevk (annevk@8CEE44C9.4F390C2A.420B7681.IP)
  3712. # [21:49] <bholley> it's a funny thing
  3713. # [21:49] <dholbert> jesup, oh yeah... I think that's a bug. My expectation is that holding alt should at least show you the menu bar, so you know what your next keypress (e.g. Alt+V for View menu) is going to do
  3714. # [21:49] <bholley> which means
  3715. # [21:49] * Quits: mt (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  3716. # [21:49] <bholley> you're not allowed to tell XPConnect about it
  3717. # [21:49] <nmatsakis> bholley: luke: ah, hmm, I think I made a change that made typed objects get initialized for globals more readily, so they could be used by self-hosted code,
  3718. # [21:49] * juanb|afk is now known as juanb
  3719. # [21:49] <nmatsakis> bholley: luke: maybe this is the change that's triggering the problem... let me experiment.
  3720. # [21:50] <dholbert> jesup, (in contrast to "Alt [release] v", which opens file menu and then does print-preView)
  3721. # [21:50] <bholley> nmatsakis: no
  3722. # [21:50] <bholley> nmatsakis: I think your change is a red herring
  3723. # [21:50] <dholbert> jesup, are you filing, or should I? :)
  3724. # [21:50] <jesup> dholbert: Phew. I was wondering... Much better that it's a bug
  3725. # [21:50] <bholley> nmatsakis, luke: can we move to jsapi?
  3726. # [21:50] <nmatsakis> bholley: yeah, and I see I was wrong, reviewing the diff
  3727. # [21:50] <jesup> dholbert: can you? I'm deep in something and just got weirded out
  3728. # [21:50] <nmatsakis> yes, moving there
  3729. # [21:51] <dholbert> jesup, ok
  3730. # [21:51] <jesup> thx
  3731. # [21:51] * Joins: tomer (tomer@moz-F45DAEFD.static.012.net.il)
  3732. # [21:51] <gwagner> gw280: ping
  3733. # [21:51] * Joins: bobowen (chatzilla@moz-A944D98D.dynamic.dsl.as9105.com)
  3734. # [21:52] * Joins: Waldo (waldo@moz-BBE3ABD.mv.mozilla.com)
  3735. # [21:52] <gw280> gwagner: pong
  3736. # [21:52] <gw280> gwagner: I'm pretty bogged down with some other work right now
  3737. # [21:52] * Quits: sankha93 (Instantbir@7061CD01.D6BD0D91.22D41759.IP) (Quit: Gone to save the world!)
  3738. # [21:53] * mdas|afk is now known as mdas
  3739. # [21:53] <WeirdAl> Anyone else familiar with OS.File who can look over my pastebin and tell me if I'm doing it right? https://pastebin.mozilla.org/3637147
  3740. # [21:53] * Joins: mt (Adium@moz-BBE3ABD.mv.mozilla.com)
  3741. # [21:53] <gwagner> gw280: when do you think you could get to it?
  3742. # [21:53] * Joins: abwillis (abwillis@CBAC43F2.9DD4DBBF.6A7A197.IP)
  3743. # [21:54] <gw280> gwagner: I don't know :/
  3744. # [21:55] * Quits: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au) (Ping timeout)
  3745. # [21:55] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/65a409f10de6 - Kyle Machulis - Bug 937496 - Check if libudev already loaded before trying to load symbols from it; r=ted
  3746. # [21:55] * Quits: karl (karl@moz-C433B975.jetstream.xtra.co.nz) (Ping timeout)
  3747. # [21:55] * Joins: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au)
  3748. # [21:55] <bwc> gps and bz: Ping about some webidl stuff I'm about to land. In particular, it adds a field to the same webidl dictionary that I burned the tree with last time. Should I try without CLOBBER, or is there a chance that the stuff that landed in bug 928195 might help?
  3749. # [21:56] * Joins: Benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3750. # [21:56] <gwagner> gw280: you mentioned someone else that could help out. who was this again?
  3751. # [21:56] * Joins: simo (simo@7C76FE49.12B8EBBF.B1865714.IP)
  3752. # [21:56] * Joins: samcho (samcho@moz-6A95B86A.usc.edu)
  3753. # [21:56] <gw280> gwagner: snorp
  3754. # [21:56] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  3755. # [21:56] <gwagner> snorp: hey :)
  3756. # [21:56] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  3757. # [21:57] <snorp> gwagner: hey
  3758. # [21:57] * Joins: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz)
  3759. # [21:58] <gwagner> snorp: we need someone that can help us figuring out what is going on with bug 935672. especially the test failure in comment 26: https://bugzilla.mozilla.org/show_bug.cgi?id=935672#c26
  3760. # [21:58] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/597712fa283f - Jan de Mooij - Bug 927516 - Bump Ion script size limit for DOM workers. r=bhackett
  3761. # [21:58] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  3762. # [21:58] * Quits: gsvelto (gsvelto@moz-D89BCC70.clienti.tiscali.it) (Ping timeout)
  3763. # [21:58] * philor is now known as philor|away
  3764. # [21:58] * Quits: Benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: )
  3765. # [21:58] <gw280> snorp: seems to be related to Demote()
  3766. # [21:58] <snorp> hmm
  3767. # [21:58] * Quits: briansmith (briansmith@moz-25F87A36.utilitytelephone.net) (Ping timeout)
  3768. # [21:59] <dholbert> jesup, I compared to windows behavior and refined my expectations slightly. Filed bug https://bugzilla.mozilla.org/show_bug.cgi?id=940643
  3769. # [21:59] * Joins: ehugg_lime (ehugg_lime@moz-A7B125E6.mycingular.net)
  3770. # [21:59] * Joins: Benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3771. # [21:59] * KaiRo is now known as KaiRo_away
  3772. # [22:00] * Quits: AaronMT (uid14380@moz-31ABA2C0.irccloud.com) (Quit: )
  3773. # [22:00] * bobowen is now known as bobowen|afk
  3774. # [22:00] * Joins: AaronMT (AaronMT@moz-5DF3A271.cpe.net.cable.rogers.com)
  3775. # [22:00] <snorp> gwagner: wait so is all the demote() discussion still relevant?
  3776. # [22:01] * Joins: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3777. # [22:01] * Joins: jhammel (jhammel@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3778. # [22:01] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  3779. # [22:01] <gwagner> snorp: I don't know the gfx parts here at all.
  3780. # [22:01] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  3781. # [22:01] * Joins: briansmith (briansmith@6DC3CF92.AD33EEFF.ED2E1100.IP)
  3782. # [22:02] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3783. # [22:02] <gwagner> snorp: maybe its easier to do the real fix? 914584
  3784. # [22:02] <gwagner> oh not this one
  3785. # [22:02] <gwagner> bug 938978
  3786. # [22:03] * Joins: ehugg (ehugg@moz-96F986B0.smartcity.com)
  3787. # [22:03] <tbsaunde> froydnj: have you found a nice solution to the problem of a function you want to be constexpr but wants to assert something about its argument?
  3788. # [22:03] * Quits: ehugg_lime (ehugg_lime@moz-A7B125E6.mycingular.net) (Client exited)
  3789. # [22:03] * Joins: gabor (gabor@moz-A74A9206.dip0.t-ipconnect.de)
  3790. # [22:04] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4973ab787729 - Terrence Cole - Bug 940505 - Handlify GetXrayWaiver; r=bholley
  3791. # [22:04] * Joins: ericjung_ (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  3792. # [22:05] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f1a2ef61a6c5 - Alexander Surkov - Bug 935698 - isolate nsIAccessibleValue implementation into separate class, r=tbsaunde
  3793. # [22:05] <gwagner> snorp how bad is it if we disable this test on b2g-desktop?
  3794. # [22:05] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  3795. # [22:05] <snorp> gwagner: not a big deal
  3796. # [22:05] <gwagner> lets do that.
  3797. # [22:05] <snorp> gwagner: is it just the one that fails?
  3798. # [22:05] <gwagner> yeah
  3799. # [22:06] <snorp> weird
  3800. # [22:06] <gwagner> seems like
  3801. # [22:06] <snorp> if demotion is really that hosed as mattwoodrow says
  3802. # [22:06] <snorp> I would expect mass chaos
  3803. # [22:06] <gwagner> I will try to disable this specific test and land again
  3804. # [22:06] <snorp> ok
  3805. # [22:07] * Quits: bobowen|afk (chatzilla@moz-A944D98D.dynamic.dsl.as9105.com) (Quit: ChatZilla 0.9.90.1 [Iceweasel 17.0.8/20130807011417])
  3806. # [22:07] * RyanVM|sheriffduty files yet another webgl orange
  3807. # [22:07] <RyanVM|sheriffduty> *this* will be the one that gets fixed
  3808. # [22:07] <RyanVM|sheriffduty> oh boy, a GC crash
  3809. # [22:08] <RyanVM|sheriffduty> that betters the odds
  3810. # [22:08] <RyanVM|sheriffduty> on Android no less
  3811. # [22:08] * RyanVM|sheriffduty pushes away the anxious line of devs
  3812. # [22:09] * Joins: rvitillo (vitillo@2D19BBF3.D1BEC4BB.30311652.IP)
  3813. # [22:09] * Quits: briansmith (briansmith@6DC3CF92.AD33EEFF.ED2E1100.IP) (Ping timeout)
  3814. # [22:12] * RyanVM|sheriffduty is now known as RyanVM
  3815. # [22:12] * Quits: Orva (iaikas@6CD3992B.4A308814.EE6E63A5.IP) (Ping timeout)
  3816. # [22:12] * Joins: Orva (iaikas@6CD3992B.4A308814.EE6E63A5.IP)
  3817. # [22:13] * Joins: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3818. # [22:13] * Joins: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net)
  3819. # [22:15] * Joins: billm (billm@moz-BBE3ABD.mv.mozilla.com)
  3820. # [22:15] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/fbadb971da83 - Geoff Brown - Bug 928111 - Update mochitest README.txt; r=ted
  3821. # [22:15] * Quits: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net) (Ping timeout)
  3822. # [22:15] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/54dab4a01a81 - Geoff Brown - Bug 940441 - Disable Bug914137.js on Android; r=nmatsakis
  3823. # [22:15] * Quits: vicamo (vicamo@moz-99690620.hinet-ip.hinet.net) (Quit: Konversation terminated!)
  3824. # [22:15] * Quits: Orva (iaikas@6CD3992B.4A308814.EE6E63A5.IP) (Ping timeout)
  3825. # [22:16] * Quits: bwc (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  3826. # [22:16] * Joins: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP)
  3827. # [22:17] * Joins: Orva (iaikas@6CD3992B.4A308814.EE6E63A5.IP)
  3828. # [22:18] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  3829. # [22:18] * simone is now known as simone|away
  3830. # [22:19] * Joins: karl (karl@538BABFE.A073F3E.97BBD552.IP)
  3831. # [22:19] <terrence> RyanVM: :-D
  3832. # [22:19] * Joins: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com)
  3833. # [22:20] <RyanVM> terrence: you don't have anything else going on this week, do you? :D
  3834. # [22:20] * geekboy|afk is now known as geekboy
  3835. # [22:20] <terrence> RyanVM: a bit busy ;-) cc me?
  3836. # [22:20] <RyanVM> terrence: GGC? pfft, who needs it?
  3837. # [22:21] <RyanVM> terrence: but I'm a man of the people, so a CC you shall get!
  3838. # [22:23] * jmaher is now known as jmaher|afk
  3839. # [22:24] * Joins: abr (abr@moz-96F986B0.smartcity.com)
  3840. # [22:24] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  3841. # [22:25] * geekboy is now known as geekboy|afk
  3842. # [22:25] * Joins: josh (josh@DC98BC6D.96CB7DCC.284344F5.IP)
  3843. # [22:25] * gaye|brb is now known as gaye
  3844. # [22:25] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/437f53de3c7f - Jan de Mooij - Bug 937550 - Report OOM to stderr in JS_MORE_DETERMINISTIC builds. r=jorendorff
  3845. # [22:25] <jaws> dholbert: thanks for cleaning up that bug
  3846. # [22:26] <dholbert> jaws, np!
  3847. # [22:26] <dholbert> jaws, sorry for the dupe :)
  3848. # [22:26] <dholbert> and thanks for the quick duping before I bothered posting more there
  3849. # [22:26] <jaws> dholbert: don't apologize, would rather have dupes than none
  3850. # [22:26] <firebot> Check-in:
  3851. # [22:26] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b92529577644 - Bill McCloskey - Bug 895395 - Support NameFunctions when compiling scripts off the main thread Bug 895395 - Support NameFunctions when compiling scripts off the main thread (r=bhackett)
  3852. # [22:26] <jaws> dholbert: the australis team has been aggressively triaging bugs as they come in
  3853. # [22:26] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/77f53f9d3099 - Bill McCloskey - Bug 935784 - Avoid popping up the findbar when editing text fields in e10s (r=evilpie)
  3854. # [22:26] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/998d2d5e743d - Bill McCloskey - Bug 919878 - Improve failure handling for TabChild::InitRenderingState (r=mattwoodrow)
  3855. # [22:26] <dholbert> jaws, nice
  3856. # [22:27] * Joins: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com)
  3857. # [22:27] <@gavin> ehsan wins today's "captain obvious" award for his reply to NeilAway on dev-platform :P
  3858. # [22:27] <@bsmedberg> it feels weird pushing to inbound or fx-team depending on what my patches touch
  3859. # [22:27] <@bsmedberg> but that probably leads to the fewest conflicts
  3860. # [22:27] <decoder> glandium: 32 bit js shells are also broken for me due to icu. i attached my build script to the bug
  3861. # [22:27] <@ehsan> gavin: I thought he's asking a genuine question!
  3862. # [22:28] <decoder> no CROSS_COMPILE=1 involved there
  3863. # [22:29] <nmatsakis> is a security rating needed for bugs that do not involve a specific vulnerablity, but just indicate a portion of the code where the design is errorprone and may lend itself to vulnerability?
  3864. # [22:29] <nmatsakis> seems a bit paranoid, but then...
  3865. # [22:30] * geekboy|afk is now known as geekboy
  3866. # [22:30] * Quits: gerv (Instantbir@moz-8E68CF56.in-addr.arpa) (Ping timeout)
  3867. # [22:31] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3868. # [22:31] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  3869. # [22:31] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3870. # [22:31] * Joins: gerv (Instantbir@moz-8E68CF56.in-addr.arpa)
  3871. # [22:32] * Quits: samcho (samcho@moz-6A95B86A.usc.edu) (Quit: Colloquy for iPhone - http://colloquy.mobi)
  3872. # [22:33] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/eb08cc206b8d - Benjamin Smedberg - Bug 672843 part B - Remove NS_ENSURE_PROPER_AGGREGATION, r=froydnj
  3873. # [22:33] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/6a0e4afd52ab - Benjamin Smedberg - Bug 672843 part A - Create the new macro NS_WARN_IF and deprecate NS_ENSURE_* in favor of the explicit warning/return style. Also localize each macro so that it's
  3874. # [22:33] * Quits: davidb (davidb@13F2CEC5.7672369.D8E68FF6.IP) (Quit: davidb)
  3875. # [22:33] <firebot> debug and non-debug versions are local in the file, because that makes it easier for new contributors to understand. r=froydnj sr=jst
  3876. # [22:34] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/bbb7760083ae - Benjamin Smedberg - Bug 672843 part D - make NS_ERROR_INVALID_POINTER an alias of NS_ERROR_INVALID_ARG, r=froydnj
  3877. # [22:34] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/eaf2fd75d7fc - Benjamin Smedberg - Bug 672843 part C - convert most of XPCOM except for xpcom/tests, r=vdjeric
  3878. # [22:34] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/58f2fbf00c8c - Nikhil Marathe - Bug 939906 - Make Promise.resolve(), Promise.reject(), Promise.prototype.then() and Promise.prototype.catch() spec compliant. r=baku
  3879. # [22:36] <bkelly> do we have any library routines to calculate hashes like md5sum, etc?
  3880. # [22:37] <RyanVM> bkelly: http://mxr.mozilla.org/mozilla-central/source/mfbt/HashFunctions.h ?
  3881. # [22:37] <tbsaunde> nss does
  3882. # [22:38] * retornam is now known as retornam|lunch
  3883. # [22:38] <RyanVM> ahh, there's SHA1.cpp
  3884. # [22:38] <RyanVM> in mfbt
  3885. # [22:38] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3886. # [22:39] <cviecco> bkelly: HASH_HashBuf
  3887. # [22:39] * Quits: ctangira (ctangira@moz-CFCC7B62.cisco.com) (Ping timeout)
  3888. # [22:39] <bkelly> RyanVM, tbsaunde, cviecco, thanks!
  3889. # [22:41] * Quits: Pike (chatzilla@moz-BD38E3AF.pool.mediaways.net) (Ping timeout)
  3890. # [22:42] * Joins: Pike (chatzilla@moz-BD38E3AF.pool.mediaways.net)
  3891. # [22:42] * Quits: sfink|log (sfink@moz-BBE3ABD.mv.mozilla.com) (Quit: Lost terminal)
  3892. # [22:43] * mattwoodrow is now known as mattwoodrow|away
  3893. # [22:43] * Quits: gabor (gabor@moz-A74A9206.dip0.t-ipconnect.de) (Ping timeout)
  3894. # [22:43] * Joins: sfink|log (sfink@moz-BBE3ABD.mv.mozilla.com)
  3895. # [22:43] <nrc> has anyone had the screen freeze, requiring mouse movement to unfreeze on Windows builds >=25? Probably on page load
  3896. # [22:44] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Quit: lizzard)
  3897. # [22:44] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/00ceed926219 - Chris Double - Bug 939716 - Destructor for MediaStreamGraph should be virtual - r=roc
  3898. # [22:44] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/5dfb6c2488f9 - Chris Double - Bug 939655 - Remove LOG macro definition from MediaStreamGraphImpl.h - r=roc
  3899. # [22:45] * Joins: njn (chatzilla@moz-BCC137C2.dyn.iinet.net.au)
  3900. # [22:45] * ChanServ sets mode: +o njn
  3901. # [22:45] * Quits: abr (abr@moz-96F986B0.smartcity.com) (Quit: AFK)
  3902. # [22:47] * Quits: msucan (mihai@5BCB9726.7652EAB6.C0E37CF3.IP) (Quit: Leaving.)
  3903. # [22:47] <@njn> ...and Australis doesn't interact nicely with Tree Style Tabs
  3904. # [22:47] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/35f1c196e7d3 - Jim Blandy - Bug 937404 - Remove the unused NotableStringInfo copy constructor. r=jimb
  3905. # [22:49] * Joins: bwc (Adium@1E9D28E.80F17AD8.4AA0E643.IP)
  3906. # [22:50] * Quits: b10n1k (j0ni@moz-9129EE4A.dsl.dyn.forthnet.gr) (Ping timeout)
  3907. # [22:51] * Quits: Jackneill (Jackneill@moz-16CEF626.pool.digikabel.hu) (Input/output error)
  3908. # [22:51] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/cd98cb3c52df - Jonathan Kew - bug 928026 - use Roboto / Droid Sans Mono for Greek, until Fira glyphs are revised. r=mwu
  3909. # [22:51] <dholbert> hub, IIUC part of the reason Australis doesn't bother exposing the menu bar is that the menu button (the bars in upper-right corner) is supposed to have all the functionality that the vast majority of users need
  3910. # [22:52] <dholbert> hub, (RE bug 940669)
  3911. # [22:52] <hub> dholbert: yet it doesn't
  3912. # [22:52] * Quits: Mitch (chatzilla@moz-7DA78204.sbr802.nsw.optusnet.com.au) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.22.1/20131113180422])
  3913. # [22:53] <dholbert> hub, what's missing that you think most users need, out of curiosity?
  3914. # [22:53] <hub> the thing that some of my addons put in menus
  3915. # [22:53] <hub> like "Mass password reset"
  3916. # [22:54] <dholbert> hub, (people who use mass password reset are a tiny fraction of users. :) And arguably, that addon probably should be updated for australis. But, point taken; menuitems added by addons are indeed harder to get to)
  3917. # [22:55] <hub> dholbert: reminds me of the Gnome design cabal about the Gnome notificaiton "they'll fix their apps". that was over 4 years ago. Still none
  3918. # [22:55] <hub> (which is why I don't get notified on IRC when pinged if client not in foreground)
  3919. # [22:56] * simone|away is now known as simone
  3920. # [22:56] <hub> also ABP that I use more often
  3921. # [22:56] * Quits: pbocan (Thunderbir@moz-2B4BB411.sin.cvut.cz) (Ping timeout)
  3922. # [22:56] <dholbert> hub, (I'd bet that Mass Password Reset will be fixed, largely just because it's written by & largely used by MoCo folks. Agreed that other addons may not be updated though)
  3923. # [22:57] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  3924. # [22:57] * Joins: ctangira (ctangira@641E606.7A628CD.6CD50604.IP)
  3925. # [22:57] <TimAbraldes> nrc that sounds really similar to bug 933733
  3926. # [22:58] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  3927. # [22:58] * Quits: Jesse (jruderman@moz-BBE3ABD.mv.mozilla.com) (Quit: Jesse)
  3928. # [22:58] * Quits: bbondy_ (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  3929. # [22:59] * Quits: josh (josh@DC98BC6D.96CB7DCC.284344F5.IP) (Ping timeout)
  3930. # [22:59] * Quits: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP) (Quit: RealRaven)
  3931. # [22:59] * corey is now known as corey|away
  3932. # [22:59] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  3933. # [22:59] <mbrubeck> Add-ons like Mass Password Reset have been problematic on Windows since Firefox 4 hid the menubar by default there.
  3934. # [22:59] <nrc> TimAbraldes: yes, I'm trying to fix that but can't repro it myself. I was hoping someone else has managed to repro
  3935. # [22:59] * Joins: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP)
  3936. # [22:59] * Quits: ekr (ekr@moz-7B0110AD.mv.mozilla.com) (Quit: ekr)
  3937. # [23:00] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  3938. # [23:00] * Joins: ekr (ekr@moz-7B0110AD.mv.mozilla.com)
  3939. # [23:00] * Joins: teoli (teoli@FDBE5B0D.43ED3021.F1085784.IP)
  3940. # [23:00] * nrc wishes more people used Windows
  3941. # [23:00] * whimboo|afk is now known as whimboo
  3942. # [23:00] <RyanVM> so apparently my email address was in the Adobe leak, which is interesting because I didn't even realize that I had an account there. And their password reset doesn't recognize my email address. Oh well, at least it was a throwaway password...
  3943. # [23:00] <luke> sicking: looks like it is the 'install-complete' message; in progress in bug 839058
  3944. # [23:00] <TimAbraldes> nrc: oh, I thought you were asking "has anyone else seen this behavior I'm seeing?" I use Windows but I haven't reproduced that issue. Asking in #windev might turn up more results?
  3945. # [23:01] * Quits: jrm2k6 (jrm2k6@moz-925F8EE7.osr0-terez.net.telekom.hu) (Client exited)
  3946. # [23:01] <sicking> luke: sounds right
  3947. # [23:01] * Quits: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP) (Quit: RealRaven)
  3948. # [23:01] <nrc> TimAbraldes: good idea, thanks!
  3949. # [23:01] * Joins: dmarcos (dmarcos@3964DB0F.C3CB019E.24A6C83A.IP)
  3950. # [23:01] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/6f476f02c21e - Benoit Jacob - Bug 940129 - Build part of widget/gonk in unified mode - r=roc,ehsan
  3951. # [23:02] <@dolske> hub: you can still get to the menu. and for an addon like Mass Password Reset that we use, what, once a quarter (less now), that doesn't seem like a big deal.
  3952. # [23:02] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/9872c9984da6 - Benoit Jacob - Bug 939758 - Build gfx/gl in unified mode - r=ehsan
  3953. # [23:02] * Joins: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP)
  3954. # [23:03] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/bb7368c09b70 - Jim Chen - Bug 938368 - Make ANR reporter use the new telemetry ping format; r=blassey
  3955. # [23:03] <@njn> dolske: how do you get to the menu?
  3956. # [23:03] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  3957. # [23:03] <fabrice> sicking: luke: with 'install-complete' we have a bit more overhead though since we need to start the app itself, then spawn a new preallocated process, etc. Also, it's more b2g specific
  3958. # [23:03] <KWierso> njn: hit alt
  3959. # [23:03] <@dolske> on windows you can press alt, afaik linux is the same
  3960. # [23:03] * Joins: Jesse (jruderman@moz-BBE3ABD.mv.mozilla.com)
  3961. # [23:03] <sicking> fabrice: what do you think: https://bugzilla.mozilla.org/show_bug.cgi?id=937917#c5
  3962. # [23:04] * Waldo realizes he just pushed a patch with -u "jimb" and r=jimb :-)
  3963. # [23:04] <@dolske> you can also right click and always show the menu bar
  3964. # [23:04] * retornam|lunch is now known as retornam
  3965. # [23:04] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  3966. # [23:04] <luke> sicking, fabrice: that's mostly fine. the compilation will take 10-20seconds which i assume dwarfs the other costs :)
  3967. # [23:04] <Waldo> ...oops :-)
  3968. # [23:04] <sicking> luke: 10-20 seconds on what hardware?
  3969. # [23:04] <fabrice> luke: I mean, there is no support for system messages in desktop firefox for now.
  3970. # [23:04] * Joins: roc (chatzilla@E2F7352.56080C53.97BBD552.IP)
  3971. # [23:04] * ChanServ sets mode: +o roc
  3972. # [23:04] <luke> sicking, fabrice: at least for the 3MLOC codebases
  3973. # [23:04] * Quits: dmarcos (dmarcos@3964DB0F.C3CB019E.24A6C83A.IP) (Ping timeout)
  3974. # [23:04] <luke> fabrice: on mobile hardware
  3975. # [23:05] <hub> dolske: right-click and always show, didn't really work
  3976. # [23:05] <@dolske> in theory Ubuntu's Unity integration addon soould make that a non-issue there.
  3977. # [23:05] <luke> fabrice: on desktop it's much faster
  3978. # [23:05] <hub> dolske: as for "alt", no. that's very bad UX
  3979. # [23:05] <sicking> i doubt that you can fit that much code in our b2g hardware
  3980. # [23:05] <sicking> but you should try
  3981. # [23:05] * RyanVM is now known as RyanVM|afk
  3982. # [23:05] <luke> fabrice: the installation-time caching is mostly for FFOS apps, so that's fine
  3983. # [23:05] <hub> dolske: already file a bug, because it pulls down
  3984. # [23:05] <@dolske> it's exactly what we've shipped on Windows for quite a while.
  3985. # [23:05] * Quits: mmc|laptop (mchew@moz-BBE3ABD.mv.mozilla.com) (Quit: mmc|laptop)
  3986. # [23:05] <hub> dolske: well, I don't care about Windows UX in that case.
  3987. # [23:06] <hub> they all have their differences
  3988. # [23:06] <luke> fabrice: although it seems like the install-complete message could be generally useful
  3989. # [23:06] <sicking> luke: you might want to look into memory use. And if it doesn't fit try to stream things as much as you can
  3990. # [23:06] <@njn> KWierso, dolske: ooh, that's weird
  3991. # [23:06] <luke> sicking: well, that's orthogonal as it happens caching or not
  3992. # [23:06] * Quits: fredw (fredw@moz-B9C110E2.fbx.proxad.net) (Quit: Leaving.)
  3993. # [23:06] * Quits: jammink (textual@moz-BBE3ABD.mv.mozilla.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
  3994. # [23:06] * Quits: jhopkins (jhopkins@moz-B65AF445.hfc.comcastbusiness.net) (Quit: jhopkins)
  3995. # [23:06] <luke> sicking: but, in general, i would like to support streaming parsing
  3996. # [23:06] <KWierso> njn: alt is the traditional menu-accessing button on at least windows, afaict
  3997. # [23:07] * Quits: RealRaven (Thunderbir@A49BBF6F.36A3DF17.C3498625.IP) (Quit: RealRaven)
  3998. # [23:07] * Joins: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net)
  3999. # [23:07] * Quits: kentuckyfriedtakahe (ajones@538BABFE.A073F3E.97BBD552.IP) (Quit: Ex-Chat)
  4000. # [23:09] * Joins: jammink (textual@moz-BBE3ABD.mv.mozilla.com)
  4001. # [23:09] * Quits: bitgeeky (bitgeeky@9B9315E1.A6025CA.1C37C358.IP) (Ping timeout)
  4002. # [23:09] * Joins: dmarcos (dmarcos@E54805AF.5EFB85A.3007C59D.IP)
  4003. # [23:10] * Quits: naveed (naveed@moz-7B0110AD.mv.mozilla.com) (Input/output error)
  4004. # [23:10] * Quits: grapenuts (chatzilla@moz-B65AF445.hfc.comcastbusiness.net) (Ping timeout)
  4005. # [23:10] * Joins: kentuckyfriedtakahe (ajones@538BABFE.A073F3E.97BBD552.IP)
  4006. # [23:12] <@njn> KWierso: hiding the menu until alt is pressed is what I found weird
  4007. # [23:12] * Quits: smontagu (chatzilla@moz-D0D053E4.red.bezeqint.net) (Ping timeout)
  4008. # [23:12] <@njn> man, Tree Style Tab is *really* busted: bug 940106
  4009. # [23:12] <jhammel> njn: it makes me so sad! :/
  4010. # [23:13] * Joins: naveed (naveed@moz-7B0110AD.mv.mozilla.com)
  4011. # [23:13] * Quits: mt (Adium@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  4012. # [23:14] * Quits: dmarcos (dmarcos@E54805AF.5EFB85A.3007C59D.IP) (Quit: Leaving...)
  4013. # [23:15] * kats is now known as kats|away
  4014. # [23:15] <Fallen> I'm getting an Internal Server Error page on MDN when I edit my profile to enable the beta. Anyone around who feels responsible or can tell me who to nag?
  4015. # [23:15] * Quits: spohl1 (Adium@moz-FED9006F.static.hvvc.us) (Quit: Leaving.)
  4016. # [23:16] <Waldo> Fallen: ask in #devmo?
  4017. # [23:16] <Fallen> thanks
  4018. # [23:16] <sheppy> Fallen: best place to ask is in #mdndev -- that's where out dev team hangs out.
  4019. # [23:16] <Fallen> ok :)
  4020. # [23:18] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/957acbe8ca22 - Seth Fowler - Bug 936720 (Part 1) - Add a new mochitest for animated image operators. r=tn
  4021. # [23:18] * Joins: mihneadb (mihneadb@6CBB3868.3689173D.FCAAE698.IP)
  4022. # [23:18] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/00644e4b067d - Brian Hackett - Bug 938124 - Add mprotect mechanism indicating which GC heap accesses made during Ion compilation are threadsafe, r=jandem.
  4023. # [23:18] * Quits: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  4024. # [23:18] * Joins: mt (Adium@moz-BBE3ABD.mv.mozilla.com)
  4025. # [23:19] <@njn> jhammel: I emailed the Tree Style Tab author
  4026. # [23:19] * Joins: Hughman (Mibbit@moz-518025CC.lnk.telstra.net)
  4027. # [23:19] * @njn will try using these strange "horizontal tabs" for a while
  4028. # [23:20] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/de3dd3c48114 - Shu-yu Guo - Bug 935228 - Toggle debug traps only in debug mode. (r=jandem)
  4029. # [23:20] * Quits: feltnerm (feltnerm@9AC552E8.C69D9A6B.61C21BB7.IP) (Client exited)
  4030. # [23:20] * Quits: @njn (chatzilla@moz-BCC137C2.dyn.iinet.net.au) (Client exited)
  4031. # [23:21] * Joins: njn (chatzilla@moz-BCC137C2.dyn.iinet.net.au)
  4032. # [23:21] * ChanServ sets mode: +o njn
  4033. # [23:21] * Quits: ferjm|afk (ferjm@moz-C75BC392.upc-i.chello.nl) (Quit: Leaving)
  4034. # [23:22] <@njn> yeah, horizontal tabs don't work so well when you have 20+ tabs open
  4035. # [23:22] <@njn> and app tabs don't work so well if the site lacks a favicon
  4036. # [23:22] <@njn> e.g. DXR, TryChooser
  4037. # [23:22] * philor|away is now known as philor
  4038. # [23:22] * Quits: Hughman (Mibbit@moz-518025CC.lnk.telstra.net) (Quit: http://www.mibbit.com ajax IRC Client)
  4039. # [23:23] * whimboo is now known as whimboo|afk
  4040. # [23:25] * Joins: Hughman (Mibbit@moz-518025CC.lnk.telstra.net)
  4041. # [23:25] * Quits: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca) (Quit: yzen)
  4042. # [23:26] <Hughman> ok, so where is this nightly that does not break all my layout options?
  4043. # [23:26] <@bz> hughman: a few days ago?
  4044. # [23:27] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  4045. # [23:27] * Joins: lizzard (ehenry@moz-F2439B1F.dsl.static.sonic.net)
  4046. # [23:27] <Hughman> ...the non australis version i guess
  4047. # [23:28] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  4048. # [23:28] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4983f1debf4c - Honza Bambas - Bug 918880 - MaybeAllowOfflineAppByDefault must work on child processes, r=jduell
  4049. # [23:28] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  4050. # [23:29] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Quit: )
  4051. # [23:29] * Joins: jhopkins (jhopkins@B0F7535B.D36C4CD0.B2D54A9E.IP)
  4052. # [23:30] * Quits: ehugg (ehugg@moz-96F986B0.smartcity.com) (Quit: ehugg)
  4053. # [23:30] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/bf15e2032c38 - Seth Fowler - Bug 917595 (Part 2) - Reftests for zoomed image documents with EXIF orientations. r=smaug
  4054. # [23:30] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/cdccdeb67076 - Seth Fowler - Bug 917595 (Part 1) - Respect image-orientation in zoomed image documents. r=smaug
  4055. # [23:32] * Quits: vendo (chatzilla@4097A75F.69EDD1E9.2B0D1E01.IP) (Connection reset by peer)
  4056. # [23:32] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  4057. # [23:33] * Quits: ggp (ggp@moz-3913D97B.dsl.telesp.net.br) (Quit: Leaving...)
  4058. # [23:33] * Quits: @ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  4059. # [23:34] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  4060. # [23:34] <markh> question about ipdl - in the generated PBrowserParent, I see the function PBrowserParent::RecvPIndexedDBConstructor which always returns true (ie, https://pastebin.mozilla.org/3637691) - but I'm hitting a case where it returns false. Can someone explain how that happens?
  4061. # [23:35] <philor> bsmedberg: https://tbpl.mozilla.org/php/getParsedLog.php?id=30789818&tree=Mozilla-Inbound
  4062. # [23:35] * catlee is now known as catlee-away
  4063. # [23:36] <@bsmedberg> dammit, this passed a tryserver run...
  4064. # [23:36] <@bsmedberg> I wonder if...
  4065. # [23:36] * Joins: mmc|laptop (mchew@moz-BBE3ABD.mv.mozilla.com)
  4066. # [23:36] * bhearsum is now known as bhearsum|afk
  4067. # [23:37] * Joins: jrm2k6 (jrm2k6@moz-7278A08.catv.broadband.hu)
  4068. # [23:38] <@bsmedberg> argh, this was a change to fix something in the try run
  4069. # [23:38] * ctalbert|lunch is now known as ctalbert
  4070. # [23:39] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f8f3c8ef908f - Nicholas Nethercote - Bug 939385 (part 1, attempt 2) - Rename largestContiguousVMBlock as vsizeMaxContiguous. r=froydnj.
  4071. # [23:39] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  4072. # [23:39] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/d6a636fa7bc6 - Nicholas Nethercote - Bug 939385 (part 3, attempt 2) - Expose vsizeMaxContiguous to about:memory. r=froydnj.
  4073. # [23:39] * markh worked it out
  4074. # [23:39] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/bc781a9dd992 - Nicholas Nethercote - Bug 939385 (part 4, attempt 2) - Rename some distinguished amount functions. r=froydnj.
  4075. # [23:39] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/45dd270fa5e4 - Nicholas Nethercote - Bug 939385 (part 2, attempt 2) - Expose vsizeMaxContiguous to telemetry. r=froydnj.
  4076. # [23:40] * Quits: Hughman (Mibbit@moz-518025CC.lnk.telstra.net) (Quit: http://www.mibbit.com ajax IRC Client)
  4077. # [23:40] <@bsmedberg> philor: ok, need to backout. Can you do it or shall I?
  4078. # [23:41] <philor> bsmedberg: I can, still 8 minutes of lunch left
  4079. # [23:41] * Joins: jedp (jedp@moz-89599B04.dsl.dynamic.sonic.net)
  4080. # [23:41] <@bsmedberg> ty
  4081. # [23:41] * nthomas is now known as nthomas|away
  4082. # [23:41] * Joins: Hughman (Mibbit@moz-518025CC.lnk.telstra.net)
  4083. # [23:42] <Waldo> philor: backouts, they're what's for lunch
  4084. # [23:42] <philor> yep
  4085. # [23:42] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/78fb435aa0d2 - Phil Ringnalda - Backed out 4 changesets (bug 672843) for xpcshell bustage
  4086. # [23:42] * Hughman changes to Holly branch
  4087. # [23:42] <philor> should have waited another minute, could have added mochitest-5 to the bustage list
  4088. # [23:42] * Quits: dew (Instantbir@moz-E4452B8F.static.stls.mo.charter.com) (Ping timeout)
  4089. # [23:42] * Joins: dew (Instantbir@moz-E4452B8F.static.stls.mo.charter.com)
  4090. # [23:44] * Joins: arasbm (zooby@BC309CAB.4969A767.1148110F.IP)
  4091. # [23:44] * Quits: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com) (Quit: computer sleep)
  4092. # [23:44] * Joins: yzen (yzen@56CB5688.A5390625.6BEEAEBD.IP)
  4093. # [23:45] <philor> uh oh, dunno whose build bustage that is, so inbound's closing and it's going to be volunteer sheriff time
  4094. # [23:46] * Hughman is happy when 'tree style tabs' and 'nav bar on title bar' add-ons work
  4095. # [23:46] * Joins: Jesse_ (jruderman@moz-7B0110AD.mv.mozilla.com)
  4096. # [23:47] <mbrubeck> the build error is in DOM Promise code...
  4097. # [23:47] <philor> nsm: good golly, is that *your* first Windows build clear up there?
  4098. # [23:47] <philor> or your first Windows non-clobber?
  4099. # [23:47] * Quits: lassey (blassey@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  4100. # [23:47] <philor> what this tree needs is more long closure to let it catch up
  4101. # [23:48] * philor heads back to work
  4102. # [23:48] <KWierso> philor: only 1200 pending on inbound...
  4103. # [23:48] * philor is now known as philor|away
  4104. # [23:48] <mbrubeck> I can back out nsm
  4105. # [23:49] <mbrubeck> unless KWierso is already on it
  4106. # [23:49] <KWierso> I'm heading out for a half day PTO in a few minutes
  4107. # [23:49] * Joins: jdm (jdm@moz-ED0C7AC7.hinet-ip.hinet.net)
  4108. # [23:49] <KWierso> mbrubeck: have at it :)
  4109. # [23:49] <mbrubeck> will do, enjoy :)
  4110. # [23:49] * Quits: Jesse_ (jruderman@moz-7B0110AD.mv.mozilla.com) (Quit: Linkinus - http://linkinus.com)
  4111. # [23:49] * Joins: blassey (blassey@moz-BBE3ABD.mv.mozilla.com)
  4112. # [23:50] <shu> wait that's not my bustage... whew
  4113. # [23:50] <RyanVM|afk> mbrubeck: err
  4114. # [23:50] <mbrubeck> yes?
  4115. # [23:51] <RyanVM|afk> mbrubeck: we sure this isn't a needs-clobber issue?
  4116. # [23:51] * Quits: KWierso (chatzilla@moz-3D85277A.hsd1.ca.comcast.net) (Ping timeout)
  4117. # [23:51] <mbrubeck> no, I'm not
  4118. # [23:51] <RyanVM|afk> windows bustage with a webidl change?
  4119. # [23:51] <mbrubeck> Should I try a clobber instead, and then push a CLOBBER change if appropriate?
  4120. # [23:51] <RyanVM|afk> sounds suspicious to me
  4121. # [23:51] <RyanVM|afk> yes
  4122. # [23:51] * Joins: KWierso (chatzilla@moz-3D85277A.hsd1.ca.comcast.net)
  4123. # [23:53] <mbrubeck> RyanVM|afk: I set a clobber for all Windows builders on inbound, and retriggered the failed job.
  4124. # [23:53] <RyanVM|afk> mbrubeck: thanks :)
  4125. # [23:53] * Quits: Pike (chatzilla@moz-BD38E3AF.pool.mediaways.net) (Ping timeout)
  4126. # [23:53] * Joins: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  4127. # [23:53] <shu> is it possible to turn off australis?
  4128. # [23:54] * Quits: yzen (yzen@56CB5688.A5390625.6BEEAEBD.IP) (Quit: yzen)
  4129. # [23:54] <glandium> shu: use aurora
  4130. # [23:54] <shu> glandium: okay
  4131. # [23:54] * Quits: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  4132. # [23:55] * Joins: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP)
  4133. # [23:56] * Quits: armenzg (armenzg@moz-B65AF445.hfc.comcastbusiness.net) (Ping timeout)
  4134. # [23:56] <KWierso> shu: there's also a few extensions to tweak or revert some of the changes: https://addons.mozilla.org/en-US/firefox/addon/classicthemerestorer/
  4135. # [23:56] <RyanVM|afk> shu: Holly will be m-c minus Australis for the rest of the 28 cycle anyway
  4136. # [23:56] * Joins: Pike (chatzilla@moz-BD38E3AF.pool.mediaways.net)
  4137. # [23:56] * Quits: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  4138. # [23:57] <shu> KWierso: RyanVM|afk: thanks for suggestions
  4139. # [23:57] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  4140. # [23:57] * KWierso is now known as KWierso|afk
  4141. # [23:58] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  4142. # [23:58] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Quit: jib)
  4143. # [23:59] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  4144. # [23:59] * bbondy_ is now known as bbondy
  4145. # Session Close: Wed Nov 20 00:00:00 2013

The end :)