/irc-logs / mozilla / #developers / 2014-02-04 / end

Options:

  1. # Session Start: Tue Feb 04 00:00:01 2014
  2. # Session Ident: #developers
  3. # [00:00] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  4. # [00:00] * Quits: mdas_ (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  5. # [00:01] <jwalden> so http://hg.mozilla.org/integration/mozilla-inbound/filelog/default/intl/icu/source/data/xml/main/yo.xml shows that file containing -0800
  6. # [00:02] <jwalden> and yet if I look at that file in my tree, it has +0000 in it
  7. # [00:03] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  8. # [00:03] <gps> I need help with a very basic nsIFile usage issue. http://ask.mozilla.org/question/5/abort-you-cant-dereference-a-null-nscomptr-with-operator-with-nsifile/
  9. # [00:03] * Quits: bjacob_ (bjacob@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  10. # [00:03] * Joins: jedp (jedp@moz-A6A15B8D.lightspeed.sntcca.sbcglobal.net)
  11. # [00:04] <@ehsan> gps: you're dereferencing a null pointer
  12. # [00:04] * stephend is now known as stephend|mtg
  13. # [00:04] <@ehsan> that message is just a helpful assertion telling you that you'll crash in the next few instructions :)
  14. # [00:05] <@ehsan> specifically, you're not initializing eventsDir to anything
  15. # [00:05] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  16. # [00:05] <@ehsan> so what you're getting is expected
  17. # [00:05] <@gavin> you need to call createInstance to get an nsIFile
  18. # [00:05] <dmajor> jwalden: ping
  19. # [00:05] <jwalden> dmajor: pong
  20. # [00:06] * Joins: aja (Instantbir@67322088.783FD75.C36B37E4.IP)
  21. # [00:06] * mcote is now known as mcote|afk
  22. # [00:06] <gps> ehsan: so why does it work with NS_GetSpecialDirectory("ProfD", getter_AddRefs(eventsDir));
  23. # [00:06] <@ehsan> gps: gavin probably means do_CreateInstance()
  24. # [00:06] <@gavin> gps: like http://mxr.mozilla.org/mozilla-central/source/content/html/content/src/HTMLInputElement.cpp#290
  25. # [00:06] <dmajor> jwalden: I see that you've wrestled with the jsreftest regress-617935.js quite a bit...
  26. # [00:06] <@gavin> ehsan: that's what I said
  27. # [00:06] <gps> is getter_AddRefs() or NS_GetSpecialDirectory() doing the magic?
  28. # [00:06] <@gavin> gps: NS_GetSpecialDirectory creates the nsIfile for you
  29. # [00:06] <@ehsan> because that call returns the nsIFile as an out arg
  30. # [00:06] <gps> ahhh
  31. # [00:06] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/f10b3ebdc756 - Lukas Blakk - Merging in version bump NO BUG CLOSED TREE
  32. # [00:07] <firebot> http://hg.mozilla.org/mozilla-central/rev/bfbfeaf931b1 - Lukas Blakk - Added tag FIREFOX_AURORA_29_BASE-m, Tagging for mozilla-central version bumps CLOSED TREE DONTBUILD for changeset ba2cc1eda988
  33. # [00:07] <@ehsan> gavin: sans the do_ part :)
  34. # [00:07] <dmajor> jwalden: it's crashing for me on mac try pushes but I can't reproduce locally. any ideas for what I can do?
  35. # [00:07] * Fallen is now known as Fallen|away
  36. # [00:07] * Joins: gabor (gabor@5ED9E6DA.CB3251F2.284344F5.IP)
  37. # [00:07] * Joins: dveditz (dveditz@moz-BBE3ABD.mv.mozilla.com)
  38. # [00:07] * ChanServ sets mode: +o dveditz
  39. # [00:07] <@gavin> I was providing the essential information
  40. # [00:08] <@gavin> my mind is not a C++ compiler
  41. # [00:08] <@ehsan> well, this is gps' first C++ patch for mozilla :)
  42. # [00:08] <@ehsan> so I was trying to be super accuratre
  43. # [00:08] <jwalden> dmajor: what exit code does it have on try?
  44. # [00:08] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  45. # [00:09] <dmajor> jwalden: erm, I dunno. it crashes with a stack in jemalloc code (which I touched)
  46. # [00:09] * Quits: @dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  47. # [00:09] <jwalden> hm
  48. # [00:09] * Joins: dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  49. # [00:09] * ChanServ sets mode: +ao dbaron dbaron
  50. # [00:09] <jwalden> dmajor: offhand I don't know any super-quick tricks for this
  51. # [00:10] <jwalden> dmajor: although, I kind of am not a fan of that sort of super-large-memory testing, because it tends to break down pretty easily in practice
  52. # [00:10] * Joins: bmoss (bmoss@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  53. # [00:11] <dmajor> jwalden: my changes ought to be safe, which makes me suspect there's some previously-hidden memory issue being exposed. (which would make it that much harder for me to find, not knowing the calling code)
  54. # [00:11] <taras> hi guys, we just lit up http://ask.mozilla.org/question/3/why-use-askmozillaorg/ please direct questions that might get asked multiple times that way
  55. # [00:11] <jwalden> taras: gps stole your thunder :-)
  56. # [00:12] <taras> oh, fantastic
  57. # [00:12] <taras> thanks gps
  58. # [00:12] <jwalden> in a sense
  59. # [00:12] <@gavin> except we all answered on IRC
  60. # [00:12] <@gavin> doin' it wrong
  61. # [00:12] <taras> nah bsmedberg did a nice reply there
  62. # [00:12] <taras> we are all winning
  63. # [00:12] <@ehsan> somebody can cut and paste our answer :P
  64. # [00:13] <@bsmedberg> there's some weirdness with formatting and capitalization
  65. # [00:13] <gps> heh
  66. # [00:13] <@gavin> </nsifile></nsifile> o_O
  67. # [00:13] <gps> taras: the formatting is buggy. My "->" renders properly in the preview but gets converted to "-&gt;" in the actual post
  68. # [00:14] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/6b4a0aafef18 - Lukas Blakk - Tagging end of BETA 27 CLOSED TREE DONTBUILD NO BUG
  69. # [00:14] <gps> otherwise huge +100 for standing this up
  70. # [00:14] <gps> can't wait for the culture to shift towards asking questions via pasted ask.mozilla.org links
  71. # [00:15] * Quits: jimm (jmathies@moz-DF439B90.pn.at.cox.net) (Quit: )
  72. # [00:15] * Joins: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net)
  73. # [00:15] <@ehsan> gps: so, now that you're here, are you gonna do some reviews for me? ;)
  74. # [00:15] * Quits: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net) (Client exited)
  75. # [00:15] * Quits: bkero (bkero@B09BE30.721446DC.5E72ECD5.IP) (Connection reset by peer)
  76. # [00:16] <taras> gps: it only took 4 months of legal review to stand this up ;)
  77. # [00:16] * Joins: bkero (bkero@B09BE30.721446DC.5E72ECD5.IP)
  78. # [00:16] <Unfocused> whoa, what is this thing?!
  79. # [00:16] <cpeterson> gps: imagine an askbot-bot that, when it sees questions on IRC, it searches for likely ask.mozilla.org posts and drops the link in channel.
  80. # [00:17] <gps> \o/
  81. # [00:17] * Quits: lerc (quassel@moz-289EFA2.telstraclear.net) (Ping timeout)
  82. # [00:17] * Joins: ehugg (chatzilla@5AD0A91D.29102B70.6CD50604.IP)
  83. # [00:17] * Quits: badescunicu (Thunderbir@C9D124A7.7BB37755.FB866788.IP) (Quit: badescunicu)
  84. # [00:17] <gps> ehsan: I have to go to the dentist in a few minutes, so not today most likely
  85. # [00:18] <@ehsan> gps: was more of a general question :)
  86. # [00:18] <@ehsan> the patch has been there for a week or so
  87. # [00:18] <@ehsan> taras_: only 4 months? ;)
  88. # [00:18] * Quits: @roc (chatzilla@moz-FC2D0FB5.bng1.tvc.orcon.net.nz) (Ping timeout)
  89. # [00:19] * jchen is now known as jchen|away
  90. # [00:19] <aja> calendar time doesn't matter....it's billable hours!
  91. # [00:19] * Quits: emtwo (msamuel@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  92. # [00:19] <@bz> ooh
  93. # [00:19] * @bz sees chance to have more rss feeds
  94. # [00:19] <@ehsan> kats: I suggest picking a different reviewer for bug 845690 if you want a faster review
  95. # [00:20] * Quits: wlach_ (wlach@moz-B77B0E55.stationc.isp.ip4b.net) (Ping timeout)
  96. # [00:20] <jwalden> ehsan: so if I run those steps with your patch applied, I get no changes
  97. # [00:20] <kats> ehsan: do you want to review it?
  98. # [00:20] <@ehsan> RyanVM: can we land stuff now?
  99. # [00:20] <jwalden> ehsan: which is good enough to land, at least
  100. # [00:20] <@ehsan> kats: nice try :P
  101. # [00:20] <RyanVM> ehsan: in about 1 minute :)
  102. # [00:20] <jwalden> no idea why you see bunches of changes still :-\
  103. # [00:20] <@ehsan> RyanVM: cool, thanks
  104. # [00:20] * Joins: emtwo (msamuel@FCCEA34F.7672369.D8E68FF6.IP)
  105. # [00:20] <kats> ehsan: heh :) can you suggest somebody else then?
  106. # [00:20] <@ehsan> jwalden: that's good!
  107. # [00:20] <@bz> hmm
  108. # [00:20] * Quits: sfoster (sfoster@moz-37AA60E3.hsd1.wa.comcast.net) (Quit: Leaving)
  109. # [00:20] <@bz> is there an "all questions" feed?
  110. # [00:21] <jwalden> ehsan: you don't have some super-custom local svn settings or so, do you?
  111. # [00:21] <@bsmedberg> bz: not http://ask.mozilla.org/feeds/rss/? ?
  112. # [00:21] <jwalden> ehsan: that would override |export TZ=UTC| in the environment
  113. # [00:21] <kats> ehsan: really i just need a peer rubber-stamp it
  114. # [00:21] <@ehsan> kats: r=me (it worked ;)
  115. # [00:21] <kats> ehsan: thanks :)
  116. # [00:21] <@bz> bsmedberg: perfect
  117. # [00:21] <@ehsan> I'm not a peer, but who cares? ;)
  118. # [00:21] * Quits: Optimizer (Optimizer@E5537FF4.4A165A35.BE4CF869.IP) (Ping timeout)
  119. # [00:21] <@bz> bsmedberg: btw, I like the plaintive </nsifile></nsifile>
  120. # [00:22] * Joins: a-865 (fmcz@moz-EFF8C062.cable.mindspring.com)
  121. # [00:22] <RyanVM> ehsan: fire away :)
  122. # [00:22] <@bsmedberg> indeed, even the automated systems know what we need to do!
  123. # [00:22] <@ehsan> jwalden: I should not have any svn settings anywhere!
  124. # [00:22] * Quits: kaze (kaze@moz-F6A8D8D3.fbx.proxad.net) (Ping timeout)
  125. # [00:22] <@bz> bsmedberg: ;)
  126. # [00:22] * Quits: Archaeopteryx (itsme@moz-79E044D3.cust.telecolumbus.net) (Quit: Goodbye)
  127. # [00:22] <jwalden> yeah, I dunno what's up here
  128. # [00:22] * Quits: davidb|afk (davidb@moz-CDD6CD1B.dsl.bell.ca) (Quit: davidb|afk)
  129. # [00:22] <@bz> no persona here, eh?
  130. # [00:22] <jwalden> maybe once this is all in place I should put out a blog plea for help figuring it out
  131. # [00:23] <@ehsan> bz: read that red text? ;)
  132. # [00:23] <@bz> oh, heh
  133. # [00:23] <@bz> it totally got ad-filtered by my brain
  134. # [00:23] <mjrosenb> was there a change recently which would cause 'switch to tab' to not be the first entry?
  135. # [00:23] <@bz> along with the ad-like bar at the bottom, etc
  136. # [00:23] * joshua-s is now known as joshua-s|drama
  137. # [00:24] <@ehsan> lol
  138. # [00:24] * Quits: gabor (gabor@5ED9E6DA.CB3251F2.284344F5.IP) (Ping timeout)
  139. # [00:24] <@bz> Something about the placement + color....
  140. # [00:25] * Quits: Boriss (Boriss@E9375BF.AC1E7E60.E96CA9D8.IP) (Quit: Boriss)
  141. # [00:25] * Joins: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  142. # [00:26] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a85e47332d67 - Kartikaya Gupta - Bug 845690 - Print a warning for developers if we apply our implicit backwards-compatible meta-viewport tag. r=ehsan,f=vingtetun
  143. # [00:26] * ericjung|dinner is now known as ericjung_
  144. # [00:26] <@ehsan> kats: this is how you pay me back, by midairing with my push?!
  145. # [00:26] <RyanVM> hah
  146. # [00:27] <kats> ehsan: sorreee :(
  147. # [00:27] <@ehsan> it's ok!
  148. # [00:27] <RyanVM> sheesh, you had a whole 5min
  149. # [00:27] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d0f1ccbc7cfc - Ehsan Akhgari - Bug 924839 - Reapply the OSX part of the fix to bug 915735
  150. # [00:27] <@ehsan> RyanVM: well I ef'ed up my local clone ;)
  151. # [00:27] <till> bholley: ping
  152. # [00:27] <@ehsan> not a very strong defence I know
  153. # [00:27] * JosiahOne is now known as JosiahOne|Away
  154. # [00:27] * Joins: miketaylr (mtaylor@moz-BBE3ABD.mv.mozilla.com)
  155. # [00:28] <bholley> till: in a 1-on-1 - give me 30?
  156. # [00:28] <till> bholley: sure
  157. # [00:29] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2d0317f079e3 - Matt Woodrow - Bug 966543 - Ensure that the MacIOSurfaceTextureHost has taken a ref to the surface before letting the client side object be destroyed. r=nical
  158. # [00:29] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/86c79748c589 - Matt Woodrow - Bug 952011 - Add gfx3DMatrix API for untransformed rects and points. r=bjacob
  159. # [00:29] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/7a0df2e79e3b - Matt Woodrow - Bug 952011 - Use Untransform API to safetly untransform points when we have a projective matrix. r=roc
  160. # [00:29] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/1fd4496e847a - Matt Woodrow - Bug 952011 - Remove some nsLayoutUtils transform functions that are no longer needed. r=roc
  161. # [00:30] * Quits: smontagu (chatzilla@moz-FA852C17.as13285.net) (Ping timeout)
  162. # [00:31] * Joins: IanN (chatzilla@moz-7F4009AA.perr.cable.virginm.net)
  163. # [00:32] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d7b0c3b046b2 - William Chen - Bug 946585 - Change how the form element pointer affects parsing template elements. r=hsivonen
  164. # [00:34] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  165. # [00:36] * Joins: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP)
  166. # [00:37] * Joins: mjschranz (mjschranz@FCCEA34F.7672369.D8E68FF6.IP)
  167. # [00:37] * Joins: kaze (kaze@moz-F6A8D8D3.fbx.proxad.net)
  168. # [00:37] * Joins: arasbm1 (zooby@moz-8E336844.vf.shawcable.net)
  169. # [00:38] * Quits: arasbm (zooby@moz-8E336844.vf.shawcable.net) (Connection reset by peer)
  170. # [00:38] * Quits: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP) (Ping timeout)
  171. # [00:38] * Quits: ehugg (chatzilla@5AD0A91D.29102B70.6CD50604.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  172. # [00:38] <reuben> [21:05:09] <@ehsan> so I was trying to be super accuratre
  173. # [00:38] <reuben> heh
  174. # [00:38] <reuben> https://en.wikipedia.org/wiki/Muphry%27s_law
  175. # [00:38] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  176. # [00:38] <@ehsan> reuben: touche!
  177. # [00:38] * Quits: vladan (vladan@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Leaving.)
  178. # [00:38] <@ehsan> reuben: also, see the part about "trying"? ;)
  179. # [00:39] * Quits: mjschranz (mjschranz@FCCEA34F.7672369.D8E68FF6.IP) (Ping timeout)
  180. # [00:39] * Quits: ericjung_ (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Ping timeout)
  181. # [00:42] * Joins: vladan (vladan@13F2CEC5.7672369.D8E68FF6.IP)
  182. # [00:42] * Joins: znickell (Thunderbir@moz-A2E993EF.dhcp.ftwo.tx.charter.com)
  183. # [00:42] * Joins: brendan (brendaneic@moz-BBE3ABD.mv.mozilla.com)
  184. # [00:44] * Quits: @dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  185. # [00:44] * baku is now known as baku|away
  186. # [00:44] * Joins: dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  187. # [00:44] * ChanServ sets mode: +ao dbaron dbaron
  188. # [00:46] * Quits: elan (elancaster@moz-1C4F0CAA.dhcp.rvsd.ca.charter.com) (Ping timeout)
  189. # [00:46] * Quits: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  190. # [00:47] * Joins: briansmith (briansmith@C11351D5.AC8EC7EA.B4C748B5.IP)
  191. # [00:47] <taras> gps: is there a count(*) equivalent in graphite?
  192. # [00:47] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  193. # [00:47] * Quits: pnkfelix (pnkfelix@moz-43495417.fbx.proxad.net) (Input/output error)
  194. # [00:47] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  195. # [00:47] * Joins: elan (elancaster@moz-1C4F0CAA.dhcp.rvsd.ca.charter.com)
  196. # [00:47] * Joins: grobinson|laptop (grob_@moz-63865A26.torservers.net)
  197. # [00:49] * jchen|away is now known as jchen
  198. # [00:49] * geekboy|afk is now known as geekboy
  199. # [00:50] * Quits: kaze (kaze@moz-F6A8D8D3.fbx.proxad.net) (Ping timeout)
  200. # [00:50] * Quits: @ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  201. # [00:50] * Joins: ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP)
  202. # [00:50] * ChanServ sets mode: +o ehsan
  203. # [00:52] * Quits: emtwo (msamuel@FCCEA34F.7672369.D8E68FF6.IP) (Quit: Leaving.)
  204. # [00:52] * Quits: cers (csonne@C6F88941.4B6984D7.192BA9D5.IP) (Connection reset by peer)
  205. # [00:52] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/5bcdeb39c890 - Mats Palmgren - Bug 946929 - Part 2, Disable painting for the shell while the child views are detached. r=roc
  206. # [00:52] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ae57a2bfa2c7 - Mats Palmgren - Bug 946929 - Part 1, Don't schedule paint related events in a detached pres context. r=roc
  207. # [00:52] * Joins: cers (csonne@C6F88941.4B6984D7.192BA9D5.IP)
  208. # [00:53] <jwalden> ehsan: so it seems something in Mercurial is trying to keyword-expand that bit, so it's possible to have different $Date ...$ in different working copies, based upon the same revision :-(
  209. # [00:53] * khuey is now known as khuey|away
  210. # [00:53] <jwalden> ehsan: which is supremely unhelpful here
  211. # [00:53] <jwalden> ehsan: and which is pretty strange, because I thought the keyword extension wasn't on by default
  212. # [00:53] <@ehsan> huh
  213. # [00:54] * Joins: roc (chatzilla@34E8ECDF.DC2C3734.616A18A6.IP)
  214. # [00:54] * ChanServ sets mode: +o roc
  215. # [00:55] * jorendorff is now known as jorendorff_away
  216. # [00:55] * Quits: wlach (wlach@moz-B77B0E55.stationc.isp.ip4b.net) (Quit: Leaving)
  217. # [00:55] * gregglind is now known as gregglind_away
  218. # [00:56] * Quits: bgrins (Adium@C7203E51.FBD8ACDB.20F09BA6.IP) (Quit: Leaving.)
  219. # [00:56] * stephend|mtg is now known as stephend
  220. # [00:57] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/0d8e85cda93d - Bill McCloskey - Bug 967228 - Avoid exception in DOMIdentity.jsm (r=MattN)
  221. # [00:58] * Joins: znickell1 (Thunderbir@moz-A2E993EF.dhcp.ftwo.tx.charter.com)
  222. # [00:58] * Quits: znickell (Thunderbir@moz-A2E993EF.dhcp.ftwo.tx.charter.com) (Ping timeout)
  223. # [00:58] * jchen is now known as jchen|away
  224. # [01:00] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  225. # [01:00] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  226. # [01:01] * Quits: jhopkins|afk (jhopkins@13F2CEC5.7672369.D8E68FF6.IP) (Quit: jhopkins|afk)
  227. # [01:01] * geekboy is now known as geekboy|afk
  228. # [01:03] * Quits: jgilbert (jgilbert@moz-DABF6845.ph.ph.cox.net) (Ping timeout)
  229. # [01:03] * RyanVM is now known as RyanVM|afk
  230. # [01:03] * Joins: gabor (gabor@5ED9E6DA.CB3251F2.284344F5.IP)
  231. # [01:04] * kats is now known as kats|away
  232. # [01:04] * Joins: jgilbert (jgilbert@moz-DABF6845.ph.ph.cox.net)
  233. # [01:05] * Quits: mt (mt@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  234. # [01:07] * Joins: brad0 (Adium@moz-9C1401F.cpe.pppoe.ca)
  235. # [01:07] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  236. # [01:08] * Quits: @dveditz (dveditz@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  237. # [01:08] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  238. # [01:08] * Quits: Gijs (gijs@moz-38E1C9D2.range86-164.btcentralplus.com) (Connection reset by peer)
  239. # [01:08] * Joins: diana_arnos (diana@712DFE10.413525DB.382F99D6.IP)
  240. # [01:09] * Joins: Gijs (gijs@moz-38E1C9D2.range86-164.btcentralplus.com)
  241. # [01:09] * diana_arnos is now known as diana
  242. # [01:09] * Quits: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: mixedpuppy)
  243. # [01:09] * Joins: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  244. # [01:09] * bz is now known as bz_asay
  245. # [01:10] * bz_asay is now known as bz_away
  246. # [01:10] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  247. # [01:10] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/244ec084065b - Brian Smith - Bug 967175: Remove EV entries for ValiCert (Go Daddy) roots removed in bug 936304, r=kwilson
  248. # [01:10] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/fa127f705db1 - Brian Smith - Bug 958916: Update to NSS 3.15.5 beta 3 (NSS_3_15_5_BETA3), r=me
  249. # [01:11] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/31ad3271ff63 - Brian Smith - Bug 967299: Fix async/sync issue in test_ev_certs.js, r=keeler
  250. # [01:11] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/370064a33b61 - David Keeler - Bug 964493, Part 2: Test, r=briansmith
  251. # [01:11] * Quits: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro) (Ping timeout)
  252. # [01:13] <briansmith> Is mozilla-inbound already Firefox 30, or is it still Firefox 29?
  253. # [01:13] * Quits: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: mixedpuppy)
  254. # [01:13] <@ehsan> 30
  255. # [01:14] <briansmith> thanks
  256. # [01:14] <glandium> jesup_mac: ping
  257. # [01:16] * JosiahOne|Away is now known as JosiahOne
  258. # [01:20] * Joins: dveditz (dveditz@moz-BBE3ABD.mv.mozilla.com)
  259. # [01:20] * ChanServ sets mode: +o dveditz
  260. # [01:22] * Quits: mreavy (chatzilla@moz-C34F24F7.phlapa.fios.verizon.net) (Ping timeout)
  261. # [01:23] * Joins: mreavy (chatzilla@moz-C34F24F7.phlapa.fios.verizon.net)
  262. # [01:25] * ewong|away is now known as ewong
  263. # [01:26] * Joins: Boriss (Boriss@E9375BF.AC1E7E60.E96CA9D8.IP)
  264. # [01:28] * Joins: lerc (quassel@moz-289EFA2.telstraclear.net)
  265. # [01:29] * Joins: jesup (chatzilla@moz-C34F24F7.phlapa.fios.verizon.net)
  266. # [01:30] * khuey|away is now known as khuey
  267. # [01:30] <sfink> glandium: what version of binutils do I need?
  268. # [01:30] <sfink> I wasn't requesting any particular version
  269. # [01:30] <glandium> sfink: use the same as the one we use for gcc 4.7.3
  270. # [01:30] <glandium> sfink: that is, just take the build-gcc.sh script and use it to build gcc 4.7.2
  271. # [01:30] * Joins: ericjung_ (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  272. # [01:31] * Callek_disconnected is now known as Callek
  273. # [01:31] * Quits: Boriss (Boriss@E9375BF.AC1E7E60.E96CA9D8.IP) (Quit: Boriss)
  274. # [01:31] <glandium> sfink: build/unix/build-gcc/build-gcc.sh
  275. # [01:31] <sfink> hm, ok
  276. # [01:31] * Joins: nattokirai (nattokirai@moz-C286AD9A.bitcat.net)
  277. # [01:32] * Joins: azakai (alon@13F2CEC5.7672369.D8E68FF6.IP)
  278. # [01:33] <sfink> wow, does that script just work?
  279. # [01:33] <sfink> cool
  280. # [01:33] * Quits: tomer (tomer@moz-F45DAEFD.static.012.net.il) (Ping timeout)
  281. # [01:34] <glandium> sfink: yup, just work, as long as you have the required dependencies
  282. # [01:34] <glandium> sfink: like flex, bison, and i don't remember what else
  283. # [01:34] * Joins: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com)
  284. # [01:34] * Quits: ericjung_ (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Ping timeout)
  285. # [01:35] * Quits: jrm2k6 (jrm2k6@moz-876091EF.sd.sd.cox.net) (Client exited)
  286. # [01:36] * Quits: bholley (bholley@moz-BBE3ABD.mv.mozilla.com) (Quit: bholley)
  287. # [01:36] * Quits: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  288. # [01:36] * Joins: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP)
  289. # [01:37] <sfink> of course, if it works, I'll still need to make an RPM :(
  290. # [01:37] <glandium> sfink: relatedly, what's that ANALYZED_OBJDIR business?
  291. # [01:37] * Joins: cpeterso_ (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  292. # [01:37] <glandium> sfink: don't make an rpm
  293. # [01:37] <glandium> sfink: use tooltool
  294. # [01:38] * Joins: clokep (Instantbir@moz-1484204D.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com)
  295. # [01:38] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Ping timeout)
  296. # [01:38] <sfink> I guess I will have to learn how to use tooltool then
  297. # [01:38] * Quits: jimb (user@125EF623.B2666F0E.66399531.IP) (Ping timeout)
  298. # [01:38] * Quits: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP) (Ping timeout)
  299. # [01:39] * Joins: bholley (bholley@moz-BBE3ABD.mv.mozilla.com)
  300. # [01:39] * Quits: bholley (bholley@moz-BBE3ABD.mv.mozilla.com) (Quit: bholley)
  301. # [01:39] <sfink> glandium: ANALYZED_OBJDIR is really just a dumping ground for all the object files I generate during analysis. Come to think of it, maybe I don't need it at all. I think I have absolute paths for all of the *real* output files.
  302. # [01:40] * Joins: sfoster (sfoster@moz-961AB6F2.hsd1.or.comcast.net)
  303. # [01:40] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  304. # [01:41] <sfink> glandium: where does tooltool pull its stuff from? Is there a place I could check to see what already exists?
  305. # [01:41] * Quits: bmoss (bmoss@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  306. # [01:42] <glandium> sfink: ./browser/config/tooltool-manifests
  307. # [01:42] <glandium> sfink: you need to get your builds to use tooltool. Ask releng
  308. # [01:42] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Ping timeout)
  309. # [01:43] <glandium> sfink: for your builds, you can use the same setup.sh as ./browser/config/tooltool-manifests/linux64/releng.manifest
  310. # [01:43] <RyanVM|afk> kats: b-i bustage
  311. # [01:43] <glandium> sfink: you'll just have to adapt gcc.tar.xz
  312. # [01:43] <glandium> sfink: when you have built gcc.tar.xz, ask rail to deploy it
  313. # [01:44] <RyanVM|afk> oh gee, look who's away
  314. # [01:44] * Joins: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com)
  315. # [01:44] * Quits: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: mixedpuppy)
  316. # [01:46] * Quits: Mathnerd314 (Mibbit@483ABE88.88385A52.459A737F.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  317. # [01:47] * Joins: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP)
  318. # [01:47] * Quits: brendan (brendaneic@moz-BBE3ABD.mv.mozilla.com) (Quit: brendan)
  319. # [01:47] <philor> you are!
  320. # [01:48] * emerson is now known as emerson|radio
  321. # [01:48] * Quits: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP) (Quit: Leaving.)
  322. # [01:48] <RyanVM|afk> shhhhh
  323. # [01:49] <RyanVM|afk> and funny enough, the follow-up probably fixes the bustage
  324. # [01:49] <RyanVM|afk> good thing I already hit the cancel-all buttom
  325. # [01:50] <RyanVM|afk> philor: i'll trigger new dep builds once the cancel goes through
  326. # [01:50] * hwine is now known as hwine-food
  327. # [01:50] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  328. # [01:51] * Joins: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP)
  329. # [01:52] * Joins: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP)
  330. # [01:53] * Quits: miketaylr (mtaylor@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving...)
  331. # [01:53] * Quits: lmandel (lmandel@moz-BBE3ABD.mv.mozilla.com) (Input/output error)
  332. # [01:53] * Quits: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Boriss)
  333. # [01:54] * Quits: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: mixedpuppy)
  334. # [01:54] * Quits: @bz_away (bzbarsky@moz-72881629.bstnma.fios.verizon.net) (Ping timeout)
  335. # [01:54] * Quits: bgrins (Adium@2E6E9164.E6468DB3.BAB75B95.IP) (Ping timeout)
  336. # [01:54] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/efc0fb796fbe - Lukas Blakk - NO BUG DONTBUILD CLOSED TREE tag cleanup
  337. # [01:54] * Joins: bgrins (Adium@C7203E51.FBD8ACDB.20F09BA6.IP)
  338. # [01:54] <firebot> http://hg.mozilla.org/mozilla-central/rev/f550b112a19b - Lukas Blakk - Tagging for mozilla-central version bumps NO BUG CLOSED TREE DONTBUILD
  339. # [01:54] * Joins: bz_away (bzbarsky@moz-72881629.bstnma.fios.verizon.net)
  340. # [01:54] <firebot> http://hg.mozilla.org/mozilla-central/rev/93bf08c6f96f - Lukas Blakk - NO BUG DONTBUILD CLOSED TREE tag cleanup
  341. # [01:55] * Joins: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net)
  342. # [01:56] * Joins: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP)
  343. # [01:56] <fabrice1> RyanVM|afk: yeah, I should have fixed it
  344. # [01:57] <fabrice1> trying to keep the tree opened more than 20 minutes :P
  345. # [01:57] * Quits: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Boriss)
  346. # [01:58] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/c93f279776fa - Honza Bambas - Bug 965899 - Ensure properties are loaded before CacheFileIOManager::OnProfile call, r=michal
  347. # [01:58] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/73787d39b55d - Honza Bambas - Bug 956930 - Launching an app preloading appcache throws an offline error, r=jduell+sicking
  348. # [01:58] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/d8681c43683d - Honza Bambas - Bug 828183 - disable NTLM generic module, effectively disable arbitrary NTLMv1 in Firefox, r=bsmith
  349. # [01:58] * retornam is now known as retornam|away
  350. # [01:58] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/47bd8742ee3c - Honza Bambas - Bug 949175 - Remove possibility to un-persist a cache entry after it has been opened, r=michal
  351. # [01:58] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/e0db5f09d041 - Honza Bambas - Bug 913820 - Base for size limit preferences in HTTP cache v2, r=michal
  352. # [01:59] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Quit: lizzard)
  353. # [01:59] * Quits: Gijs (gijs@moz-38E1C9D2.range86-164.btcentralplus.com) (Quit: sleep)
  354. # [02:01] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a70d1fe8d510 - Alexander Surkov - Bug 961737 - DOMPointToOffset cleaning up, r=tbsaunde
  355. # [02:01] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/f3d031c9648c - Eitan Isaacson - Bug 964513 - Skip empty headers. r=yzen
  356. # [02:02] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  357. # [02:02] * Joins: brendan (brendaneic@moz-BBE3ABD.mv.mozilla.com)
  358. # [02:02] <fabrice1> philor: ping?
  359. # [02:03] * Joins: jammink (textual@moz-BBE3ABD.mv.mozilla.com)
  360. # [02:03] <philor> fabrice1: pong
  361. # [02:03] * Quits: diana (diana@712DFE10.413525DB.382F99D6.IP) (Connection reset by peer)
  362. # [02:03] <RyanVM|afk> philor: up to attempt #3 to trigger new builds
  363. # [02:03] <RyanVM|afk> theeeere we go
  364. # [02:04] <fabrice1> philor: can we restart the builds on b2g-inbound ?
  365. # [02:04] * Joins: bjacob_ (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  366. # [02:04] <RyanVM|afk> fabrice1: see above
  367. # [02:04] * Quits: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: mixedpuppy)
  368. # [02:04] * Joins: diana (diana@712DFE10.413525DB.382F99D6.IP)
  369. # [02:04] <RyanVM|afk> (and refresh b-i)
  370. # [02:04] <philor> ignore his afk, he's really still sheriffduty
  371. # [02:04] * Joins: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP)
  372. # [02:04] <fabrice1> ha thanks
  373. # [02:05] <RyanVM|afk> I try to clean up my messes anyway :)
  374. # [02:05] * Quits: spohl (Adium@FD11E35B.44884C23.4C3D7EF6.IP) (Quit: Leaving.)
  375. # [02:05] * Quits: jedp (jedp@moz-A6A15B8D.lightspeed.sntcca.sbcglobal.net) (Quit: Computer has gone to sleep.)
  376. # [02:05] <philor> RyanVM|afk: https://tbpl.mozilla.org/php/getParsedLog.php?id=34029709&tree=Mozilla-Central :|
  377. # [02:05] <RyanVM|afk> yeah, saw that earlier today too
  378. # [02:05] * philor climbs back on the treadmill
  379. # [02:06] * Quits: IanN (chatzilla@moz-7F4009AA.perr.cable.virginm.net) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.22a1/20130716193708])
  380. # [02:06] * Quits: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net) (Quit: Leaving)
  381. # [02:07] * Quits: @smaug (chatzilla@moz-9E0B1701.pp.htv.fi) (Ping timeout)
  382. # [02:08] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  383. # [02:09] * Quits: dadel (dadel@moz-DC3E77C1.ponteilla.net) (Ping timeout)
  384. # [02:09] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/ce3f48acc244 - Phil Ringnalda - Bug 777574 - Skip quickCheckAPI-C.html on Linux Mesa since it fails on ASan tests all the time
  385. # [02:10] * Quits: rstrong (rstrong@moz-204A999A.hsd1.ca.comcast.net) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.8.0.9/2006120508])
  386. # [02:10] <bz_away> gah
  387. # [02:10] <bz_away> why am I only getting 30KB/s to the FTP server?
  388. # [02:10] * Joins: ericjung_ (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  389. # [02:10] <RyanVM|afk> bz_away: the tree isn't even closed!
  390. # [02:11] * Parts: ckerschb (ckerschb@moz-82777327.ics.uci.edu)
  391. # [02:11] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  392. # [02:11] * Quits: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  393. # [02:12] * Joins: ehugg (ehugg@moz-6D0FD3FC.cisco.com)
  394. # [02:12] * hwine-food is now known as hwine-ooo
  395. # [02:13] * Quits: curiousguy13 (chatzilla@809B830E.BE81A38A.8D9DA8D9.IP) (Ping timeout)
  396. # [02:13] * Joins: kushagra (kushagra@B9D56B0F.8F547608.520CDC98.IP)
  397. # [02:14] * Joins: curiousguy13 (chatzilla@C5FB7427.548C838B.50E99975.IP)
  398. # [02:14] * Quits: jet (jet@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: jet)
  399. # [02:17] * Joins: darkowlzz (sunny@8E6020F2.6CEABC03.F44414AF.IP)
  400. # [02:17] * Quits: @ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  401. # [02:20] * Quits: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Quit: dealloc)
  402. # [02:20] * Joins: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net)
  403. # [02:21] * jlund|buildduty is now known as jlund|brb
  404. # [02:22] * Quits: darkowlzz (sunny@8E6020F2.6CEABC03.F44414AF.IP) (Quit: This computer has gone to sleep)
  405. # [02:22] * Joins: dadel (dadel@moz-DC3E77C1.ponteilla.net)
  406. # [02:22] * joshua-s|drama is now known as joshua-s
  407. # [02:22] * Joins: ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP)
  408. # [02:22] * ChanServ sets mode: +o ehsan
  409. # [02:23] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Connection reset by peer)
  410. # [02:23] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  411. # [02:24] * Quits: @ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  412. # [02:25] * Quits: AaronMT (AaronMT@moz-711CBAAA.cpe.net.cable.rogers.com) (Quit: Textual IRC Client: www.textualapp.com)
  413. # [02:25] * Quits: serge (Thunderbir@moz-C5779BFD.dsl.teksavvy.com) (Ping timeout)
  414. # [02:25] * Joins: serge (Thunderbir@moz-C5779BFD.dsl.teksavvy.com)
  415. # [02:26] * Joins: Jesse_ (jruderman@moz-BBE3ABD.mv.mozilla.com)
  416. # [02:26] * Joins: miketaylr (mtaylor@moz-9CE00FC0.holiday-inn-express.mozilla.hq)
  417. # [02:27] * Quits: Jesse (jruderman@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  418. # [02:27] * Joins: gentlefolk (chatzilla@moz-D195EAF9.cpe.teksavvy.com)
  419. # [02:28] * Quits: miketaylr (mtaylor@moz-9CE00FC0.holiday-inn-express.mozilla.hq) (Quit: Linkinus - http://linkinus.com)
  420. # [02:28] * Joins: miketaylr (mtaylor@moz-9CE00FC0.holiday-inn-express.mozilla.hq)
  421. # [02:29] * Quits: sworkman (sworkman@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sworkman)
  422. # [02:30] * Quits: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
  423. # [02:32] * Quits: jgilbert (jgilbert@moz-DABF6845.ph.ph.cox.net) (Ping timeout)
  424. # [02:34] * Quits: erahm1 (Adium@383121B7.B2666F0E.66399531.IP) (Quit: Leaving.)
  425. # [02:35] * Joins: jgilbert (jgilbert@moz-DABF6845.ph.ph.cox.net)
  426. # [02:36] * Quits: kinetik (kinetik@457BB45D.611C109.FC74E68.IP) (Quit: leaving)
  427. # [02:37] * Quits: Jesse_ (jruderman@moz-BBE3ABD.mv.mozilla.com) (Quit: Jesse_)
  428. # [02:37] * Joins: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net)
  429. # [02:37] * Joins: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP)
  430. # [02:37] * Quits: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com) (Quit: )
  431. # [02:37] <@roc> am I missing something, or is Google pushing Web developers to write Chrome-only Web apps using the Chromecast API as evil as it sounds?
  432. # [02:38] * Quits: jgilbert (jgilbert@moz-DABF6845.ph.ph.cox.net) (Ping timeout)
  433. # [02:39] * Joins: jgilbert (jgilbert@moz-DABF6845.ph.ph.cox.net)
  434. # [02:39] * Quits: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP) (Ping timeout)
  435. # [02:40] * Quits: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  436. # [02:41] * Quits: bnicholson (bnicholson@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  437. # [02:41] * Joins: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP)
  438. # [02:42] * Joins: jgilbert_ (jgilbert@moz-DABF6845.ph.ph.cox.net)
  439. # [02:42] <doublec> roc: i thought the chromecast api was for native apps
  440. # [02:42] <fabrice1> roc: hey, you can also use ios oar android!
  441. # [02:42] <fabrice1> doublec: they have a chrome extension too
  442. # [02:43] <doublec> fabrice1: ok,thanks
  443. # [02:43] * Quits: jgilbert (jgilbert@moz-DABF6845.ph.ph.cox.net) (Ping timeout)
  444. # [02:43] <@roc> so I'm not missing anything?
  445. # [02:43] * Quits: @roc (chatzilla@34E8ECDF.DC2C3734.616A18A6.IP) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 26.0/20131213131436])
  446. # [02:44] * retornam|away is now known as retornam
  447. # [02:44] * Joins: roc (chatzilla@34E8ECDF.DC2C3734.616A18A6.IP)
  448. # [02:44] * ChanServ sets mode: +o roc
  449. # [02:45] * jlund|brb is now known as jlund|buildduty
  450. # [02:46] * Quits: digitsm (digitsm@E3CB1A92.ECDB5F95.DA0107E2.IP) (Ping timeout)
  451. # [02:46] <fabrice1> roc: I don't think you're missing anything, no. They build their ecosystem
  452. # [02:46] * Joins: hub (hub@moz-E12780DE.cable.teksavvy.com)
  453. # [02:46] <@roc> they used to talk about Web standards
  454. # [02:47] * Quits: jgilbert_ (jgilbert@moz-DABF6845.ph.ph.cox.net) (Ping timeout)
  455. # [02:47] * Quits: aklotz (Thunderbir@FD1E68D2.64455FB.F97ED6F2.IP) (Ping timeout)
  456. # [02:47] * Joins: jgilbert (jgilbert@moz-DABF6845.ph.ph.cox.net)
  457. # [02:47] * Joins: aklotz (Thunderbir@FD1E68D2.64455FB.F97ED6F2.IP)
  458. # [02:48] * Quits: drno (nohlmeier@moz-BBE3ABD.mv.mozilla.com) (Quit: drno)
  459. # [02:49] * Quits: mchang (mchang@BE99BE02.84BCE52A.BCAEBB33.IP) (Quit: mchang)
  460. # [02:49] <ewong> Chrome-only Web apps are going to be the 'standard'?
  461. # [02:51] * Joins: jgilbert_ (jgilbert@moz-DABF6845.ph.ph.cox.net)
  462. # [02:51] <jcranmer> well, Google's motto is no longer "Don't be evil"
  463. # [02:52] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  464. # [02:52] * Quits: ericjung_ (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Ping timeout)
  465. # [02:52] * Quits: jgilbert (jgilbert@moz-DABF6845.ph.ph.cox.net) (Ping timeout)
  466. # [02:52] <jcranmer> presumably dropped when they realized their CEO had a degree in Evil Overlordship
  467. # [02:52] * Quits: ehugg (ehugg@moz-6D0FD3FC.cisco.com) (Quit: ehugg)
  468. # [02:53] * sfoster is now known as sfoster|afk
  469. # [02:54] * Quits: kushagra (kushagra@B9D56B0F.8F547608.520CDC98.IP) (Ping timeout)
  470. # [02:54] <@khuey> I knew I chose the wrong major
  471. # [02:54] <ewong> khuey: which major would you have chosen?
  472. # [02:54] <dholbert> ewong, see jcranmer's last message
  473. # [02:54] * Joins: spohl1 (spohl@3E146793.BE9EFD14.F02D0170.IP)
  474. # [02:54] * Quits: spohl1 (spohl@3E146793.BE9EFD14.F02D0170.IP) (Quit: spohl1)
  475. # [02:55] <ewong> OOhh.. "Evil Overlordship" ah I see
  476. # [02:55] <ewong> it's really not too late.
  477. # [02:55] * Quits: @dveditz (dveditz@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  478. # [02:55] * Quits: fabrice1 (fabrice@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  479. # [02:55] <ewong> you can always go for the Masters in Evil Overlordship, and then the PHd in Evil Overlordship
  480. # [02:56] <jcranmer> perhaps weather control was the wrong concentration...
  481. # [02:56] * jcranmer sits back and awaits the next 7" of snow
  482. # [02:57] * Quits: brendan (brendaneic@moz-BBE3ABD.mv.mozilla.com) (Quit: brendan)
  483. # [02:57] * Quits: KaiRo_away (robert@moz-10B4C2A7.adsl.highway.telekom.at) (Input/output error)
  484. # [02:57] * ewong sings "Let it snow, let it snow, let it snow."
  485. # [02:57] <bz_away> roc: they're also threatening to ship totally half-baked shadow DOM
  486. # [02:57] <@khuey> ewong: I think it's too late
  487. # [02:57] <@khuey> not sure I could handle going back to skool
  488. # [02:58] <tbsaunde> not even to be an evil overload?
  489. # [02:58] <ewong> khuey: I know what you mean.
  490. # [02:58] * Joins: dew (Instantbir@moz-D2186B13.static.stls.mo.charter.com)
  491. # [02:58] <tbsaunde> evil overlord even
  492. # [02:58] * Joins: dveditz (dveditz@moz-BBE3ABD.mv.mozilla.com)
  493. # [02:58] * ChanServ sets mode: +o dveditz
  494. # [02:58] <tbsaunde> evil overloads are more different ;)
  495. # [02:58] <@khuey> tbsaunde: I'd prefer the "or equivalent experience" route
  496. # [02:59] * Joins: bnicholson (bnicholson@moz-46A94A2D.hsd1.ca.comcast.net)
  497. # [02:59] <jcranmer> bz_away: :-/
  498. # [03:00] * Joins: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com)
  499. # [03:00] * glob|away is now known as glob
  500. # [03:00] * Joins: brson (brson@moz-BBE3ABD.mv.mozilla.com)
  501. # [03:00] <@khuey> try 1523 / 629
  502. # [03:00] * Parts: brson (brson@moz-BBE3ABD.mv.mozilla.com)
  503. # [03:00] <@khuey> guess it's dinner time
  504. # [03:00] <bz_away> man
  505. # [03:00] <bz_away> different stack sizes or something....
  506. # [03:00] <@roc> bz_away: in what way?
  507. # [03:01] <bz_away> roc: "too much recursion" JS exceptions on some platforms but not others
  508. # [03:01] <bz_away> roc: on the same code
  509. # [03:01] <bz_away> roc: with wildly different recursion depths. :(
  510. # [03:01] <bz_away> roc: e.g. https://bugzilla.mozilla.org/show_bug.cgi?id=960523
  511. # [03:01] <benjamin> could be compiler
  512. # [03:01] <bz_away> Could be
  513. # [03:01] <bz_away> Could be all sorts of things
  514. # [03:02] * ctalbert|mtg is now known as ctalbert|afk
  515. # [03:02] <@khuey> ES 22 should define a stack recursion limit
  516. # [03:02] <@roc> sorry, I meant "what's half-baked about their shadow DOM"
  517. # [03:02] <@khuey> how about 12 frmes?
  518. # [03:02] * Quits: gabor (gabor@5ED9E6DA.CB3251F2.284344F5.IP) (Ping timeout)
  519. # [03:02] <bz_away> roc: the brief summary is broken styling, broken event model
  520. # [03:03] <bz_away> roc: if I understand right
  521. # [03:03] * jlund|buildduty is now known as jlund|brb
  522. # [03:04] <jcranmer> khuey: no, 31.4 frames
  523. # [03:05] <benjamin> I suppose it's appropiate that the "shadow" DOM have shifty semantics
  524. # [03:05] <@roc> well, I hope someone's exerting pushback
  525. # [03:06] * Quits: till (till@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Client exited)
  526. # [03:06] <bz_away> "build the js engine in c++11 mode"
  527. # [03:06] <bz_away> roc: working on that happening...
  528. # [03:06] * bz_away wonders how _that_ would affect stack sizes
  529. # [03:07] <benjamin> do we not already do that?
  530. # [03:07] <bz_away> yes
  531. # [03:07] <bz_away> but that patch landed in the regression range for bug 966173
  532. # [03:07] <benjamin> ahhhhhh
  533. # [03:08] * benjamin supposes Bug 712381 should be closed
  534. # [03:08] * Joins: Optimizer (Optimizer@E5537FF4.4A165A35.BE4CF869.IP)
  535. # [03:08] <bz_away> well
  536. # [03:08] * Quits: forivall (quassel@moz-C3493F5E.vc.shawcable.net) (Client exited)
  537. # [03:08] <bz_away> "build the js engine in c++11 mode when we do that for the rest of the tree "
  538. # [03:08] * Joins: wlach_ (wlach@moz-3A83A590.vif.net)
  539. # [03:09] * Quits: diana (diana@712DFE10.413525DB.382F99D6.IP) (Quit: Konversation terminated!)
  540. # [03:09] * bz_away mutters about 64-bit processes running out of stack
  541. # [03:09] <tbsaunde> which at this point means do it everywhere I'm pretty sure
  542. # [03:09] <bz_away> tbsaunde: yeah
  543. # [03:10] * Quits: tantek (tantek@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: tantek)
  544. # [03:11] <cpearce> philor: may I borrow your orange eye? can you tell me whether the failures in B2G desktop linux x64 opt in this push are known: https://tbpl.mozilla.org/?tree=Try&rev=c97837bafed0 they don't look like my push caused them, but they've failed 5/7 so far...
  545. # [03:11] * Quits: Optimizer (Optimizer@E5537FF4.4A165A35.BE4CF869.IP) (Ping timeout)
  546. # [03:12] -lsblakk:#developers- MERGE COMPLETE
  547. # [03:13] * Quits: sunfish (chatzilla@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  548. # [03:13] <philor> cpearce: you'd find using https://hg.mozilla.org/mozilla-central/rev/cb4960e3af99 or later as a parent nicer, but that's about how they were, nothing to do with you as long as you got them to run once
  549. # [03:14] <cpearce> philor: ok thanks. You're awesome by the way.
  550. # [03:14] * Quits: @dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  551. # [03:14] <philor> :)
  552. # [03:15] * Quits: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net) (Ping timeout)
  553. # [03:15] * Quits: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net) (Quit: Computer has gone to sleep.)
  554. # [03:15] * Quits: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  555. # [03:15] * Joins: Optimizer (Optimizer@E5537FF4.4A165A35.BE4CF869.IP)
  556. # [03:16] <firebot> Check-in:
  557. # [03:16] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/53489b3e14f1 - Mats Palmgren - Bug 960822 - Limit the Shrink-To-Fit scaling for documents with a text-ish content type so that the content is still visible with extremely long lines. r=dholbert
  558. # [03:16] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/0b8fdcee7a26 - Mats Palmgren - Bug 966419 - Update the global ShrinkToFitRatio when the current page overflows and requires additional scaling to fit horizontally on the page in Print/Preview.
  559. # [03:16] * Quits: RyanVM|afk (Thunderbir@moz-4C953DE7.phlapa.fios.verizon.net) (Quit: RyanVM|afk)
  560. # [03:16] <firebot> r=dholbert
  561. # [03:17] * Joins: jhopkins (jhopkins@moz-C24292F4.public.wayport.net)
  562. # [03:17] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  563. # [03:17] * stephend is now known as stephend|train
  564. # [03:17] * Quits: @dveditz (dveditz@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  565. # [03:17] * jhopkins is now known as jhopkins|afk
  566. # [03:18] <philor> wow, this must be an impressive bunch of TinderboxPrints, loading it has hung my browser
  567. # [03:18] * Quits: grobinson (grob_@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving)
  568. # [03:18] * Quits: jammink (textual@moz-BBE3ABD.mv.mozilla.com) (Quit: Computer has gone to sleep.)
  569. # [03:19] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  570. # [03:21] <Jesse> how many times has the layout team fixed "Tinderbox logs hang Firefox" so far?
  571. # [03:21] <froydnj> loading logs feels snappier lately
  572. # [03:21] * Joins: bajaj (Adium@moz-E55DC3D0.hsd1.ca.comcast.net)
  573. # [03:22] <heycam> jdaggett was doing something about that recently
  574. # [03:22] * jgilbert_ is now known as jgilbert
  575. # [03:22] <Unfocused> maybe we can get mrc to look at it
  576. # [03:22] <Unfocused> er, nrc
  577. # [03:22] <@khuey> can't tell if joke or ...
  578. # [03:23] <Unfocused> :)
  579. # [03:23] * jlund|brb is now known as jlund
  580. # [03:23] * Joins: m_kato (m_kato@moz-C286AD9A.bitcat.net)
  581. # [03:24] * Quits: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com) (Client exited)
  582. # [03:24] * Quits: grobinson|laptop (grob_@moz-63865A26.torservers.net) (Ping timeout)
  583. # [03:24] * nrc hopes it's a joke
  584. # [03:24] * Quits: gentlefolk (chatzilla@moz-D195EAF9.cpe.teksavvy.com) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  585. # [03:24] <bz_away> nrc: in fairness, a goal for servo is to not have pages hang the browser.... ;)
  586. # [03:24] * Quits: aklotz (Thunderbir@FD1E68D2.64455FB.F97ED6F2.IP) (Ping timeout)
  587. # [03:25] * Jesse wonders how servo does on the log
  588. # [03:25] * Joins: njn_ (chatzilla@moz-EABBE4F4.dyn.iinet.net.au)
  589. # [03:25] * Quits: @njn (chatzilla@moz-DFBFE8EE.dyn.iinet.net.au) (Ping timeout)
  590. # [03:25] <froydnj> maybe we can encourage the sheriffs to use servo for their log viewing
  591. # [03:25] * njn_ is now known as njn
  592. # [03:25] <nrc> that is not what I would call a short term solution, however...
  593. # [03:26] <ewong> so there's a firefox version running on servo?
  594. # [03:26] * Quits: williecheong (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  595. # [03:26] * Quits: TimAbraldes (quassel@125EF623.B2666F0E.66399531.IP) (Input/output error)
  596. # [03:27] * heycam is now known as heycam|away
  597. # [03:27] * Joins: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com)
  598. # [03:28] * Quits: Optimizer (Optimizer@E5537FF4.4A165A35.BE4CF869.IP) (Ping timeout)
  599. # [03:28] * Joins: aklotz (Thunderbir@FD1E68D2.64455FB.F97ED6F2.IP)
  600. # [03:29] * Joins: Optimizer (Optimizer@E5537FF4.4A165A35.BE4CF869.IP)
  601. # [03:30] * Joins: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net)
  602. # [03:31] <ewong> (asked with a slight tinge of ignorance)
  603. # [03:32] * bz_away is now known as bz_sleep
  604. # [03:33] <jwalden> depends on your definition of "firefox", and of "running", and of "servo"
  605. # [03:33] * Quits: Optimizer (Optimizer@E5537FF4.4A165A35.BE4CF869.IP) (Ping timeout)
  606. # [03:33] <jwalden> images, but not much CSS, not tables yet, JS but an old version of SpiderMonkey, etc.
  607. # [03:34] * Joins: jrm2k6 (jrm2k6@moz-876091EF.sd.sd.cox.net)
  608. # [03:34] * Quits: jgilbert (jgilbert@moz-DABF6845.ph.ph.cox.net) (Ping timeout)
  609. # [03:35] * Quits: fabrice (fabrice@moz-7B0110AD.mv.mozilla.com) (Quit: Leaving.)
  610. # [03:35] * m_kato is now known as m_kato_note
  611. # [03:35] * m_kato_note is now known as m_kato_laptop
  612. # [03:35] * Joins: kushagra (kushagra@87881CC7.8762FF1A.520CDC98.IP)
  613. # [03:35] * Joins: janv (varga@B613191B.3EC5E826.4F33160D.IP)
  614. # [03:36] <Jesse> jwalden++
  615. # [03:38] * hwine-ooo is now known as hwine
  616. # [03:38] * Joins: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP)
  617. # [03:38] * Quits: miketaylr (mtaylor@moz-9CE00FC0.holiday-inn-express.mozilla.hq) (Quit: Leaving...)
  618. # [03:39] * Quits: aklotz (Thunderbir@FD1E68D2.64455FB.F97ED6F2.IP) (Ping timeout)
  619. # [03:39] <ewong> where does the 'firefox-on-top-of-servo' code reside?
  620. # [03:40] * Joins: miketaylr (mtaylor@moz-9CE00FC0.holiday-inn-express.mozilla.hq)
  621. # [03:40] * Quits: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP) (Ping timeout)
  622. # [03:40] * Joins: aklotz (Thunderbir@FD1E68D2.64455FB.F97ED6F2.IP)
  623. # [03:40] <ewong> so I'm understanding that Servo 'will eventually' replace Gecko?
  624. # [03:41] <jcranmer> ewong: Servo is an experiment
  625. # [03:42] * Joins: kinetik (kinetik@457BB45D.611C109.FC74E68.IP)
  626. # [03:42] <jcranmer> it's not necessarily going to replace Gecko
  627. # [03:43] * nthomas is now known as nthomas|away
  628. # [03:43] * Quits: kinetik (kinetik@457BB45D.611C109.FC74E68.IP) (Quit: leaving)
  629. # [03:43] * Joins: kinetik (kinetik@457BB45D.611C109.FC74E68.IP)
  630. # [03:44] * Quits: kinetik (kinetik@457BB45D.611C109.FC74E68.IP) (Quit: leaving)
  631. # [03:44] * Joins: kinetik (kinetik@457BB45D.611C109.FC74E68.IP)
  632. # [03:45] * Quits: m_kato_laptop (m_kato@moz-C286AD9A.bitcat.net) (Quit: Leaving...)
  633. # [03:45] * Joins: m_kato (m_kato@moz-C286AD9A.bitcat.net)
  634. # [03:45] * Quits: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net) (Input/output error)
  635. # [03:46] <bz_sleep> is there a way to delete things from etherpad.m.o?
  636. # [03:46] * Quits: bgrins (Adium@C7203E51.FBD8ACDB.20F09BA6.IP) (Quit: Leaving.)
  637. # [03:46] * Quits: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP) (Quit: Leaving.)
  638. # [03:47] <Jesse> including the history?
  639. # [03:47] * Quits: benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  640. # [03:47] <Jesse> admins can
  641. # [03:47] <bz_sleep> I basically created something with the wrong title
  642. # [03:47] <bz_sleep> and I'd just like to nix it, for cleanliness' sake
  643. # [03:47] <Jesse> oh, just blank it with a link to the correct spot
  644. # [03:47] <bz_sleep> not worth bothering admins about
  645. # [03:48] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/c66ebc941479 - Ben Kelly - Bug 960873: Part 1: Refactor MediaDecoderReader.h into separate headers. r=cpearce
  646. # [03:48] * Quits: kushagra (kushagra@87881CC7.8762FF1A.520CDC98.IP) (Client exited)
  647. # [03:49] * Joins: kushagra (kushagra@87881CC7.8762FF1A.520CDC98.IP)
  648. # [03:49] * nthomas|away is now known as nthomas
  649. # [03:49] <ewong> aside for bz, does anyone know who else can help me with bug 918771? It's my understanding that in order to 'fix' this bug, when accessing the URL, I should get two passes, right?
  650. # [03:49] * Quits: chewey (chewey@moz-1CD9AE65.dip0.t-ipconnect.de) (NickServ (GHOST command used by chewey_))
  651. # [03:50] * Joins: chewey (chewey@moz-89CF60F.dip0.t-ipconnect.de)
  652. # [03:50] <ewong> ( I realize bz's the mentor, but I figured someone else might know?)
  653. # [03:50] <bz_sleep> I'm sorta here
  654. # [03:51] * Quits: kushagra (kushagra@87881CC7.8762FF1A.520CDC98.IP) (Ping timeout)
  655. # [03:51] * jlund is now known as jlund|buildduty
  656. # [03:51] <bz_sleep> http://w3c-test.org/web-platform-tests/master/XMLHttpRequest/send-entity-body-document.htm should not have any FAIL
  657. # [03:51] <bz_sleep> how many PASS it has, who knows
  658. # [03:51] <ewong> bz_sleep I didn't want to bother you as you were heading to bed.
  659. # [03:51] * bz_sleep looks at test
  660. # [03:51] <@khuey> this is pretty early for bz to be sleeping :P
  661. # [03:51] <bz_sleep> Probably get 4 passes if all goes to plan?
  662. # [03:52] <bz_sleep> khuey: I got up at like 6:30 this morning
  663. # [03:52] <bz_sleep> khuey: and was up late last night...
  664. # [03:52] * Quits: jgriffin (jgriffin@moz-C55C3E25.hsd1.wa.comcast.net) (Quit: jgriffin)
  665. # [03:52] <bz_sleep> so I am in fact working on sleep here
  666. # [03:52] * bz_sleep is waiting on build
  667. # [03:52] * Joins: dbaron (dbaron@moz-B3F1D17A.dsl.dynamic.sonic.net)
  668. # [03:52] * ChanServ sets mode: +ao dbaron dbaron
  669. # [03:52] * Quits: jrm2k6 (jrm2k6@moz-876091EF.sd.sd.cox.net) (Client exited)
  670. # [03:55] * Quits: billm (billm@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving)
  671. # [03:55] <bz_sleep> ftp so broken
  672. # [03:55] * Joins: darkowlzz (sunny@68A56E83.43A0776C.25B273F5.IP)
  673. # [03:55] <bz_sleep> about 60% of my wgets get normal speed
  674. # [03:55] <bz_sleep> and the others get surreally slow speed.
  675. # [03:56] * Joins: lmandel (lmandel@moz-9CE00FC0.holiday-inn-express.mozilla.hq)
  676. # [03:56] <bz_sleep> 13s download vs 15min download...
  677. # [03:57] * Joins: gabor (gabor@88A0F8B1.7155DD53.2326E556.IP)
  678. # [03:57] * Quits: Mook_as (mook@moz-1FCC0032.activestate.com) (Quit: Mook_as)
  679. # [03:57] * Quits: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com) (Client exited)
  680. # [03:58] * Joins: Scruff (Scruff@moz-ADE1AFA5.hsd1.wa.comcast.net)
  681. # [03:59] * Quits: victorporof (victorporo@53EBB099.7C27E871.79933D60.IP) (Quit: victorporof)
  682. # [04:00] <ewong> bz_sleep atm, for the first test, I get https://pastebin.mozilla.org/4177655 as a result
  683. # [04:01] <bz_sleep> ewong: sounds like the server is buggy
  684. # [04:01] <bz_sleep> ewong: tell HAllvord?
  685. # [04:01] <bz_sleep> er, Hallvord
  686. # [04:02] * Quits: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  687. # [04:02] * Joins: benvie (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP)
  688. # [04:03] <philor> mbrubeck: any idea why dromaeo-metro would fail to start up on PGO builds?
  689. # [04:03] <mbrubeck> nope
  690. # [04:03] <philor> like... we build them disable-metro? :)
  691. # [04:03] <mbrubeck> could be
  692. # [04:03] <mbrubeck> is this on beta?
  693. # [04:03] <philor> no, trunk
  694. # [04:04] <bz_sleep> ewong: ok, sleeping for real
  695. # [04:04] * Quits: bjacob_ (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  696. # [04:04] <ewong> bz_sleep g'night! thanks!
  697. # [04:05] <philor> cat .mozconfig says... --enable-metro
  698. # [04:05] <mbrubeck> philor: Is mochitest-metro passing? If so, then --enable-metro is on...
  699. # [04:05] <philor> yup and yup
  700. # [04:05] * mbrubeck wonders when we added dromaeo-metro and whether it's ever been green
  701. # [04:06] <philor> today, and no
  702. # [04:06] <philor> but with the qualifier "on PGO"
  703. # [04:06] <mbrubeck> grr
  704. # [04:06] <philor> we spent quite a while with it on Cedar, where we probably don't do PGO
  705. # [04:07] * Quits: m_kato (m_kato@moz-C286AD9A.bitcat.net) (Quit: Leaving...)
  706. # [04:07] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Quit: Jesse)
  707. # [04:09] <philor> well, this is why we have a Testing::Talos component :)
  708. # [04:10] * Joins: RyanVM (Thunderbir@moz-4C953DE7.phlapa.fios.verizon.net)
  709. # [04:10] <mbrubeck> yeah, still no ideas here
  710. # [04:10] * Quits: miketaylr (mtaylor@moz-9CE00FC0.holiday-inn-express.mozilla.hq) (Quit: Leaving...)
  711. # [04:10] * Parts: RyanVM (Thunderbir@moz-4C953DE7.phlapa.fios.verizon.net)
  712. # [04:12] * Quits: lmandel (lmandel@moz-9CE00FC0.holiday-inn-express.mozilla.hq) (Input/output error)
  713. # [04:15] * Joins: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net)
  714. # [04:16] * Joins: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP)
  715. # [04:17] * Quits: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net) (Ping timeout)
  716. # [04:18] * Quits: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP) (Ping timeout)
  717. # [04:19] * Quits: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Quit: dealloc)
  718. # [04:19] <philor> oh, my, we enabled it on aurora? that's going to leave a mark
  719. # [04:20] * Quits: znickell1 (Thunderbir@moz-A2E993EF.dhcp.ftwo.tx.charter.com) (Connection reset by peer)
  720. # [04:20] * Joins: znickell (Thunderbir@moz-A2E993EF.dhcp.ftwo.tx.charter.com)
  721. # [04:21] * Joins: chrisccoulson (chr1s@C08D9303.9289A342.80AB4F0.IP)
  722. # [04:21] * Quits: Pike (chatzilla@moz-934D154F.pool.mediaways.net) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  723. # [04:22] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  724. # [04:23] * nsm is now known as nsm|away
  725. # [04:24] * Quits: cpeterso_ (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  726. # [04:24] * Quits: Scruff (Scruff@moz-ADE1AFA5.hsd1.wa.comcast.net) (Quit: )
  727. # [04:24] <aja> speaking of enabled on aurora...australis?
  728. # [04:25] * Joins: erahm (Adium@moz-A511F1A0.hsd1.or.comcast.net)
  729. # [04:26] * Joins: jrm2k6 (jrm2k6@moz-876091EF.sd.sd.cox.net)
  730. # [04:26] * Quits: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca) (Quit: Leaving.)
  731. # [04:27] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  732. # [04:28] * jlund|buildduty is now known as jlund|afk
  733. # [04:31] * Quits: jwalden (chatzilla@moz-BBE3ABD.mv.mozilla.com) (Quit: ChatZilla 0.9.90.1 [Firefox 29.0a1/20140128031716])
  734. # [04:31] * heycam|away is now known as heycam
  735. # [04:33] <Unfocused> australis! \o/
  736. # [04:34] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  737. # [04:34] * Quits: mreavy (chatzilla@moz-C34F24F7.phlapa.fios.verizon.net) (Ping timeout)
  738. # [04:35] * Quits: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Boriss)
  739. # [04:36] * Joins: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP)
  740. # [04:36] * Quits: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Boriss)
  741. # [04:36] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  742. # [04:39] * Joins: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP)
  743. # [04:39] * Joins: btulchinsky (btulchinsk@moz-6FFE20E8.dsl.bell.ca)
  744. # [04:40] * Quits: janv (varga@B613191B.3EC5E826.4F33160D.IP) (Quit: This computer has gone to sleep)
  745. # [04:41] * Quits: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP) (Ping timeout)
  746. # [04:41] * glob is now known as glob|away
  747. # [04:42] * Quits: glob|away (glob@moz-DF237567.glob.com.au) (Quit: urgh)
  748. # [04:42] * Quits: azakai (alon@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  749. # [04:43] <jcranmer> aja: so, what, T-10h for shrill users complaining about australis?
  750. # [04:43] * Quits: gabor (gabor@88A0F8B1.7155DD53.2326E556.IP) (Ping timeout)
  751. # [04:44] * Joins: pcwalton (pcwalton@moz-14285ACF.ptr.us.xo.net)
  752. # [04:45] * Quits: pcwalton (pcwalton@moz-14285ACF.ptr.us.xo.net) (Quit: pcwalton)
  753. # [04:45] <aja> jcranmer: T-10h?
  754. # [04:45] <aja> 10 hours?
  755. # [04:45] <jcranmer> yeah
  756. # [04:45] * Joins: pcwalton (pcwalton@moz-14285ACF.ptr.us.xo.net)
  757. # [04:46] <jcranmer> when people wake up, get a new aurora version and discover it for the first time
  758. # [04:46] * aja thinks he'll pass on reading mozillazine for a few days :)
  759. # [04:46] <jcranmer> you actually read that?
  760. # [04:46] * terrence is now known as terrence-afk
  761. # [04:46] <aja> occasionall
  762. # [04:46] * Joins: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP)
  763. # [04:46] <aja> y
  764. # [04:47] <jcranmer> I've assumed that it's basically the playground for vociferous... anti-change users
  765. # [04:47] * Quits: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net) (Ping timeout)
  766. # [04:47] * Quits: briansmith (briansmith@C11351D5.AC8EC7EA.B4C748B5.IP) (Connection reset by peer)
  767. # [04:48] <aja> jcranmer: that's a lot of it....but they find real bugs too
  768. # [04:49] <aja> jcranmer: where you at getting all that snow?
  769. # [04:49] <jcranmer> aja: Urbana, IL
  770. # [04:50] <jcranmer> the snow is supposed to hit tomorrow
  771. # [04:50] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Connection reset by peer)
  772. # [04:50] <dietrich> anyone know if you can view ranges in the hg web ui?
  773. # [04:50] * Joins: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP)
  774. # [04:50] * Joins: glob (glob@moz-DF237567.glob.com.au)
  775. # [04:51] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  776. # [04:52] * Quits: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP) (Ping timeout)
  777. # [04:52] <aja> jcranmer: left STL Fri (before the ice)....now sitting across street from spring training field
  778. # [04:52] <jcranmer> we've had snow, rain, snow, clear, snow
  779. # [04:52] * Joins: janv (varga@B613191B.3EC5E826.4F33160D.IP)
  780. # [04:53] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Quit: Leaving.)
  781. # [04:53] * nthomas is now known as nthomas|away
  782. # [04:54] <aja> with clear=frigid+gale?
  783. # [04:54] <jcranmer> I think my sense of temperature is whacked out
  784. # [04:54] * Joins: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net)
  785. # [04:54] <jcranmer> I think 20° feels nice
  786. # [04:55] <jcranmer> (20°F for all of you people using another, poorly-calibrated temperature scale as a yardstick)
  787. # [04:55] <aja> jcranmer: i know....was starting to think that's shirt-sleve weather
  788. # [04:55] <jcranmer> maybe it's the wind
  789. # [04:56] <jcranmer> being out in $INCESSANT_WIND_LAND means that you adjust your expectations of temperature for windchill
  790. # [04:56] <jcranmer> so when the wind isn't there, you'd swear the temperature was several degrees higher
  791. # [04:57] <aja> jcranmer: well....it is central ill, after all
  792. # [04:57] <jcranmer> no windbreaks between the Rockies and the Appalachains
  793. # [04:57] <aja> nope....corn & beans don't do the trick
  794. # [04:58] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Quit: lizzard)
  795. # [04:59] * Quits: jrm2k6 (jrm2k6@moz-876091EF.sd.sd.cox.net) (Client exited)
  796. # [05:00] * Quits: aklotz (Thunderbir@FD1E68D2.64455FB.F97ED6F2.IP) (Quit: aklotz)
  797. # [05:00] * Joins: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca)
  798. # [05:01] * Quits: ddahl (ddahl@8ECA0B87.AD77F8DE.D1E74241.IP) (Ping timeout)
  799. # [05:02] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Input/output error)
  800. # [05:02] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Input/output error)
  801. # [05:03] * Joins: Mook (mook@moz-9BCD4A60.dsl.teksavvy.com)
  802. # [05:04] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  803. # [05:05] * Quits: harth (harth@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  804. # [05:05] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  805. # [05:06] * glob is now known as glob|away
  806. # [05:06] * Joins: ddahl (ddahl@moz-5F89CFB9.hsd1.il.comcast.net)
  807. # [05:06] * Joins: fabrice (fabrice@moz-94F028C6.hsd1.ca.comcast.net)
  808. # [05:08] * Joins: jrm2k6 (jrm2k6@moz-876091EF.sd.sd.cox.net)
  809. # [05:08] * Joins: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net)
  810. # [05:09] * Quits: serge (Thunderbir@moz-C5779BFD.dsl.teksavvy.com) (Ping timeout)
  811. # [05:09] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Quit: surkov)
  812. # [05:10] * Joins: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net)
  813. # [05:12] * Joins: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca)
  814. # [05:12] * Quits: jrm2k6 (jrm2k6@moz-876091EF.sd.sd.cox.net) (Client exited)
  815. # [05:12] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Quit: surkov)
  816. # [05:13] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Quit: jib)
  817. # [05:13] * Quits: bajaj (Adium@moz-E55DC3D0.hsd1.ca.comcast.net) (Ping timeout)
  818. # [05:14] * Joins: bajaj (Adium@moz-E55DC3D0.hsd1.ca.comcast.net)
  819. # [05:15] * Quits: {V} (V@moz-FEE911A5.on.nl) (Quit: Leaving)
  820. # [05:16] * Quits: ddahl (ddahl@moz-5F89CFB9.hsd1.il.comcast.net) (Connection reset by peer)
  821. # [05:16] * Joins: ddahl (ddahl@moz-5F89CFB9.hsd1.il.comcast.net)
  822. # [05:17] * Quits: clokep (Instantbir@moz-1484204D.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  823. # [05:19] * nsm|away is now known as nsm
  824. # [05:19] * Quits: bajaj (Adium@moz-E55DC3D0.hsd1.ca.comcast.net) (Quit: Leaving.)
  825. # [05:20] <@khuey> so
  826. # [05:20] <@khuey> are emulator builds broken on try?
  827. # [05:21] * Joins: mkaply_ (quassel@7C1625BF.D4524C8F.BECC6F7D.IP)
  828. # [05:21] * Quits: pcwalton (pcwalton@moz-14285ACF.ptr.us.xo.net) (Quit: pcwalton)
  829. # [05:21] * Quits: m_gol (m_gol@moz-4A03F5C1.dynamic.chello.pl) (Quit: Leaving...)
  830. # [05:21] * Quits: mkaply (quassel@moz-C9667F1C.gtwncmta01.grtntx.tl.dh.suddenlink.net) (Ping timeout)
  831. # [05:22] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  832. # [05:22] * Joins: lmandel (lmandel@moz-9CE00FC0.holiday-inn-express.mozilla.hq)
  833. # [05:22] <fabrice> khuey: mine failed after 135min ...
  834. # [05:23] * Joins: Dwight_Stegall (Pony_Expre@moz-91ECCFF8.client.mchsi.com)
  835. # [05:24] <philor> are, or were?
  836. # [05:24] * Quits: lmandel (lmandel@moz-9CE00FC0.holiday-inn-express.mozilla.hq) (Ping timeout)
  837. # [05:24] <philor> mmm, gitmo
  838. # [05:24] * Quits: cpearce (chatzilla@34E8ECDF.DC2C3734.616A18A6.IP) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  839. # [05:25] <philor> the "upload_path = self.config['upload']['default'][upload_path_key] % replace_dict" bustage should be fixed now
  840. # [05:25] <philor> gitmo timeouts, who knows
  841. # [05:26] <Unfocused> gitmo? really? wow...
  842. # [05:27] <philor> hmm, or maybe try's upload_path is a separate thing
  843. # [05:27] * Quits: curiousguy13 (chatzilla@C5FB7427.548C838B.50E99975.IP) (Ping timeout)
  844. # [05:27] * Joins: curiousguy13 (chatzilla@C5FB7427.548C838B.50E99975.IP)
  845. # [05:29] * Quits: kentuckyfriedtakahe (ajones@34E8ECDF.DC2C3734.616A18A6.IP) (Input/output error)
  846. # [05:29] * glob|away is now known as glob
  847. # [05:29] * Joins: {V} (V@moz-FEE911A5.on.nl)
  848. # [05:31] <philor> khuey / fabrice : okay, *now* it should be unbusted on try
  849. # [05:31] * Quits: janv (varga@B613191B.3EC5E826.4F33160D.IP) (Quit: This computer has gone to sleep)
  850. # [05:31] * Quits: {V} (V@moz-FEE911A5.on.nl) (Ping timeout)
  851. # [05:33] * Joins: grobinson|laptop (grob_@C9F6759B.4ECB6E59.9CA145E9.IP)
  852. # [05:34] * jchen|away is now known as jchen
  853. # [05:34] * Joins: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP)
  854. # [05:36] * nsm is now known as nsm|away
  855. # [05:37] <glob> who looks after brakpad/crashdumps. i received an email from symantec asking for access to some raw dumps to help track down an issue they are having trouble reproducing
  856. # [05:37] <glob> ?
  857. # [05:37] * Quits: ewong (chatzilla@moz-20A71729.net) (Connection reset by peer)
  858. # [05:38] <@khuey> glob: forward it to ted?
  859. # [05:38] <glob> khuey, k, thanks
  860. # [05:39] * Joins: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP)
  861. # [05:39] * Joins: ewong (chatzilla@moz-20A71729.net)
  862. # [05:41] * Joins: jgilbert (jgilbert@moz-DABF6845.ph.ph.cox.net)
  863. # [05:45] * Quits: darkowlzz (sunny@68A56E83.43A0776C.25B273F5.IP) (Ping timeout)
  864. # [05:47] * Joins: raccettura (raccettura@moz-593234EE.nwrknj.fios.verizon.net)
  865. # [05:48] * Quits: raccettura (raccettura@moz-593234EE.nwrknj.fios.verizon.net) (Quit: raccettura)
  866. # [05:51] * Joins: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com)
  867. # [05:51] * Joins: darkowlzz (sunny@47342535.4E83E3A4.27560D6E.IP)
  868. # [05:54] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Input/output error)
  869. # [05:54] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Input/output error)
  870. # [05:54] * Quits: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: gwagner)
  871. # [05:55] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  872. # [05:55] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  873. # [05:56] * Quits: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net) (Quit: Computer has gone to sleep.)
  874. # [05:57] * Quits: elan (elancaster@moz-1C4F0CAA.dhcp.rvsd.ca.charter.com) (Quit: elan)
  875. # [05:57] * Quits: ddahl (ddahl@moz-5F89CFB9.hsd1.il.comcast.net) (Connection reset by peer)
  876. # [05:58] * Joins: ddahl (ddahl@moz-5F89CFB9.hsd1.il.comcast.net)
  877. # [05:58] * Joins: lmandel (lmandel@moz-9CE00FC0.holiday-inn-express.mozilla.hq)
  878. # [05:59] * Joins: miketaylr (mtaylor@moz-9CE00FC0.holiday-inn-express.mozilla.hq)
  879. # [06:00] * Quits: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com) (Input/output error)
  880. # [06:00] * Quits: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com) (Input/output error)
  881. # [06:00] * Joins: gwagner (Gregor@moz-6E0BFB62.dsl.sta.abo.bbox.fr)
  882. # [06:01] * Joins: sawrubh|bot (~sawrubhbo@moz-E0F149F7.members.linode.com)
  883. # [06:01] * Quits: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca) (Quit: Leaving.)
  884. # [06:01] * Joins: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca)
  885. # [06:02] * Joins: soumyaC1 (soumyaC@moz-E0F149F7.members.linode.com)
  886. # [06:03] * Joins: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  887. # [06:03] * Joins: jduell_ (jduell@moz-2B2B9F2.hsd1.wa.comcast.net)
  888. # [06:03] * Quits: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca) (Input/output error)
  889. # [06:04] * Joins: maxli (maxli@moz-B19F68ED.student.cs.uwaterloo.ca)
  890. # [06:04] * Quits: ekr (ekr@moz-D7997EC8.rtfm.com) (Ping timeout)
  891. # [06:04] * ekr_ is now known as ekr
  892. # [06:04] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  893. # [06:04] * Quits: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net) (Ping timeout)
  894. # [06:04] * Quits: Matti (Matti@moz-FDA096A4.dip0.t-ipconnect.de) (Ping timeout)
  895. # [06:05] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  896. # [06:05] * nsm|away is now known as nsm
  897. # [06:08] * Joins: Matti (Matti@moz-725A5D4C.dip0.t-ipconnect.de)
  898. # [06:08] * Joins: bajaj (Adium@moz-E55DC3D0.hsd1.ca.comcast.net)
  899. # [06:18] * Quits: Dwight_Stegall (Pony_Expre@moz-91ECCFF8.client.mchsi.com) (Quit: Damn, I ran out of Mountain Dew! BRB :))
  900. # [06:20] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/96f918d5006d - Timothy Nikkel - Bug 962791. Fail to create a scrollable layer if it would cause incorrect clipping of absolutely position items. r=roc
  901. # [06:21] * Joins: gabor (gabor@88A0F8B1.7155DD53.2326E556.IP)
  902. # [06:23] * Quits: Hughman (Mibbit@DF0C90CA.D2C20E22.A3B82EC7.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  903. # [06:24] * Quits: Miranda (chatzilla@7EA5AB88.DC2C3734.616A18A6.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  904. # [06:26] * Quits: miketaylr (mtaylor@moz-9CE00FC0.holiday-inn-express.mozilla.hq) (Quit: Linkinus - http://linkinus.com)
  905. # [06:26] * Joins: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net)
  906. # [06:26] * Joins: miketaylr (mtaylor@moz-9CE00FC0.holiday-inn-express.mozilla.hq)
  907. # [06:27] * Quits: miketaylr (mtaylor@moz-9CE00FC0.holiday-inn-express.mozilla.hq) (Quit: Linkinus - http://linkinus.com)
  908. # [06:27] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  909. # [06:28] * Quits: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net) (Ping timeout)
  910. # [06:29] * Joins: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net)
  911. # [06:35] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/19b6dfafd05c - Nicholas Nethercote - Bug 964238 (part 2) - Remove AutoStringRooter, because it's no longer used. r=terrence.
  912. # [06:35] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/f88ba0e5e3b1 - Nicholas Nethercote - Bug 964238 (part 1) - Remove JSStableString and StableTwoByteChars. r=terrence.
  913. # [06:37] * Quits: @roc (chatzilla@34E8ECDF.DC2C3734.616A18A6.IP) (Ping timeout)
  914. # [06:38] * Joins: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  915. # [06:38] * jchen is now known as jchen|away
  916. # [06:38] * hwine is now known as hwine-ooo
  917. # [06:40] * Parts: aja (Instantbir@67322088.783FD75.C36B37E4.IP)
  918. # [06:44] * Quits: Mook (mook@moz-9BCD4A60.dsl.teksavvy.com) (Quit: Mook)
  919. # [06:46] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  920. # [06:48] * Joins: drno (nohlmeier@moz-8C24FDC2.hsd1.ca.comcast.net)
  921. # [06:48] * Quits: drno (nohlmeier@moz-8C24FDC2.hsd1.ca.comcast.net) (Quit: drno)
  922. # [06:50] * Joins: Dwight_Stegall (Pony_Expre@moz-91ECCFF8.client.mchsi.com)
  923. # [06:50] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  924. # [06:50] * Joins: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net)
  925. # [06:51] * Joins: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP)
  926. # [06:52] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Ping timeout)
  927. # [06:53] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Quit: jib)
  928. # [06:55] * heycam is now known as heycam|away
  929. # [06:59] * Quits: maxli (maxli@moz-B19F68ED.student.cs.uwaterloo.ca) (Quit: Leaving.)
  930. # [06:59] * Joins: maxli (maxli@moz-B19F68ED.student.cs.uwaterloo.ca)
  931. # [06:59] * Joins: janv (varga@B613191B.3EC5E826.4F33160D.IP)
  932. # [06:59] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  933. # [07:01] * Quits: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  934. # [07:02] * Quits: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net) (Quit: Computer has gone to sleep.)
  935. # [07:02] * jchen|away is now known as jchen
  936. # [07:03] * jcranmer is now known as jcranmer|away
  937. # [07:04] * Joins: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com)
  938. # [07:04] * Joins: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com)
  939. # [07:06] * Quits: njn (chatzilla@moz-EABBE4F4.dyn.iinet.net.au) (Quit: ChatZilla 0.9.90.1 [Firefox 29.0a1/20140121181344])
  940. # [07:07] * Quits: chrisccoulson (chr1s@C08D9303.9289A342.80AB4F0.IP) (Ping timeout)
  941. # [07:08] * Quits: curiousguy13 (chatzilla@C5FB7427.548C838B.50E99975.IP) (Ping timeout)
  942. # [07:08] * Callek is now known as Callek_disconnected
  943. # [07:10] <philor> tn: what is this IsAbsolutelyPositioned of which you speak?
  944. # [07:11] <tn> philor: hmm, thats odd
  945. # [07:11] * Quits: jduell_ (jduell@moz-2B2B9F2.hsd1.wa.comcast.net) (Ping timeout)
  946. # [07:13] <tn> oh, guess i need to include nsIFrameInlines.h
  947. # [07:14] <philor> do we do unified for debug Mac, or does it have some other excuse for having survived?
  948. # [07:14] * Quits: lmandel (lmandel@moz-9CE00FC0.holiday-inn-express.mozilla.hq) (Input/output error)
  949. # [07:14] * Quits: gabor (gabor@88A0F8B1.7155DD53.2326E556.IP) (Ping timeout)
  950. # [07:15] * Joins: arasbm2 (zooby@moz-8E336844.vf.shawcable.net)
  951. # [07:15] * Quits: arasbm1 (zooby@moz-8E336844.vf.shawcable.net) (Connection reset by peer)
  952. # [07:15] * Joins: gabor (gabor@88A0F8B1.7155DD53.2326E556.IP)
  953. # [07:15] <tn> philor: i'm not really sure
  954. # [07:16] <philor> or maybe that odd error warning warnings as errors means using it without it being defined is merely a warning, but as-error?
  955. # [07:16] * Quits: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  956. # [07:16] * philor looks around for something he actually understands instead
  957. # [07:16] * Joins: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com)
  958. # [07:18] <tn> philor: i'm not sure. i'm more inclined to just push the obvious include fix and not worry about it. would you object to that?
  959. # [07:18] <philor> go ahead
  960. # [07:19] * Quits: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com) (Ping timeout)
  961. # [07:20] * Joins: curiousguy13 (chatzilla@C5FB7427.548C838B.50E99975.IP)
  962. # [07:20] * Joins: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com)
  963. # [07:21] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/91971a2ab3bb - Timothy Nikkel - Bug 962791. Include nsIFrameInlines.h so linux debug build doesn't complain about missing IsAbsolutelyPositioned. r=me on a CLOSED TREE
  964. # [07:22] * khuey is now known as khuey|away
  965. # [07:23] * Quits: grobinson|laptop (grob_@C9F6759B.4ECB6E59.9CA145E9.IP) (Ping timeout)
  966. # [07:24] * jchen is now known as jchen|away
  967. # [07:25] * Joins: nl (nicklebede@moz-29D843ED.net151.n37.ru)
  968. # [07:25] * Joins: BigBro (BigBro@moz-61EA4B93.fbx.proxad.net)
  969. # [07:26] * Quits: darkowlzz (sunny@47342535.4E83E3A4.27560D6E.IP) (Quit: This computer has gone to sleep)
  970. # [07:28] * Quits: wlach_ (wlach@moz-3A83A590.vif.net) (Ping timeout)
  971. # [07:30] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/e99fd1631c09 - Monica Chew - Bug 967298: Make nsIX509CertList instantiable (r=briansmith)
  972. # [07:30] * Quits: cers (csonne@C6F88941.4B6984D7.192BA9D5.IP) (Connection reset by peer)
  973. # [07:30] * Joins: cers_ (csonne@C6F88941.4B6984D7.192BA9D5.IP)
  974. # [07:30] * Joins: ^BigBro (BigBro@moz-61EA4B93.fbx.proxad.net)
  975. # [07:32] * Quits: karl (karl@34E8ECDF.DC2C3734.616A18A6.IP) (Ping timeout)
  976. # [07:34] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  977. # [07:34] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  978. # [07:34] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/88c2a89f0d47 - ffxbld - Automated checkin: version bump for fennec 28.0b1 release. DONTBUILD CLOSED TREE a=release
  979. # [07:34] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/951cd2dd1c86 - ffxbld - Added FENNEC_28_0b1_RELEASE FENNEC_28_0b1_BUILD1 tag(s) for changeset 88c2a89f0d47. DONTBUILD CLOSED TREE a=release
  980. # [07:34] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/19c8d94b490b - ffxbld - Added FIREFOX_28_0b1_RELEASE FIREFOX_28_0b1_BUILD1 tag(s) for changeset d532405dd958. DONTBUILD CLOSED TREE a=release
  981. # [07:34] <firebot> http://hg.mozilla.org/releases/mozilla-beta/rev/d532405dd958 - ffxbld - Automated checkin: version bump for firefox 28.0b1 release. DONTBUILD CLOSED TREE a=release
  982. # [07:35] * Quits: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com) (Client exited)
  983. # [07:35] * Joins: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net)
  984. # [07:38] * Quits: squib (squib@moz-5175C098.dhcp.mdsn.wi.charter.com) (Quit: Leaving)
  985. # [07:38] * Quits: bajaj (Adium@moz-E55DC3D0.hsd1.ca.comcast.net) (Quit: Leaving.)
  986. # [07:39] * Quits: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  987. # [07:39] * Joins: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com)
  988. # [07:40] * Quits: cers_ (csonne@C6F88941.4B6984D7.192BA9D5.IP) (Ping timeout)
  989. # [07:42] * Joins: cers (csonne@965B4807.AAD27CA2.192BA9D5.IP)
  990. # [07:43] * Joins: Jerry (hshih@moz-AE383FC4.dynamic.kbronet.com.tw)
  991. # [07:44] * Joins: lmandel (lmandel@moz-9CE00FC0.holiday-inn-express.mozilla.hq)
  992. # [07:49] * Quits: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net) (Input/output error)
  993. # [07:50] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  994. # [07:51] * Quits: lmandel (lmandel@moz-9CE00FC0.holiday-inn-express.mozilla.hq) (Ping timeout)
  995. # [07:51] * Quits: maxli (maxli@moz-B19F68ED.student.cs.uwaterloo.ca) (Quit: Leaving.)
  996. # [07:54] * Joins: grobinson|laptop (grob_@5111E561.2C9B3718.5B998C92.IP)
  997. # [07:54] * Quits: gabor (gabor@88A0F8B1.7155DD53.2326E556.IP) (Ping timeout)
  998. # [07:54] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  999. # [07:54] * Joins: gabor (gabor@88A0F8B1.7155DD53.2326E556.IP)
  1000. # [07:55] * Joins: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de)
  1001. # [07:59] * Joins: Dwight_Stegall_ (Pony_Expre@moz-91ECCFF8.client.mchsi.com)
  1002. # [07:59] * Quits: Dwight_Stegall_ (Pony_Expre@moz-91ECCFF8.client.mchsi.com) (Quit: Damn, I ran out of Mountain Dew! BRB :))
  1003. # [08:04] * Tomcat|afk is now known as Tomcat|sheriffduty
  1004. # [08:05] * Joins: karl (karl@moz-C433B975.jetstream.xtra.co.nz)
  1005. # [08:05] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  1006. # [08:05] * Quits: gwagner (Gregor@moz-6E0BFB62.dsl.sta.abo.bbox.fr) (Quit: gwagner)
  1007. # [08:06] * Joins: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net)
  1008. # [08:07] * Quits: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net) (Ping timeout)
  1009. # [08:07] * Quits: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com) (Input/output error)
  1010. # [08:08] * Joins: jviereck (Adium@moz-56DDD13.dip0.t-ipconnect.de)
  1011. # [08:08] * Joins: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1012. # [08:08] * Joins: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net)
  1013. # [08:08] * Joins: adalucinet (Mibbit@28C4EA76.976FBEE.5BC07656.IP)
  1014. # [08:09] * Quits: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: gwagner)
  1015. # [08:10] * Quits: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net) (Input/output error)
  1016. # [08:10] * Quits: Mossop (dtownsend@53343B0D.8DCA2D5.5E2862A8.IP) (Quit: This computer has gone to sleep)
  1017. # [08:12] * Quits: curiousguy13 (chatzilla@C5FB7427.548C838B.50E99975.IP) (Connection reset by peer)
  1018. # [08:13] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Quit: lizzard)
  1019. # [08:13] * Joins: curiousguy13 (chatzilla@3D02806B.81E40E6E.50E99975.IP)
  1020. # [08:13] * Quits: gabor (gabor@88A0F8B1.7155DD53.2326E556.IP) (Ping timeout)
  1021. # [08:16] * Joins: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net)
  1022. # [08:16] * Joins: RealRaven (Thunderbir@94DC1789.FAD15229.C3498625.IP)
  1023. # [08:19] * Quits: jviereck (Adium@moz-56DDD13.dip0.t-ipconnect.de) (Quit: Leaving.)
  1024. # [08:20] * Joins: jviereck (Adium@moz-56DDD13.dip0.t-ipconnect.de)
  1025. # [08:20] * Quits: Dwight_Stegall (Pony_Expre@moz-91ECCFF8.client.mchsi.com) (Quit: Damn, I ran out of Mountain Dew! BRB :))
  1026. # [08:20] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  1027. # [08:20] * Joins: victorporof (victorporo@53EBB099.7C27E871.79933D60.IP)
  1028. # [08:20] * Joins: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl)
  1029. # [08:21] * Quits: RealRaven (Thunderbir@94DC1789.FAD15229.C3498625.IP) (Ping timeout)
  1030. # [08:21] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  1031. # [08:22] * philor is now known as philor|away
  1032. # [08:24] * Joins: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1033. # [08:25] * Joins: RealRaven (Thunderbir@94DC1789.FAD15229.C3498625.IP)
  1034. # [08:25] * Quits: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: gwagner)
  1035. # [08:26] * Quits: grobinson|laptop (grob_@5111E561.2C9B3718.5B998C92.IP) (Ping timeout)
  1036. # [08:27] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Ping timeout)
  1037. # [08:27] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  1038. # [08:28] * Joins: darkowlzz (sunny@47342535.4E83E3A4.27560D6E.IP)
  1039. # [08:29] * Joins: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1040. # [08:30] * Quits: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Ping timeout)
  1041. # [08:31] * Quits: jviereck (Adium@moz-56DDD13.dip0.t-ipconnect.de) (Quit: Leaving.)
  1042. # [08:32] * Quits: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: gwagner)
  1043. # [08:32] * Joins: gcp (gcp@moz-9CEB1C98.access.telenet.be)
  1044. # [08:33] * Joins: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP)
  1045. # [08:34] * Quits: snorp (snorp@28435C98.1C2164C0.BFE160B4.IP) (Ping timeout)
  1046. # [08:34] * Joins: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1047. # [08:35] * Joins: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  1048. # [08:36] * Joins: TheCrap (TheCrap@moz-D1D19B28.unity-media.net)
  1049. # [08:36] * Joins: mihaelav (Mibbit@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP)
  1050. # [08:37] * Joins: Optimizer1 (Instantbir@4F3E1057.A6DE773B.88FACCAA.IP)
  1051. # [08:38] * Quits: Optimizer1 (Instantbir@4F3E1057.A6DE773B.88FACCAA.IP) (Input/output error)
  1052. # [08:38] * Quits: jonasfj (jonasfj@moz-F9C6FBE1.hsd1.ca.comcast.net) (Ping timeout)
  1053. # [08:38] * Joins: Optimize1 (Instantbir@4F3E1057.A6DE773B.88FACCAA.IP)
  1054. # [08:38] * Joins: bent (chatzilla@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1055. # [08:40] * Quits: jesup_mac (chatzilla@moz-C34F24F7.phlapa.fios.verizon.net) (Ping timeout)
  1056. # [08:40] * Quits: nl (nicklebede@moz-29D843ED.net151.n37.ru) (Ping timeout)
  1057. # [08:41] * Joins: nl (nicklebede@moz-29D843ED.net151.n37.ru)
  1058. # [08:42] * nsm is now known as nsm|away
  1059. # [08:45] * Joins: soreau (tabeaux@moz-6626C024.clsp.qwest.net)
  1060. # [08:46] * Quits: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP) (Ping timeout)
  1061. # [08:46] * Quits: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  1062. # [08:47] * Joins: AndreeaMatei (Thunderbir@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP)
  1063. # [08:48] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Client exited)
  1064. # [08:48] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/3425d772b2ba - Cameron McCormack - Bug 935056 - Don't apply minimum font sizes to SVG text. r=dbaron
  1065. # [08:48] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  1066. # [08:48] * Quits: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP) (Quit: brendan)
  1067. # [08:50] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Ping timeout)
  1068. # [08:50] * Quits: jgilbert (jgilbert@moz-DABF6845.ph.ph.cox.net) (Ping timeout)
  1069. # [08:51] * Joins: mreavy (chatzilla@moz-C34F24F7.phlapa.fios.verizon.net)
  1070. # [08:51] * Joins: digitsm (digitsm@317B2848.30A8562C.C146C5E5.IP)
  1071. # [08:56] * Joins: recursive (recursive@8D5990FC.E930F64F.547774E7.IP)
  1072. # [09:00] * Joins: jaoo (user@9B16F31C.CF111F0B.E21948B5.IP)
  1073. # [09:01] * Joins: tedders1 (tedders1@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1074. # [09:02] * Joins: Pike (chatzilla@moz-934D154F.pool.mediaways.net)
  1075. # [09:02] * Joins: fredw (Icedove@moz-B9C110E2.fbx.proxad.net)
  1076. # [09:04] * Quits: jesup (chatzilla@moz-C34F24F7.phlapa.fios.verizon.net) (Ping timeout)
  1077. # [09:04] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  1078. # [09:04] * Joins: kaze (kaze@moz-F6A8D8D3.fbx.proxad.net)
  1079. # [09:05] * Quits: @dbaron (dbaron@moz-B3F1D17A.dsl.dynamic.sonic.net) (Ping timeout)
  1080. # [09:07] * bc is now known as bc|afk
  1081. # [09:09] * Quits: nattokirai (nattokirai@moz-C286AD9A.bitcat.net) (Quit: nattokirai)
  1082. # [09:09] * Joins: jesup (chatzilla@moz-C34F24F7.phlapa.fios.verizon.net)
  1083. # [09:09] * nrc is now known as nrc|afk
  1084. # [09:10] * Joins: jhorak (jhorak@moz-107AD163.redhat.com)
  1085. # [09:12] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  1086. # [09:13] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  1087. # [09:14] * Fallen|away is now known as Fallen
  1088. # [09:15] * Quits: gcp (gcp@moz-9CEB1C98.access.telenet.be) (Ping timeout)
  1089. # [09:16] * Quits: TheCrap (TheCrap@moz-D1D19B28.unity-media.net) (Ping timeout)
  1090. # [09:17] * Joins: tzimmermann (tzimmerman@moz-ED2B34EA.pools.arcor-ip.net)
  1091. # [09:21] * Quits: baku|away (baku@moz-4038023A.ghst.net) (Ping timeout)
  1092. # [09:22] * Joins: baku (baku@moz-4038023A.ghst.net)
  1093. # [09:22] * Quits: Optimize1 (Instantbir@4F3E1057.A6DE773B.88FACCAA.IP) (Ping timeout)
  1094. # [09:22] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Quit: Leaving.)
  1095. # [09:23] * Joins: victorporof_ (victorporo@53EBB099.7C27E871.79933D60.IP)
  1096. # [09:25] * Quits: victorporof (victorporo@53EBB099.7C27E871.79933D60.IP) (Ping timeout)
  1097. # [09:26] * Quits: digitsm (digitsm@317B2848.30A8562C.C146C5E5.IP) (Ping timeout)
  1098. # [09:29] * Joins: gcp (gcp@moz-9CEB1C98.access.telenet.be)
  1099. # [09:29] * Joins: digitsm (digitsm@8B661362.8A09501.C146C5E5.IP)
  1100. # [09:31] <soreau> I am trying to build the browser with gtk3 on linux but it fails to link libxul.so http://hastebin.com/raw/sovifeqigu
  1101. # [09:32] <soreau> It seems the errors originate from a local copy of ld and not the system one which I don't completely understand:
  1102. # [09:32] <soreau> ../../build/unix/gold/ld: error: read-only segment has dynamic relocations
  1103. # [09:32] * Quits: jesup (chatzilla@moz-C34F24F7.phlapa.fios.verizon.net) (Ping timeout)
  1104. # [09:35] * Quits: ^BigBro (BigBro@moz-61EA4B93.fbx.proxad.net) (Ping timeout)
  1105. # [09:35] * Quits: BigBro (BigBro@moz-61EA4B93.fbx.proxad.net) (Ping timeout)
  1106. # [09:35] * whimboo|afk is now known as whimboo
  1107. # [09:36] * Quits: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com) (Ping timeout)
  1108. # [09:36] * Joins: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com)
  1109. # [09:39] * Joins: C4RNAGE (Anders@moz-980F7CD3.bb.online.no)
  1110. # [09:39] * Quits: jhopkins|afk (jhopkins@moz-C24292F4.public.wayport.net) (Ping timeout)
  1111. # [09:40] * Quits: digitsm (digitsm@8B661362.8A09501.C146C5E5.IP) (Ping timeout)
  1112. # [09:40] * Joins: jhopkins (jhopkins@moz-C24292F4.public.wayport.net)
  1113. # [09:43] * Joins: jesup (chatzilla@moz-C34F24F7.phlapa.fios.verizon.net)
  1114. # [09:43] * Joins: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com)
  1115. # [09:46] * Quits: jesup (chatzilla@moz-C34F24F7.phlapa.fios.verizon.net) (Connection reset by peer)
  1116. # [09:50] * glob is now known as glob|away
  1117. # [09:53] * Quits: nl (nicklebede@moz-29D843ED.net151.n37.ru) (Ping timeout)
  1118. # [09:53] * Joins: nl (nicklebede@moz-29D843ED.net151.n37.ru)
  1119. # [09:55] * Quits: nl (nicklebede@moz-29D843ED.net151.n37.ru) (Quit: )
  1120. # [09:55] * Joins: nl (nicklebede@moz-29D843ED.net151.n37.ru)
  1121. # [09:56] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  1122. # [09:56] * Quits: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: gwagner)
  1123. # [10:01] * Joins: sewardj (sewardj@moz-CE0B8423.dip0.t-ipconnect.de)
  1124. # [10:01] * Fallen is now known as Fallen|away
  1125. # [10:01] * Joins: squeakytoy (squeakytoy@7061EEAD.41CBD7B1.148A607A.IP)
  1126. # [10:03] * Joins: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1127. # [10:04] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  1128. # [10:08] * Quits: kaze (kaze@moz-F6A8D8D3.fbx.proxad.net) (Ping timeout)
  1129. # [10:08] * Joins: jackneill (jackneill@moz-2A74CDA9.pool.digikabel.hu)
  1130. # [10:09] * Joins: Optimizer (Instantbir@94C77FC6.955079FB.AA3EB577.IP)
  1131. # [10:09] * pmoore|away is now known as pmoore
  1132. # [10:12] * Quits: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro) (Ping timeout)
  1133. # [10:14] * Quits: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net) (Ping timeout)
  1134. # [10:15] * Joins: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  1135. # [10:17] <nl> hi guys, i've just synced to revision with description "Tagging for mozilla-central version bumps NO BUG CLOSED TREE DONTBUILD"
  1136. # [10:18] <nl> what does DONBUILD stand for ?
  1137. # [10:18] * Joins: jesup (chatzilla@moz-C34F24F7.phlapa.fios.verizon.net)
  1138. # [10:18] <nl> will the built tree work fine or it won't built at all ?
  1139. # [10:19] <Tomcat|sheriffduty> nl: its just a message for the buildbot system to push no new build for it
  1140. # [10:19] <ewong> iirc, DONTBUILD tells the builders not to build the tree.
  1141. # [10:19] <Tomcat|sheriffduty> yep
  1142. # [10:19] <ewong> what Tomcat said
  1143. # [10:19] <ewong> Quick draw sheriff :)
  1144. # [10:19] <Tomcat|sheriffduty> :)
  1145. # [10:19] <Tomcat|sheriffduty> nl: normally for every change builds are generated like here https://tbpl.mozilla.org/?tree=Mozilla-Inbound
  1146. # [10:20] <nl> ah ok, thanks :)
  1147. # [10:20] <Tomcat|sheriffduty> since this was just tagging and version bump and no code change there is no need to burn maschine build time :)
  1148. # [10:23] * Quits: jaoo (user@9B16F31C.CF111F0B.E21948B5.IP) (Ping timeout)
  1149. # [10:23] * Joins: lzzluca (lzzluca@moz-10429979.static.virginmediabusiness.co.uk)
  1150. # [10:24] * Joins: h4writer (h4writer@moz-957FCBC.access.telenet.be)
  1151. # [10:24] * Joins: jaoo (user@moz-4627CA51.red-79-159-204.staticip.rima-tde.net)
  1152. # [10:25] * Joins: Optimizer1 (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP)
  1153. # [10:26] * Quits: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl) (Quit: Leaving)
  1154. # [10:26] * Quits: Optimizer (Instantbir@94C77FC6.955079FB.AA3EB577.IP) (Ping timeout)
  1155. # [10:28] * Quits: gcp (gcp@moz-9CEB1C98.access.telenet.be) (Ping timeout)
  1156. # [10:33] * Joins: MarcoZ (marco.zehe@moz-2A100193.dip0.t-ipconnect.de)
  1157. # [10:33] * Quits: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  1158. # [10:34] * Quits: karl (karl@moz-C433B975.jetstream.xtra.co.nz) (Ping timeout)
  1159. # [10:35] * Quits: adalucinet (Mibbit@28C4EA76.976FBEE.5BC07656.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1160. # [10:35] * Joins: gerv (Instantbir@moz-8E68CF56.in-addr.arpa)
  1161. # [10:36] * Quits: yury (yury@moz-86474802.ok.ok.cox.net) (Ping timeout)
  1162. # [10:36] * Joins: yury (yury@moz-86474802.ok.ok.cox.net)
  1163. # [10:39] * mattwoodrow is now known as mattwoodrow|away
  1164. # [10:41] * Joins: msucan (mihai@70F900A.1CE56E7B.C0E37CF3.IP)
  1165. # [10:42] * Quits: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com) (Ping timeout)
  1166. # [10:42] * Joins: smaug (chatzilla@moz-9E0B1701.pp.htv.fi)
  1167. # [10:42] * ChanServ sets mode: +o smaug
  1168. # [10:42] * Joins: gcp (gcp@moz-9CEB1C98.access.telenet.be)
  1169. # [10:44] * Joins: adalucinet (Mibbit@28C4EA76.976FBEE.5BC07656.IP)
  1170. # [10:45] * Joins: Optimizer (Instantbir@94C77FC6.955079FB.AA3EB577.IP)
  1171. # [10:45] * Joins: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com)
  1172. # [10:46] * Joins: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl)
  1173. # [10:47] * Quits: Rik (rik@moz-E813DFA5.fbx.proxad.net) (Input/output error)
  1174. # [10:49] * Joins: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP)
  1175. # [10:51] * Quits: nrc|afk (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  1176. # [10:56] * Quits: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl) (Quit: Leaving)
  1177. # [10:58] * Joins: smontagu (chatzilla@88F51059.F3BBB17D.144F44FA.IP)
  1178. # [10:59] * Quits: jaoo (user@moz-4627CA51.red-79-159-204.staticip.rima-tde.net) (Ping timeout)
  1179. # [10:59] * Quits: alexis (alexis@moz-261A0603.lolnet.org) (Quit: oh yeah !)
  1180. # [11:00] * Joins: hexman (hexman@moz-27F37946.net55.n37.ru)
  1181. # [11:00] * Quits: squeakytoy (squeakytoy@7061EEAD.41CBD7B1.148A607A.IP) (Quit: Leaving)
  1182. # [11:01] * Joins: alexis (alexis@moz-261A0603.lolnet.org)
  1183. # [11:01] * Joins: andreasn (andreasn@moz-846D011E.redhat.com)
  1184. # [11:02] * Joins: kaze (kaze@DA4ABEAF.1DE10CA8.D8E68FF6.IP)
  1185. # [11:02] * Joins: gaurav231 (Thunderbir@18122A85.88801528.FD6A0EFF.IP)
  1186. # [11:04] * Joins: jaoo (user@moz-4627CA51.red-79-159-204.staticip.rima-tde.net)
  1187. # Session Close: Tue Feb 04 11:08:21 2014
  1188. #
  1189. # Session Start: Tue Feb 04 11:08:21 2014
  1190. # Session Ident: #developers
  1191. # [11:08] * Disconnected
  1192. # [11:29] * Attempting to rejoin channel #developers
  1193. # [11:29] * Rejoined channel #developers
  1194. # [11:29] * Topic is 'Next uplift 3 Feb || Want help, or want to help others? See #introduction || http://logbot.glob.com.au/?c=developers'
  1195. # [11:29] * Set by philor on Mon Dec 09 20:42:07
  1196. # [11:29] * Joins: btm_work (btm@moz-2160AA7C.sakura.ne.jp)
  1197. # [11:29] * Joins: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP)
  1198. # [11:29] * Joins: philikon (pweitersha@moz-CED54CE5.boerde.de)
  1199. # [11:29] * Joins: nl (nicklebede@moz-29D843ED.net151.n37.ru)
  1200. # [11:29] * Joins: benvie (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP)
  1201. # [11:29] * Joins: afwang (nooknook@moz-CFE05FEE.hsd1.ca.comcast.net)
  1202. # [11:29] * Joins: vladan (vladan@13F2CEC5.7672369.D8E68FF6.IP)
  1203. # [11:29] * Joins: Luqman (laden@moz-AB7945E9.csclub.uwaterloo.ca)
  1204. # [11:29] * Joins: tn (tim@moz-2E73ACE4.wp.shawcable.net)
  1205. # [11:29] * Joins: rillian (giles@moz-29D892D2.osuosl.org)
  1206. # [11:29] * Joins: botond (botond@13F2CEC5.7672369.D8E68FF6.IP)
  1207. # [11:29] * Joins: soreau (soreau@moz-6626C024.clsp.qwest.net)
  1208. # [11:29] * Joins: sewardj (sewardj@moz-CE0B8423.dip0.t-ipconnect.de)
  1209. # [11:29] * Joins: eeejay (eeejay@moz-B3973587.xen.prgmr.com)
  1210. # [11:30] * Joins: fabrice (fabrice@moz-94F028C6.hsd1.ca.comcast.net)
  1211. # [11:30] * Joins: vchang (Vincent@moz-99690620.hinet-ip.hinet.net)
  1212. # [11:30] * baku is now known as baku|away
  1213. # [11:30] * Joins: qDot (qdot@moz-82DD3414.typefuck.com)
  1214. # [11:30] * Joins: lgarner (lgarner@2D337F52.2D31AF7B.5AEB50C4.IP)
  1215. # [11:30] * Joins: smontagu (chatzilla@88F51059.F3BBB17D.144F44FA.IP)
  1216. # [11:30] * Joins: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  1217. # [11:30] * Joins: squeakytoy (squeakytoy@7061EEAD.41CBD7B1.148A607A.IP)
  1218. # [11:30] * Joins: micahg (micahg@moz-DEBA912.c3-0.arm-ubr1.chi-arm.il.cable.rcn.com)
  1219. # [11:30] * Joins: ctyler (chris@moz-A54458EA.proximity.on.ca)
  1220. # [11:30] * Joins: hub (hub@moz-E12780DE.cable.teksavvy.com)
  1221. # [11:30] * Joins: kdc (chatzilla@moz-A66E00D4.pk.shawcable.net)
  1222. # [11:30] * Joins: odin_ (Odin@moz-66D3502E.zone5.bethere.co.uk)
  1223. # [11:30] * Joins: sfink (chatzilla@moz-575551A7.lightspeed.sntcca.sbcglobal.net)
  1224. # [11:30] * Joins: pepijndevos (pepijndevo@9EACEF43.E50A3180.BCE47D84.IP)
  1225. # [11:30] * Joins: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP)
  1226. # [11:30] * Joins: dmarcos_ (sid15240@moz-31ABA2C0.irccloud.com)
  1227. # [11:30] * Joins: _BledA_ (nodebot@moz-88C53DF1.us-west-2.compute.amazonaws.com)
  1228. # [11:30] * Joins: sfoster (sfoster@moz-961AB6F2.hsd1.or.comcast.net)
  1229. # [11:30] * Joins: janv (varga@B613191B.3EC5E826.4F33160D.IP)
  1230. # [11:30] * Joins: dcamp (sid6663@moz-5F4AA75A.irccloud.com)
  1231. # [11:30] * Joins: gcp (gcp@moz-9CEB1C98.access.telenet.be)
  1232. # [11:30] * Joins: John-Galt (kris@moz-882434A3.hsd1.or.comcast.net)
  1233. # [11:30] * Joins: btulchinsky (btulchinsk@moz-6FFE20E8.dsl.bell.ca)
  1234. # [11:30] * Joins: daleharvey (sid513@moz-E77DEB21.irccloud.com)
  1235. # [11:30] * Joins: alfredo (alfredo@moz-6277CBA8.dynamic-ip.hinet.net)
  1236. # [11:30] * Joins: mitsuhiko (mitsuhiko-@moz-BC29B73E.srv.pocoo.org)
  1237. # [11:30] * Joins: Optimize1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP)
  1238. # [11:30] * Joins: darin (darin@3246441A.D6CCE4AE.77834EAA.IP)
  1239. # [11:30] * Joins: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com)
  1240. # [11:30] * Joins: ivan (ivan@moz-531C3EC9.members.linode.com)
  1241. # [11:30] * Joins: wycats (sid79@moz-5F4AA75A.irccloud.com)
  1242. # [11:30] * Joins: jaoo (user@9B16F31C.CF111F0B.E21948B5.IP)
  1243. # [11:30] * Joins: jlund|afk (jlund@moz-14ADB5DC.us-west-2.compute.amazonaws.com)
  1244. # [11:30] * Joins: six600110 (six600110@moz-C663577C.hsd1.il.comcast.net)
  1245. # [11:30] * Joins: bagder (daniel@234CB8D.5EA71235.B24D57A6.IP)
  1246. # [11:30] * Joins: merike|away (merike@moz-5A0B80A7.cable.starman.ee)
  1247. # [11:30] * Joins: h4writer (h4writer@moz-957FCBC.access.telenet.be)
  1248. # [11:30] * Joins: simo (simo@2D233D57.3194ED15.B1865714.IP)
  1249. # [11:30] * Joins: wchen (wchen@2D12D1F7.7CA4D702.F7A44A1B.IP)
  1250. # [11:30] * Joins: nattofriends (tsutsumi@moz-A9E340E1.fuqu.jp)
  1251. # [11:30] * Joins: sheppy (sid12424@moz-5F4AA75A.irccloud.com)
  1252. # [11:30] * Joins: Matti_away (Matti@moz-725A5D4C.dip0.t-ipconnect.de)
  1253. # [11:30] * Joins: jmontgomery_away (jmontgomer@6B39618D.689F589A.EE6E63A5.IP)
  1254. # [11:30] * Joins: johankj (johankj@moz-D7D69F49.johanjensen.dk)
  1255. # [11:30] * merike|away is now known as merike
  1256. # [11:30] * Joins: reyre (reyre@moz-89E9865B.com)
  1257. # [11:30] * Joins: ddahl (ddahl@moz-5F89CFB9.hsd1.il.comcast.net)
  1258. # [11:30] * Joins: peterv (peterv@moz-4BC60BE9.access.telenet.be)
  1259. # [11:30] * Joins: SirCmpwn (SirCmpwn@moz-8D766614.sircmpwn.com)
  1260. # [11:30] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  1261. # [11:30] * Joins: philor|away (philor@moz-638273A8.my-nick.name)
  1262. # [11:30] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  1263. # [11:30] * Matti_away is now known as Matti
  1264. # [11:30] * Joins: Unfocused (sid2622@moz-5F4AA75A.irccloud.com)
  1265. # [11:30] * Joins: mattwoodrow|away (mattwoodro@moz-AE9416F2.alliedmods.net)
  1266. # [11:30] * mattwoodrow|away is now known as mattwoodrow
  1267. # [11:30] * Joins: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP)
  1268. # [11:30] * Joins: Cork (Cork@moz-352B7E7B.a370.priv.bahnhof.se)
  1269. # [11:30] * Joins: jst (quassel@CB36FB4D.BE63433B.EE6E63A5.IP)
  1270. # [11:30] * Joins: yvan (quassel@moz-EE24132A.members.linode.com)
  1271. # [11:30] * Joins: hurley (hurley@moz-4D7FF77C.org)
  1272. # [11:30] * Joins: MattN (MattN@A8588C62.B1B6FA80.709ED47B.IP)
  1273. # [11:30] * Joins: Olipro (Olipro@moz-36AEAE5A.catv.pool.telekom.hu)
  1274. # [11:30] * Joins: bnicholson (bnicholson@moz-46A94A2D.hsd1.ca.comcast.net)
  1275. # [11:30] * Joins: avih (quassel@49DF9E91.D1859F25.ADCC8A61.IP)
  1276. # [11:30] * Joins: lerc (quassel@moz-289EFA2.telstraclear.net)
  1277. # [11:31] * Joins: adalucinet (Mibbit@28C4EA76.976FBEE.5BC07656.IP)
  1278. # [11:31] * Joins: brambles (xymox@moz-969AAE9B.barwen.ch)
  1279. # [11:31] * Joins: vlad (vlad@moz-97F0FD4D.members.linode.com)
  1280. # [11:31] * Joins: humph (dave@moz-E0B198AD.senecac.on.ca)
  1281. # [11:31] * Joins: rail_away (rail@moz-CBBC70B7.iqchoice.com)
  1282. # [11:31] * Joins: smacleod (steven@moz-28AF3AC9.members.linode.com)
  1283. # [11:31] * Joins: botond-laptop (chatzilla@13F2CEC5.7672369.D8E68FF6.IP)
  1284. # [11:31] * Joins: kaze (kaze@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1285. # [11:31] * Joins: smaug (chatzilla@moz-9E0B1701.pp.htv.fi)
  1286. # [11:31] * ChanServ sets mode: +o smaug
  1287. # [11:31] * Joins: retornam (retornam@23B1FA71.551CCC6C.8BEFA1E3.IP)
  1288. # [11:31] * Joins: fhd (sid2508@moz-31ABA2C0.irccloud.com)
  1289. # [11:31] * Joins: erahm (Adium@moz-A511F1A0.hsd1.or.comcast.net)
  1290. # [11:31] * Joins: ttaubert (sid2620@moz-A42E5B7B.irccloud.com)
  1291. # [11:31] * Joins: brad0 (Adium@moz-9C1401F.cpe.pppoe.ca)
  1292. # [11:31] * Joins: terrence-afk (chatzilla@moz-B38D16E9.sb.sd.cox.net)
  1293. # [11:31] * Joins: felipe (sid2734@moz-E77DEB21.irccloud.com)
  1294. # [11:32] * Joins: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1295. # [11:32] * Joins: sawrubh (uid6719@moz-5F4AA75A.irccloud.com)
  1296. # [11:32] * Joins: pnkfelix (pnkfelix@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1297. # [11:32] * Joins: Hixie (ianh@C6D27F7B.5EFFBB68.81BC061B.IP)
  1298. # [11:32] * Joins: richardus (richardus@moz-A4E2BEA4.com)
  1299. # [11:32] * Joins: taras (taras@D2ABC49B.2F7415B9.B87ED48A.IP)
  1300. # [11:32] * Joins: fubar (fubar@moz-7388D91E.electric-mayhem.org)
  1301. # [11:32] * Joins: schien (anonymous@moz-46B670D1.dynamic.hinet.net)
  1302. # [11:32] * Joins: danieru (danieru@3435F1EA.1BF96F48.9510F13D.IP)
  1303. # [11:32] * Joins: beltzner (mike-beltz@moz-9E3E12EC.off.net)
  1304. # [11:32] * Joins: secretrobotron (secretrobo@moz-E9501591.members.linode.com)
  1305. # [11:32] * Joins: rozhkov (rozhkov@D7898B11.FB4A19D7.CA3E9B26.IP)
  1306. # [11:32] * Joins: fitzgen (fitzgen@moz-6A559194.members.linode.com)
  1307. # [11:32] * Joins: mjessome (mjessome@1959CDD3.BBE15E1C.8491360.IP)
  1308. # [11:32] * Joins: poiru (poiru@moz-C4357EA7.kapsi.fi)
  1309. # [11:33] * Joins: deian|away (d@moz-AA554321.scs.stanford.edu)
  1310. # [11:33] * Joins: mzz (marienz@moz-70518B0A.marienz.net)
  1311. # [11:33] * Joins: fox2mike (shyam@moz-8DDA37AB.fox2mike.net)
  1312. # [11:33] * Joins: horiaolaru (uid15701@moz-31ABA2C0.irccloud.com)
  1313. # [11:33] * Joins: nigelb (nigel@AC024D61.81112D4F.EE6E63A5.IP)
  1314. # [11:33] * Joins: stuart (pavlov@moz-9E3E12EC.off.net)
  1315. # [11:33] * Joins: chewey (chewey@moz-89CF60F.dip0.t-ipconnect.de)
  1316. # [11:33] * Joins: robarnold (rob@moz-59F6B5.hfc.comcastbusiness.net)
  1317. # [11:33] * stuart is now known as IRCMonkey2047
  1318. # [11:33] * Joins: _FrnchFrgg_ (_FrnchFrgg@A954F686.E36651AF.74B71A20.IP)
  1319. # [11:33] * Joins: anton (sid1783@moz-5F4AA75A.irccloud.com)
  1320. # [11:33] * Joins: taras_ (taras@moz-55A98463.glek.net)
  1321. # [11:33] * Joins: shawnjohnjr (sid15523@moz-5F4AA75A.irccloud.com)
  1322. # [11:33] * Joins: dr_jesus (bob@8191CDD5.43FF5E66.F4B74145.IP)
  1323. # [11:33] * Joins: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1324. # [11:33] * Joins: markh (uid24855@moz-5F4AA75A.irccloud.com)
  1325. # [11:33] * Joins: biesi_ (sid8099@moz-5F4AA75A.irccloud.com)
  1326. # [11:33] * Joins: vd (vd@moz-7A53EEF0.ddns.cablebg.net)
  1327. # [11:33] * Joins: gozala (uid5923@moz-5F4AA75A.irccloud.com)
  1328. # [11:33] * Joins: emerson|radio (Icedove@6F3CD6F5.77F4443F.66AE2FF3.IP)
  1329. # [11:33] * Joins: gaston (landry@moz-2911F07A.rhaalovely.net)
  1330. # [11:33] * Joins: eseidel (sid5595@moz-5F4AA75A.irccloud.com)
  1331. # [11:33] * Joins: gfritzsche (sid7586@moz-5F4AA75A.irccloud.com)
  1332. # [11:33] * Joins: davidillsley (sid18481@moz-5F4AA75A.irccloud.com)
  1333. # [11:33] * Joins: mhenretty (sid11899@moz-5F4AA75A.irccloud.com)
  1334. # [11:33] * Joins: mrchrisadams (sid1367@moz-5F4AA75A.irccloud.com)
  1335. # [11:33] * Joins: jaws (uid2871@moz-5F4AA75A.irccloud.com)
  1336. # [11:34] * Joins: jryans (sid12941@moz-5F4AA75A.irccloud.com)
  1337. # [11:34] * Joins: sid0 (sid2934@moz-5F4AA75A.irccloud.com)
  1338. # [11:34] * Joins: timeless (sid4015@moz-5F4AA75A.irccloud.com)
  1339. # [11:34] * Joins: lightofapollo|baby (sid11987@moz-5F4AA75A.irccloud.com)
  1340. # [11:34] * Joins: johns (johns@moz-BBE3ABD.mv.mozilla.com)
  1341. # [11:34] * Joins: rory_ (rory@moz-DB4A9C19.scl3.mozilla.com)
  1342. # [11:34] * Joins: khuey|away (khuey@moz-DB4A9C19.scl3.mozilla.com)
  1343. # [11:34] * Joins: dmajor (dmajor@moz-BBE3ABD.mv.mozilla.com)
  1344. # [11:34] * Joins: dolske (dolske@moz-DB4A9C19.scl3.mozilla.com)
  1345. # [11:34] * ChanServ sets mode: +o dolske
  1346. # [11:34] * Joins: nthomas (nthomas@moz-DB4A9C19.scl3.mozilla.com)
  1347. # [11:34] * Joins: whimboo|afk (whimboo@moz-DB4A9C19.scl3.mozilla.com)
  1348. # [11:34] * Joins: arasbm (zooby@moz-8E336844.vf.shawcable.net)
  1349. # [11:34] * Joins: sfink|log (sfink@moz-BBE3ABD.mv.mozilla.com)
  1350. # [11:34] * Joins: nalexander (nalexander@moz-DB4A9C19.scl3.mozilla.com)
  1351. # [11:34] * Joins: nmatsakis (nmatsakis@moz-DB4A9C19.scl3.mozilla.com)
  1352. # [11:34] * Joins: Yoric (Yoric@moz-DB4A9C19.scl3.mozilla.com)
  1353. # [11:34] * Joins: gkw (fuzz2lin@moz-BBE3ABD.mv.mozilla.com)
  1354. # [11:34] * Joins: overholt (overholt@moz-DB4A9C19.scl3.mozilla.com)
  1355. # [11:34] * Joins: reuben (reuben@moz-DB4A9C19.scl3.mozilla.com)
  1356. # [11:34] * Joins: mhoye (mhoye@moz-C14EAE67.vs.heavycomputing.ca)
  1357. # [11:34] * Joins: margaret (margaret@moz-DB4A9C19.scl3.mozilla.com)
  1358. # [11:34] * Joins: gavin (gavin@moz-DB4A9C19.scl3.mozilla.com)
  1359. # [11:34] * ChanServ sets mode: +o gavin
  1360. # [11:34] * Joins: ttaubert_ (ttaubert@moz-DB4A9C19.scl3.mozilla.com)
  1361. # [11:34] * Joins: AutomatedTester|AFK (David@moz-DB4A9C19.scl3.mozilla.com)
  1362. # [11:34] * Joins: nli (nli@moz-DB4A9C19.scl3.mozilla.com)
  1363. # [11:35] * Joins: Tomcat|sheriff2 (Mibbit@moz-A7C07423.superkabel.de)
  1364. # [11:35] * Joins: efaust (efaust@moz-8E7F06AB.hsd1.ca.comcast.net)
  1365. # [11:35] * baku|away is now known as baku
  1366. # [11:35] * whimboo|afk is now known as whimboo
  1367. # [11:35] * Joins: rvitillo (rvitillo@moz-DB4A9C19.scl3.mozilla.com)
  1368. # [11:35] * Joins: Tomcat (Tomcat@moz-DB4A9C19.scl3.mozilla.com)
  1369. # [11:35] * AutomatedTester|AFK is now known as AutomatedTester
  1370. # [11:35] * Joins: seth (seth@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1371. # [11:35] * Quits: firebot (firebot@moz-F8C1AF63.carolina.res.rr.com) (Ping timeout)
  1372. # [11:35] * Joins: geekboy|afk (geekboy@moz-DB4A9C19.scl3.mozilla.com)
  1373. # [11:35] * Joins: TheOne (one@moz-DB4A9C19.scl3.mozilla.com)
  1374. # [11:35] * Joins: tanner (tanner@moz-CAA98E97.xxx)
  1375. # [11:35] * Tomcat is now known as Tomcat|sheriffduty
  1376. # [11:35] * Joins: pmoore (pmoore@moz-DB4A9C19.scl3.mozilla.com)
  1377. # [11:35] * Joins: SirSkidmore (taylor@moz-F145A866.com)
  1378. # [11:36] * Joins: bkero (bkero@B09BE30.721446DC.5E72ECD5.IP)
  1379. # [11:36] * Joins: ashish (ashish@moz-DB4A9C19.scl3.mozilla.com)
  1380. # [11:36] * Joins: tbsaunde (tbsaunde@moz-DB4A9C19.scl3.mozilla.com)
  1381. # [11:36] * Joins: djvj (kvijayan@moz-DB4A9C19.scl3.mozilla.com)
  1382. # [11:36] * Joins: robcee (rcampbell@moz-DB4A9C19.scl3.mozilla.com)
  1383. # [11:36] * Joins: ctalbert|afk (ctalbert@moz-DB4A9C19.scl3.mozilla.com)
  1384. # [11:36] * Joins: rnewman (rich_holyg@moz-DB4A9C19.scl3.mozilla.com)
  1385. # [11:36] * Joins: dietrich (dietrich@moz-DB4A9C19.scl3.mozilla.com)
  1386. # [11:36] * Joins: Cww (Cww@moz-DB4A9C19.scl3.mozilla.com)
  1387. # [11:36] * Joins: mrbkap (mrbkap@moz-DB4A9C19.scl3.mozilla.com)
  1388. # [11:36] * Joins: Tomcat|s1eriffduty (Tomcat@moz-DB4A9C19.scl3.mozilla.com)
  1389. # [11:36] * Joins: liuche (liuche@moz-DB4A9C19.scl3.mozilla.com)
  1390. # [11:37] * Joins: mconnor (mconnor@moz-DB4A9C19.scl3.mozilla.com)
  1391. # [11:37] * Joins: edwin (me@moz-DB4A9C19.scl3.mozilla.com)
  1392. # [11:37] * Joins: lsblakk (lsblakk@moz-DB4A9C19.scl3.mozilla.com)
  1393. # [11:37] * Joins: michal (michal@moz-6CE1017D.broadband17.iol.cz)
  1394. # [11:37] * Joins: kbrosnan (kbrosnan@moz-DB4A9C19.scl3.mozilla.com)
  1395. # [11:37] * Joins: rhelmer (rhelmer@moz-DB4A9C19.scl3.mozilla.com)
  1396. # [11:37] * Joins: gps (gps@moz-DB4A9C19.scl3.mozilla.com)
  1397. # [11:37] * Joins: jmaher|afk (jmaher@moz-DB4A9C19.scl3.mozilla.com)
  1398. # [11:37] * Joins: sheeri (sheeri@moz-DB4A9C19.scl3.mozilla.com)
  1399. # [11:37] * Joins: shu (sguo@moz-DB4A9C19.scl3.mozilla.com)
  1400. # [11:37] * Joins: gregglind_away (glind@moz-DB4A9C19.scl3.mozilla.com)
  1401. # [11:37] * Joins: Callek_disconnected (Callek@moz-DB4A9C19.scl3.mozilla.com)
  1402. # [11:37] * Joins: hwine-ooo (hwine@moz-DB4A9C19.scl3.mozilla.com)
  1403. # [11:37] * robcee is now known as IRCMonkey654
  1404. # [11:37] <Tomcat|sheriffduty> ok guys seems we are back online
  1405. # [11:37] * Joins: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  1406. # [11:38] * rhelmer is now known as IRCMonkey40342
  1407. # [11:38] <ttaubert> woo
  1408. # [11:38] * Joins: stephend (sid17718@moz-A42E5B7B.irccloud.com)
  1409. # [11:38] * Joins: cervantes (cervantes@moz-99690620.hinet-ip.hinet.net)
  1410. # [11:38] * Joins: evilpie_ (sid7877@moz-E77DEB21.irccloud.com)
  1411. # [11:38] * evilpie_ is now known as evilpie
  1412. # [11:38] <Tomcat|sheriffduty> at least the trees seems ok so far
  1413. # [11:39] * Joins: froydnj (nfroyd@moz-DB4A9C19.scl3.mozilla.com)
  1414. # [11:39] * Joins: mbest (Instantbir@moz-7D3D7184.dsl.bell.ca)
  1415. # [11:41] <Tomcat|sheriffduty> at least the trees seems ok so far
  1416. # [11:41] * nthomas is now known as nthomas|away
  1417. # [11:41] * Joins: mihaelav (Mibbit@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP)
  1418. # [11:43] <nigelb> yay
  1419. # [11:43] * Joins: ewong|away (chatzilla@moz-20A71729.net)
  1420. # [11:43] * Joins: pdr (sid7901@moz-E77DEB21.irccloud.com)
  1421. # [11:45] * Quits: Tomcat|sheriffduty (Tomcat@moz-DB4A9C19.scl3.mozilla.com) (Quit: leaving)
  1422. # [11:45] * Quits: Tomcat|s1eriffduty (Tomcat@moz-DB4A9C19.scl3.mozilla.com) (Quit: leaving)
  1423. # [11:45] * Joins: dougc (dougc@moz-F16BC551.static.rev.eftel.com)
  1424. # [11:46] * Joins: Tomcat (Tomcat@moz-DB4A9C19.scl3.mozilla.com)
  1425. # [11:46] * Tomcat is now known as Tomcat|sheriffduty
  1426. # [11:46] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  1427. # [11:48] * Joins: past (sid15657@moz-31ABA2C0.irccloud.com)
  1428. # [11:50] * Quits: curiousguy13 (chatzilla@3D02806B.81E40E6E.50E99975.IP) (Ping timeout)
  1429. # [11:50] * Quits: recursive (recursive@B07811B5.933E581B.547774E7.IP) (Quit: Leaving...)
  1430. # [11:51] * Joins: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP)
  1431. # [11:51] * Joins: annevk (annevk@514D186.F3BBB17D.144F44FA.IP)
  1432. # [11:52] <Tomcat|sheriffduty> tn: ping
  1433. # [11:52] <tn> Tomcat|sheriffduty: hi
  1434. # [11:52] <Tomcat|sheriffduty> hi tn, just wondering could such failures like https://tbpl.mozilla.org/php/getParsedLog.php?id=34050204&tree=Mozilla-Inbound be related to your push ?
  1435. # [11:53] * Quits: therube (chatzilla@moz-532294F.hsd1.md.comcast.net) (Ping timeout)
  1436. # [11:53] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  1437. # [11:53] * Joins: alice (alice@moz-F82BC62E.paconsult7.bbnplanet.net)
  1438. # [11:54] * Quits: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com) (Input/output error)
  1439. # [11:54] * Joins: curiousguy13 (chatzilla@3D02806B.81E40E6E.50E99975.IP)
  1440. # [11:54] * Joins: heftig (heftig@moz-D746319F.unitymedia.biz)
  1441. # [11:55] <tn> Tomcat|sheriffduty: hmm, the same crash happend on at least four consecutive pushes before mine
  1442. # [11:55] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Ping timeout)
  1443. # [11:56] <Tomcat|sheriffduty> ah right
  1444. # [11:58] * Joins: jandem (sid16255@moz-A42E5B7B.irccloud.com)
  1445. # [11:58] * mihaelav is now known as mihaelav_lunch
  1446. # [11:58] * Joins: krit (sid15081@moz-E77DEB21.irccloud.com)
  1447. # [11:58] * Quits: flo-retina (Instantbir@moz-2C9D8405.ip-176-31-106.eu) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  1448. # [11:59] * Quits: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Quit: masayuki)
  1449. # [12:00] * Joins: digitsm (digitsm@1CF864A7.47ECF905.C146C5E5.IP)
  1450. # [12:03] * Joins: sankha93 (uid12218@moz-31ABA2C0.irccloud.com)
  1451. # [12:05] * Joins: Gijs (gijs@moz-38E1C9D2.range86-164.btcentralplus.com)
  1452. # [12:06] <glandium> so, b2g is broken on try?
  1453. # [12:07] <glandium> https://tbpl.mozilla.org/php/getParsedLog.php?id=34052232&tree=Try
  1454. # [12:07] * Quits: Tomcat|sheriff2 (Mibbit@moz-A7C07423.superkabel.de) (Quit: http://www.mibbit.com ajax IRC Client)
  1455. # [12:08] * Joins: system64 (uid17738@moz-A42E5B7B.irccloud.com)
  1456. # [12:08] * Joins: stransky (stransky@moz-107AD163.redhat.com)
  1457. # [12:08] * Joins: mmc (uid16596@moz-A42E5B7B.irccloud.com)
  1458. # [12:10] * Joins: gustavold (gustavold@A9E6384.B3194B4B.DF2AC62B.IP)
  1459. # [12:10] * Joins: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl)
  1460. # [12:12] * Quits: alice (alice@moz-F82BC62E.paconsult7.bbnplanet.net) (Client exited)
  1461. # [12:12] * Quits: kaze (kaze@87C1F78E.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  1462. # [12:12] * Quits: alfredo (alfredo@moz-6277CBA8.dynamic-ip.hinet.net) (Client exited)
  1463. # [12:12] * Joins: alice (alice@moz-F82BC62E.paconsult7.bbnplanet.net)
  1464. # [12:13] * Joins: mak|afk (chatzilla@8AE620F9.8DA921B8.2D5D3F50.IP)
  1465. # [12:13] * Quits: andreasn (andreasn@moz-846D011E.redhat.com) (Ping timeout)
  1466. # [12:14] * Quits: alice (alice@moz-F82BC62E.paconsult7.bbnplanet.net) (Ping timeout)
  1467. # [12:15] * Quits: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  1468. # [12:15] * Joins: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1469. # [12:16] * Joins: Ms2ger (Ms2ger@moz-E2F08450.adsl-dyn.isp.belgacom.be)
  1470. # [12:17] * Quits: @smaug (chatzilla@moz-9E0B1701.pp.htv.fi) (Ping timeout)
  1471. # [12:18] * Quits: curiousguy13 (chatzilla@3D02806B.81E40E6E.50E99975.IP) (Ping timeout)
  1472. # [12:19] * Joins: curiousguy13 (chatzilla@3D02806B.81E40E6E.50E99975.IP)
  1473. # [12:21] * Joins: mstange (markus@moz-AA6FE9E.dip0.t-ipconnect.de)
  1474. # [12:21] <Gijs> Tomcat|sheriffduty: do you know if the "Australis" hooks have been removed from m-c ?
  1475. # [12:21] <Gijs> (and integration branches) ?
  1476. # [12:23] * Joins: flo-retina (Instantbir@moz-2C9D8405.ip-176-31-106.eu)
  1477. # [12:27] <Tomcat|sheriffduty> hm Gijs there is still https://hg.mozilla.org/hgcustom/hghooks/file/422eb2b595dd/mozhghooks/prevent_unlabelled_australis_changes.py
  1478. # [12:28] * Quits: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP) (Connection reset by peer)
  1479. # [12:29] <Tomcat|sheriffduty> hm glandium you could try to retrigger
  1480. # [12:30] * Joins: kaze (kaze@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1481. # [12:30] * pmoore is now known as pmoore|lunch
  1482. # [12:31] * Quits: curiousguy13 (chatzilla@3D02806B.81E40E6E.50E99975.IP) (Ping timeout)
  1483. # [12:32] * Joins: glazou (glazou@D8B9C081.E820043D.D4C04133.IP)
  1484. # [12:32] <glazou> bonjour
  1485. # [12:32] <Ms2ger> Morning
  1486. # [12:34] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  1487. # [12:36] * Joins: KaiRo (robert@moz-271EBA4F.adsl.highway.telekom.at)
  1488. # [12:36] * Joins: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  1489. # [12:38] * Quits: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl) (Quit: Leaving)
  1490. # [12:38] * Joins: cabanier (sid15093@moz-31ABA2C0.irccloud.com)
  1491. # [12:38] * Joins: birtles (uid16523@moz-A42E5B7B.irccloud.com)
  1492. # [12:38] * Joins: dhylands|afk (sid15724@moz-E77DEB21.irccloud.com)
  1493. # [12:39] * Quits: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Quit: masayuki)
  1494. # [12:39] * Joins: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com)
  1495. # [12:39] * Joins: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  1496. # [12:39] * Quits: benvie (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP) (Ping timeout)
  1497. # [12:43] * Joins: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  1498. # [12:48] <Tomcat|sheriffduty> hm glandium seems the function to retrigger jobs is currently failing
  1499. # [12:48] <Tomcat|sheriffduty> also on try
  1500. # [12:49] * Joins: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP)
  1501. # [12:49] * Quits: RealRaven (Thunderbir@94DC1789.FAD15229.C3498625.IP) (Ping timeout)
  1502. # [12:53] * Joins: RealRaven (Thunderbir@94DC1789.FAD15229.C3498625.IP)
  1503. # [12:56] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  1504. # [12:57] * Joins: MarcoZ (marco.zehe@moz-2A100193.dip0.t-ipconnect.de)
  1505. # [12:58] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Ping timeout)
  1506. # [13:01] * Quits: darkowlzz (sunny@47342535.4E83E3A4.27560D6E.IP) (Ping timeout)
  1507. # [13:01] * Quits: h4writer (h4writer@moz-957FCBC.access.telenet.be) (Client exited)
  1508. # [13:03] * Joins: darkowlzz (sunny@47342535.4E83E3A4.27560D6E.IP)
  1509. # [13:07] * Joins: m_gol (m_gol@moz-4A03F5C1.dynamic.chello.pl)
  1510. # [13:08] * Joins: Anupkumar (uid16774@moz-A42E5B7B.irccloud.com)
  1511. # [13:08] * Joins: Nimoi (sid18538@moz-E77DEB21.irccloud.com)
  1512. # [13:08] * Joins: erikvold (sid18003@moz-E77DEB21.irccloud.com)
  1513. # [13:10] * Quits: karl (karl@moz-C433B975.jetstream.xtra.co.nz) (Ping timeout)
  1514. # [13:16] * Quits: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Ping timeout)
  1515. # [13:20] * Quits: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de) (Input/output error)
  1516. # [13:21] * Joins: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP)
  1517. # [13:26] * Joins: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com)
  1518. # [13:27] * Joins: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de)
  1519. # [13:27] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  1520. # [13:30] * mak|afk is now known as mak
  1521. # [13:30] * Joins: givanica (givanica@BD692503.2E7E5149.FB866788.IP)
  1522. # [13:30] * Joins: nattokirai (nattokirai@moz-F4EE21F.dynamic.ppp.asahi-net.or.jp)
  1523. # [13:31] * mak is now known as IRCMonkey15788
  1524. # [13:31] * Quits: IRCMonkey15788 (chatzilla@8AE620F9.8DA921B8.2D5D3F50.IP) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  1525. # [13:32] * Joins: mak|afk (chatzilla@8AE620F9.8DA921B8.2D5D3F50.IP)
  1526. # [13:33] * mak|afk is now known as mak
  1527. # [13:34] * Quits: btulchinsky (btulchinsk@moz-6FFE20E8.dsl.bell.ca) (Client exited)
  1528. # [13:34] * mak is now known as IRCMonkey32499
  1529. # [13:35] * IRCMonkey32499 is now known as mak|afk
  1530. # [13:35] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  1531. # [13:36] * mak|afk is now known as mak
  1532. # [13:37] * Joins: givanica1 (Thunderbir@BD692503.2E7E5149.FB866788.IP)
  1533. # [13:37] * mak is now known as mak|afk
  1534. # [13:38] * mak|afk is now known as mak
  1535. # [13:38] * Joins: mbrubeck (sid17036@moz-A42E5B7B.irccloud.com)
  1536. # [13:38] * Joins: cdiehl (sid19351@moz-A42E5B7B.irccloud.com)
  1537. # [13:38] * Joins: samgtr (uid15227@moz-E77DEB21.irccloud.com)
  1538. # [13:38] * mak is now known as mak|afk
  1539. # [13:38] * Joins: Cwiiis|Away (uid15019@moz-31ABA2C0.irccloud.com)
  1540. # [13:39] * Quits: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP) (Client exited)
  1541. # [13:39] * Joins: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP)
  1542. # [13:40] * Joins: espadrine (ttyl@moz-D8BE539E.w92-128.abo.wanadoo.fr)
  1543. # [13:40] * Quits: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP) (Connection reset by peer)
  1544. # [13:40] * Joins: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP)
  1545. # [13:41] * mak|afk is now known as mak
  1546. # [13:42] * Joins: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net)
  1547. # [13:43] * Joins: smaug (chatzilla@moz-9E0B1701.pp.htv.fi)
  1548. # [13:43] * ChanServ sets mode: +o smaug
  1549. # [13:43] * Joins: bjacob_ (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  1550. # [13:45] * Quits: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP) (Client exited)
  1551. # [13:45] * Joins: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP)
  1552. # [13:46] <Yoric> felipe: Is mozapps/extensions/tests/xpcshell/test_locked.js one of yours?
  1553. # [13:46] * pmoore|lunch is now known as pmoore
  1554. # [13:46] <Gijs> Tomcat|sheriffduty: are you sure you retriggered the OS X nightly on Aurora?
  1555. # [13:46] <Gijs> oh
  1556. # [13:47] <Tomcat|sheriffduty> Gijs: i was but there seems to be problems with retriggering :/
  1557. # [13:47] <Gijs> :(
  1558. # [13:47] <Tomcat|sheriffduty> bug 963720
  1559. # [13:47] * Quits: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP) (Ping timeout)
  1560. # [13:47] <Tomcat|sheriffduty> for me no retrigger of anything works
  1561. # [13:47] <Tomcat|sheriffduty> dustin is looking into this
  1562. # [13:48] <Tomcat|sheriffduty> Gijs: and android nightlys are broken
  1563. # [13:49] <Tomcat|sheriffduty> bug 967452
  1564. # [13:49] * Joins: AndreeaMatei1 (Thunderbir@97DE32AA.4007429F.B8FD5DE3.IP)
  1565. # [13:49] <Gijs> :(
  1566. # [13:49] * Quits: AndreeaMatei (Thunderbir@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP) (Ping timeout)
  1567. # [13:49] <Gijs> so I guess Aurora won't be open for a while then?
  1568. # [13:49] * Quits: AndreeaMatei1 (Thunderbir@97DE32AA.4007429F.B8FD5DE3.IP) (Quit: AndreeaMatei1)
  1569. # [13:50] <Tomcat|sheriffduty> yeah but thats relman/ryan's call i guess
  1570. # [13:50] * Quits: m_gol (m_gol@moz-4A03F5C1.dynamic.chello.pl) (Quit: Leaving...)
  1571. # [13:51] * Quits: mihaelav_lunch (Mibbit@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1572. # [13:51] * Quits: Matti (Matti@moz-725A5D4C.dip0.t-ipconnect.de) (Ping timeout)
  1573. # [13:52] * Joins: Matti_away (Matti@moz-725A5D4C.dip0.t-ipconnect.de)
  1574. # [13:52] * Joins: snig_wal (chatzilla@9B9315E1.A6025CA.1C37C358.IP)
  1575. # [13:52] * emerson|radio is now known as emerson
  1576. # [13:53] * Joins: darkowlzzz (sunny@1CEB9F7D.DE31631A.25B273F5.IP)
  1577. # [13:53] * Quits: darkowlzz (sunny@47342535.4E83E3A4.27560D6E.IP) (Ping timeout)
  1578. # [13:53] * Quits: Matti_away (Matti@moz-725A5D4C.dip0.t-ipconnect.de) (Ping timeout)
  1579. # [13:55] * Quits: MarcoZ (marco.zehe@moz-2A100193.dip0.t-ipconnect.de) (Ping timeout)
  1580. # [13:55] * Quits: givanica (givanica@BD692503.2E7E5149.FB866788.IP) (Quit: ~ Trillian - www.trillian.im ~)
  1581. # [13:55] * Joins: nical (nico@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1582. # [13:55] * Joins: aleth (Instantbir@940BF8F1.B2FE6965.CCB6A436.IP)
  1583. # [13:56] * Parts: givanica1 (Thunderbir@BD692503.2E7E5149.FB866788.IP)
  1584. # [13:56] * Joins: givanica1 (Thunderbir@BD692503.2E7E5149.FB866788.IP)
  1585. # [13:57] * Quits: givanica1 (Thunderbir@BD692503.2E7E5149.FB866788.IP) (Quit: givanica1)
  1586. # [13:58] * Joins: FabioMagnoni (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br)
  1587. # [13:58] * Joins: m_gol (m_gol@moz-4A03F5C1.dynamic.chello.pl)
  1588. # [13:59] * Quits: FabioMagnoni (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br) (Ping timeout)
  1589. # [14:00] * Joins: mcsmurf (chatzilla@moz-14D2B2CE.dip0.t-ipconnect.de)
  1590. # [14:00] * Joins: sbeta (Thunderbir@D69AD527.CFE976B8.4A5F0685.IP)
  1591. # [14:01] * Joins: Matti_away (Matti@moz-3493F635.dip0.t-ipconnect.de)
  1592. # [14:01] * Matti_away is now known as Matti
  1593. # [14:03] * Joins: wlach (wlach@5CF4484B.34721AEF.47C41102.IP)
  1594. # [14:03] * Quits: brad0 (Adium@moz-9C1401F.cpe.pppoe.ca) (Quit: Leaving.)
  1595. # [14:03] * Joins: andreasn (andreasn@moz-846D011E.redhat.com)
  1596. # [14:03] * Quits: nl (nicklebede@moz-29D843ED.net151.n37.ru) (Ping timeout)
  1597. # [14:03] * Joins: bgrins (Adium@C7203E51.FBD8ACDB.20F09BA6.IP)
  1598. # [14:04] * Quits: Jerry (hshih@moz-AE383FC4.dynamic.kbronet.com.tw) (Quit: Leaving)
  1599. # [14:04] * Quits: m_gol (m_gol@moz-4A03F5C1.dynamic.chello.pl) (Quit: Leaving...)
  1600. # [14:04] * Joins: nl (nicklebede@moz-29D843ED.net151.n37.ru)
  1601. # [14:04] <Tomcat|sheriffduty> Gijs: retrigger function is working again / problem fixed
  1602. # [14:05] <Gijs> excellent :)
  1603. # [14:06] * Joins: MarcoZ (marco.zehe@moz-2A100193.dip0.t-ipconnect.de)
  1604. # [14:08] * Quits: darkowlzzz (sunny@1CEB9F7D.DE31631A.25B273F5.IP) (Quit: This computer has gone to sleep)
  1605. # [14:08] * Joins: bemjb_ (sid10033@moz-E77DEB21.irccloud.com)
  1606. # [14:08] * Joins: mattur (sid16049@moz-A42E5B7B.irccloud.com)
  1607. # [14:08] * Quits: jhopkins (jhopkins@moz-C24292F4.public.wayport.net) (Quit: jhopkins)
  1608. # [14:09] * Joins: gaye|dinner (sid12943@moz-31ABA2C0.irccloud.com)
  1609. # [14:09] * Quits: sbeta (Thunderbir@D69AD527.CFE976B8.4A5F0685.IP) (Quit: sbeta)
  1610. # [14:09] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Client exited)
  1611. # [14:11] * Joins: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz)
  1612. # [14:11] * Quits: aleth (Instantbir@940BF8F1.B2FE6965.CCB6A436.IP) (Ping timeout)
  1613. # [14:11] * Quits: Ms2ger (Ms2ger@moz-E2F08450.adsl-dyn.isp.belgacom.be) (Input/output error)
  1614. # [14:12] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  1615. # [14:13] * Joins: tonymec (tonymec@5588409.8CFE30CE.A9371869.IP)
  1616. # [14:13] * ewong|sleep is now known as ewong
  1617. # [14:13] * Joins: dne0 (Mibbit@9E69D102.29E0BAFB.1957C0DA.IP)
  1618. # [14:13] * Joins: kushagra (kushagra@A84E3D04.EA11172.520CDC98.IP)
  1619. # [14:14] * ewong is now known as ewong|sleep
  1620. # [14:15] * Joins: aleth (Instantbir@940BF8F1.B2FE6965.CCB6A436.IP)
  1621. # [14:15] * IRCMonkey654 is now known as robcee
  1622. # [14:16] * Quits: mak (chatzilla@8AE620F9.8DA921B8.2D5D3F50.IP) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  1623. # [14:16] * Joins: mak (uid24946@moz-31ABA2C0.irccloud.com)
  1624. # [14:16] * Quits: Optimize1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP) (Ping timeout)
  1625. # [14:17] * Cwiiis|Away is now known as Cwiiis
  1626. # [14:18] * Quits: dougc (dougc@moz-F16BC551.static.rev.eftel.com) (Ping timeout)
  1627. # [14:18] * Joins: givanica (Thunderbir@BD692503.2E7E5149.FB866788.IP)
  1628. # [14:19] * Quits: msucan (mihai@70F900A.1CE56E7B.C0E37CF3.IP) (Connection reset by peer)
  1629. # [14:19] * Joins: Optimizer1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP)
  1630. # [14:19] * Joins: msucan (mihai@70F900A.1CE56E7B.C0E37CF3.IP)
  1631. # [14:19] * Quits: givanica (Thunderbir@BD692503.2E7E5149.FB866788.IP) (Quit: givanica)
  1632. # [14:20] * Joins: rogeliodh (Thunderbir@A6BD84F6.C2BE31D.D67CC001.IP)
  1633. # [14:20] * Quits: wlach (wlach@5CF4484B.34721AEF.47C41102.IP) (Ping timeout)
  1634. # [14:21] * Quits: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP) (Ping timeout)
  1635. # [14:21] * Quits: Optimizer1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP) (Input/output error)
  1636. # [14:21] * Joins: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP)
  1637. # [14:22] * Joins: Optimize1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP)
  1638. # [14:23] * Quits: kushagra (kushagra@A84E3D04.EA11172.520CDC98.IP) (Ping timeout)
  1639. # [14:24] * Quits: ddahl (ddahl@moz-5F89CFB9.hsd1.il.comcast.net) (Ping timeout)
  1640. # [14:24] * Joins: alfredo (alfredo@moz-6277CBA8.dynamic-ip.hinet.net)
  1641. # [14:24] * Joins: ddahl (ddahl@moz-5F89CFB9.hsd1.il.comcast.net)
  1642. # [14:25] * Quits: ddahl (ddahl@moz-5F89CFB9.hsd1.il.comcast.net) (Input/output error)
  1643. # [14:25] * Quits: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP) (Ping timeout)
  1644. # [14:25] * Joins: givanica (Thunderbir@BD692503.2E7E5149.FB866788.IP)
  1645. # [14:26] * Quits: alfredo (alfredo@moz-6277CBA8.dynamic-ip.hinet.net) (Ping timeout)
  1646. # [14:28] * Joins: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP)
  1647. # [14:32] * Joins: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP)
  1648. # [14:32] * Joins: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP)
  1649. # [14:33] * Joins: m_gol (m_gol@moz-5B97C831.neoplus.adsl.tpnet.pl)
  1650. # [14:34] * Quits: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP) (Ping timeout)
  1651. # [14:34] * Joins: chrisccoulson (chr1s@C08D9303.9289A342.80AB4F0.IP)
  1652. # [14:35] * Quits: chrisccoulson (chr1s@C08D9303.9289A342.80AB4F0.IP) (Client exited)
  1653. # [14:35] * baku is now known as baku|away
  1654. # [14:35] * bbouvier sees that bugzilla contains a google analytics script :/
  1655. # [14:36] <@smaug> yes, it feels wrong
  1656. # [14:37] <glazou> nothing new though
  1657. # [14:37] <mcsmurf> why do we have it?
  1658. # [14:37] <mcsmurf> wanna track bugzilla usage? :o
  1659. # [14:37] <drs> it's part of the deal
  1660. # [14:38] <@smaug> bbouvier: it is probably also a security bug
  1661. # [14:38] <bbouvier> at least, we could use piwik, which is a free open source nice alternative, and that doesn't send these infos to google
  1662. # [14:38] * Joins: Enn (enn@13F2CEC5.7672369.D8E68FF6.IP)
  1663. # [14:38] <@smaug> we seem to use google analytics also in our security bugs
  1664. # [14:38] * Quits: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com) (Quit: dria)
  1665. # [14:39] <bbouvier> smaug: wow, that sounds bad
  1666. # [14:39] * Joins: cstipkovic (uid6805@moz-E77DEB21.irccloud.com)
  1667. # [14:39] <Tomcat|sheriffduty> bug 808977
  1668. # [14:39] * baku|away is now known as baku
  1669. # [14:39] * Joins: ahal (ahal@moz-7DE89BF0.cable.teksavvy.com)
  1670. # [14:39] * Joins: jhopkins (jhopkins@13F2CEC5.7672369.D8E68FF6.IP)
  1671. # [14:39] * Joins: bajaj (Adium@moz-E55DC3D0.hsd1.ca.comcast.net)
  1672. # [14:40] * Joins: juanb (jbecerra@moz-104CC309.mv.mozilla.com)
  1673. # [14:42] * jhopkins is now known as jhopkins|brb
  1674. # [14:45] * Joins: snorp (snorp@28435C98.1C2164C0.BFE160B4.IP)
  1675. # [14:45] * Quits: MarcoZ (marco.zehe@moz-2A100193.dip0.t-ipconnect.de) (Quit: Quick Firefox restart.)
  1676. # [14:45] * Joins: chrisccoulson (chr1s@C08D9303.9289A342.80AB4F0.IP)
  1677. # [14:45] <felipe> Yoric: no I didn't have to touch that test
  1678. # [14:47] <felipe> if it interfaces with AddonRepository it required no changes to keep passing. But I think it's more of an AddonManager test
  1679. # [14:48] * Joins: grapenuts (chatzilla@moz-EF816845.nycap.res.rr.com)
  1680. # [14:48] * jmaher|afk is now known as jmaher
  1681. # [14:48] <Yoric> Ok, thanks.
  1682. # [14:48] * Joins: soumyaC (uid15286@moz-E77DEB21.irccloud.com)
  1683. # [14:48] <Yoric> I believe that I finally found out the issue with the test.
  1684. # [14:48] <Yoric> file.close() called synchronously
  1685. # [14:48] <Yoric> Well, called as if it were synchronous.
  1686. # [14:49] * Joins: glob (glob@moz-DF237567.glob.com.au)
  1687. # [14:50] * Quits: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP) (Quit: Ex-Chat)
  1688. # [14:50] * Joins: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP)
  1689. # [14:51] * ewong|sleep is now known as ewong
  1690. # [14:52] * Quits: emerson (Icedove@6F3CD6F5.77F4443F.66AE2FF3.IP) (Quit: emerson)
  1691. # [14:52] * Joins: emerson (Icedove@6F3CD6F5.77F4443F.66AE2FF3.IP)
  1692. # [14:53] * Joins: mconley_ (mconley@moz-D640D16C.cable.teksavvy.com)
  1693. # [14:55] * Joins: recursive (recursive@71958799.4D49EC71.6815CE39.IP)
  1694. # [14:55] * Quits: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP) (Ping timeout)
  1695. # [14:57] * Joins: davidb|afk (uid12418@moz-31ABA2C0.irccloud.com)
  1696. # [14:59] <Yoric> felipe: \o/ est is passing
  1697. # [15:01] * Quits: mconley_ (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  1698. # [15:01] * Joins: alfredo (alfredo@moz-6277CBA8.dynamic-ip.hinet.net)
  1699. # [15:01] * jhopkins|brb is now known as jhopkins
  1700. # [15:02] <felipe> Yoric: nice!
  1701. # [15:02] * Quits: givanica (Thunderbir@BD692503.2E7E5149.FB866788.IP) (Quit: givanica)
  1702. # [15:02] * Joins: gsvelto (gsvelto@moz-1C8C231E.clienti.tiscali.it)
  1703. # [15:02] <Yoric> Two more tests to rewrite for async...
  1704. # [15:02] * rail_away is now known as rail
  1705. # [15:02] <felipe> Yoric: which bug is this?
  1706. # [15:03] * jorendorff_away is now known as jorendorff
  1707. # [15:04] <Yoric> Technically, bug 957123.
  1708. # [15:05] * Quits: digitsm (digitsm@1CF864A7.47ECF905.C146C5E5.IP) (Ping timeout)
  1709. # [15:05] * Quits: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Quit: masayuki1)
  1710. # [15:06] * Quits: janv (varga@B613191B.3EC5E826.4F33160D.IP) (Ping timeout)
  1711. # [15:07] * Joins: janv (varga@B613191B.3EC5E826.4F33160D.IP)
  1712. # [15:08] * Joins: armenzg (armenzg@moz-DC6D6B46.home1.cgocable.net)
  1713. # [15:08] * Joins: {V} (V@moz-FEE911A5.on.nl)
  1714. # [15:08] * Joins: mkohler (sid16388@moz-A42E5B7B.irccloud.com)
  1715. # [15:09] * Joins: MarcoZ (marco.zehe@moz-2A100193.dip0.t-ipconnect.de)
  1716. # [15:10] * Callek_disconnected is now known as Callek
  1717. # [15:10] <bbouvier> is there any line command tool to check whether inbound is open or closed? or a mercurial extension for that purpose?
  1718. # [15:11] * Parts: aleth (Instantbir@940BF8F1.B2FE6965.CCB6A436.IP)
  1719. # [15:12] * Joins: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl)
  1720. # [15:12] * Quits: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl) (Client exited)
  1721. # [15:12] * Joins: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl)
  1722. # [15:13] * Joins: gbrown (gbrown@moz-6075880C.cg.shawcable.net)
  1723. # [15:15] * Joins: jwei (jwei@13F2CEC5.7672369.D8E68FF6.IP)
  1724. # [15:17] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1725. # [15:17] * Quits: dne0 (Mibbit@9E69D102.29E0BAFB.1957C0DA.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1726. # [15:17] * Joins: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP)
  1727. # [15:17] * padenot is now known as padenot|away
  1728. # [15:17] <glob> bbouvier, probably... treestatus.mozilla.org has a rest api (https://treestatus.mozilla.org/help) so it would be trivial to write one
  1729. # [15:17] * Joins: coop (coop@moz-31B14B88.dsl.teksavvy.com)
  1730. # [15:18] * Quits: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: gwagner)
  1731. # [15:18] * padenot|away is now known as padenot
  1732. # [15:19] * Joins: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  1733. # [15:19] * ewong is now known as ewong|sleep
  1734. # [15:19] * Quits: annevk (annevk@514D186.F3BBB17D.144F44FA.IP) (Input/output error)
  1735. # [15:20] * kats|away is now known as kats
  1736. # [15:20] * Joins: IanN (chatzilla@4837CDFE.2ECE621A.E5F36E28.IP)
  1737. # [15:21] * Joins: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP)
  1738. # [15:21] * Joins: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1739. # [15:24] * Joins: h4writer (h4writer@moz-957FCBC.access.telenet.be)
  1740. # [15:26] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  1741. # [15:28] * Quits: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP) (Ping timeout)
  1742. # [15:31] * Joins: RyanVM (Thunderbir@moz-4C953DE7.phlapa.fios.verizon.net)
  1743. # [15:31] * Joins: AaronMT (AaronMT@13F2CEC5.7672369.D8E68FF6.IP)
  1744. # [15:32] * Quits: RealRaven (Thunderbir@94DC1789.FAD15229.C3498625.IP) (Quit: RealRaven)
  1745. # [15:32] * Joins: RealRaven (Thunderbir@94DC1789.FAD15229.C3498625.IP)
  1746. # [15:32] * Joins: darkowlzz (sunny@7B4A9AD6.38C7F33B.F44414AF.IP)
  1747. # [15:33] * Joins: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca)
  1748. # [15:34] * Quits: C4RNAGE (Anders@moz-980F7CD3.bb.online.no) (Quit: Leaving.)
  1749. # [15:35] * baku is now known as baku|away
  1750. # [15:36] <kats> bbouvier: if you get gps' mercurial extension it has a "hg treestatus" command
  1751. # [15:36] * Quits: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net) (Client exited)
  1752. # [15:36] * Joins: davidb (davidb@13F2CEC5.7672369.D8E68FF6.IP)
  1753. # [15:36] <kats> bbouvier: https://hg.mozilla.org/users/gszorc_mozilla.com/hgext-gecko-dev
  1754. # [15:37] * Joins: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP)
  1755. # [15:38] * Joins: jimm (jmathies@moz-DF439B90.pn.at.cox.net)
  1756. # [15:38] * Joins: ericchou (uid13391@moz-E77DEB21.irccloud.com)
  1757. # [15:39] <bbouvier> kats: i just made my own script, but i prefer gps' one. Thanks!
  1758. # [15:39] * Joins: Archaeopteryx (itsme@moz-8710BD92.cust.telecolumbus.net)
  1759. # [15:39] * sheppy is now known as sheppy-afk
  1760. # [15:39] * Quits: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca) (Quit: Leaving.)
  1761. # [15:39] * Quits: Optimize1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP) (Ping timeout)
  1762. # [15:41] * Joins: mconley_ (mconley@13F2CEC5.7672369.D8E68FF6.IP)
  1763. # [15:41] * Quits: RealRaven (Thunderbir@94DC1789.FAD15229.C3498625.IP) (Quit: RealRaven)
  1764. # [15:42] * Joins: RealRaven (Thunderbir@94DC1789.FAD15229.C3498625.IP)
  1765. # [15:44] * Quits: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  1766. # [15:46] * khuey|away is now known as khuey
  1767. # [15:47] * Joins: dria (dria@13F2CEC5.7672369.D8E68FF6.IP)
  1768. # [15:48] * pmoore is now known as pmoore|brb
  1769. # [15:54] * Quits: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP) (Ping timeout)
  1770. # [15:55] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Client exited)
  1771. # [15:55] * Joins: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP)
  1772. # [15:55] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  1773. # [15:55] * bz_sleep is now known as bz
  1774. # [15:55] <bz> Don't we have a push hook to look for r= in commit messages?
  1775. # [15:56] <froydnj> don't think so
  1776. # [15:56] * hwine-ooo is now known as hwine
  1777. # [15:57] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Ping timeout)
  1778. # [15:57] * Quits: tonymec (tonymec@5588409.8CFE30CE.A9371869.IP) (Input/output error)
  1779. # [15:57] * Quits: Gijs (gijs@moz-38E1C9D2.range86-164.btcentralplus.com) (Ping timeout)
  1780. # [15:58] * Joins: bkelly (sid22777@moz-E77DEB21.irccloud.com)
  1781. # [15:58] * Joins: spohl (Adium@150709A9.96232D02.465000F8.IP)
  1782. # [15:58] <bz> ok
  1783. # [15:59] <froydnj> guess you could go check the repo hooks if you really wanted
  1784. # [16:00] * Joins: ekr (ekr@moz-D7997EC8.rtfm.com)
  1785. # [16:00] * Joins: elan (elancaster@moz-1C4F0CAA.dhcp.rvsd.ca.charter.com)
  1786. # [16:01] * Joins: Gijs (gijs@moz-38E1C9D2.range86-164.btcentralplus.com)
  1787. # [16:01] * Joins: hexman (hexman@F49CAC8E.D3859C8F.B5A68B59.IP)
  1788. # [16:01] <RyanVM> bz: no, but it makes for entertaining situations at times when people think we do and feel compelled to add something as a result
  1789. # [16:02] * Quits: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de) (Input/output error)
  1790. # [16:03] * Joins: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP)
  1791. # [16:03] * Joins: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net)
  1792. # [16:04] * Quits: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net) (Input/output error)
  1793. # [16:04] * mcote|afk is now known as mcote
  1794. # [16:05] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  1795. # [16:06] * Quits: alfredo (alfredo@moz-6277CBA8.dynamic-ip.hinet.net) (Client exited)
  1796. # [16:06] * Quits: hexman (hexman@F49CAC8E.D3859C8F.B5A68B59.IP) (Quit: Leaving)
  1797. # [16:07] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  1798. # [16:07] <Tomcat|sheriffduty> mak: hm could https://tbpl.mozilla.org/php/getParsedLog.php?id=34063164&tree=Mozilla-Inbound be related to your push ?
  1799. # [16:07] * catlee-away is now known as catlee
  1800. # [16:08] * Quits: stransky (stransky@moz-107AD163.redhat.com) (Quit: Connection reset by beer)
  1801. # [16:08] * victorporof_ is now known as victorporof_|away
  1802. # [16:08] * Joins: maxli (maxli@moz-B19F68ED.student.cs.uwaterloo.ca)
  1803. # [16:08] <mak> Tomcat|sheriffduty: hard to tell, off-hand doesn't look related, but I used OS.File and that may have a relation...
  1804. # [16:08] * Joins: ggherdov_ (sid11402@moz-E77DEB21.irccloud.com)
  1805. # [16:10] * bc|afk is now known as bc
  1806. # [16:11] * Joins: TheComputerGuy0010 (thecompute@1F5960CF.43579FD0.1CE56A7.IP)
  1807. # [16:11] * baku|away is now known as baku
  1808. # [16:12] * Quits: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Boriss)
  1809. # [16:13] * Joins: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP)
  1810. # [16:14] * Joins: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  1811. # [16:15] * Quits: joshua-s (Thunderbir@moz-50F633FE.syrcny.east.verizon.net) (Ping timeout)
  1812. # [16:15] * Joins: mshal (mshal@13F2CEC5.7672369.D8E68FF6.IP)
  1813. # [16:16] * Quits: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Ping timeout)
  1814. # [16:16] * RyanVM is now known as RyanVM|sheriffduty
  1815. # [16:17] <RyanVM|sheriffduty> mak: 2 identical crashes on that push says that it is to me :)
  1816. # [16:17] <RyanVM|sheriffduty> mak: also, what's your opinion on the 3.8.3 upgrade. Do you see a pressing reason to do it right away?
  1817. # [16:17] * Joins: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP)
  1818. # [16:17] * Quits: gsvelto (gsvelto@moz-1C8C231E.clienti.tiscali.it) (Quit: Leaving)
  1819. # [16:17] * mkaply_ is now known as mkaply
  1820. # [16:17] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  1821. # [16:18] * Quits: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  1822. # [16:18] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  1823. # [16:18] * Joins: joshua-s (Thunderbir@moz-E5863041.syrcny.east.verizon.net)
  1824. # [16:19] <mak> RyanVM|sheriffduty: didn't look at it yet, but will do shortly
  1825. # [16:19] * Tomcat|sheriffduty is now known as Tomcat|afk
  1826. # [16:19] * Quits: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP) (Ping timeout)
  1827. # [16:20] <mak> RyanVM|sheriffduty: ok, I will backout and check this crash on Try
  1828. # [16:20] <RyanVM|sheriffduty> mak: thanks
  1829. # [16:20] <RyanVM|sheriffduty> x2 :)
  1830. # [16:20] * Quits: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Boriss)
  1831. # [16:20] <RyanVM|sheriffduty> if you feel it's worth taking the update, I'll get a try run going
  1832. # [16:21] * Joins: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP)
  1833. # [16:22] <mak> RyanVM|sheriffduty: will let you know
  1834. # [16:24] * Joins: lmandel (lmandel@moz-9CE00FC0.holiday-inn-express.mozilla.hq)
  1835. # [16:25] * Joins: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com)
  1836. # [16:25] * Joins: raniere_ (raniere@moz-450F4032.dsl.telesp.net.br)
  1837. # [16:25] * Quits: raniere (raniere@4310761F.C5692919.B65F468E.IP) (Ping timeout)
  1838. # [16:27] * Quits: MarcoZ (marco.zehe@moz-2A100193.dip0.t-ipconnect.de) (Quit: Rebooting.)
  1839. # [16:27] * gregglind_away is now known as gregglind_afk
  1840. # [16:27] * Quits: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Boriss)
  1841. # [16:27] * Joins: tonymec (tonymec@5588409.8CFE30CE.A9371869.IP)
  1842. # [16:28] * Quits: tonymec (tonymec@5588409.8CFE30CE.A9371869.IP) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.26a1/20140203003001])
  1843. # [16:29] * Joins: Boriss (Boriss@FCCEA34F.7672369.D8E68FF6.IP)
  1844. # [16:30] * Quits: mstange (markus@moz-AA6FE9E.dip0.t-ipconnect.de) (Quit: mstange)
  1845. # [16:31] * Joins: mstange (markus@moz-AA6FE9E.dip0.t-ipconnect.de)
  1846. # [16:31] * philor|away is now known as philor
  1847. # [16:32] * Quits: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP) (Ping timeout)
  1848. # [16:33] * Quits: heftig (heftig@moz-D746319F.unitymedia.biz) (Quit: Quitting)
  1849. # [16:34] * Quits: Boriss (Boriss@FCCEA34F.7672369.D8E68FF6.IP) (Quit: Boriss)
  1850. # [16:34] * Joins: gsvelto (gsvelto@moz-1C8C231E.clienti.tiscali.it)
  1851. # [16:34] * Joins: Boriss (Boriss@FCCEA34F.7672369.D8E68FF6.IP)
  1852. # [16:35] * Joins: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP)
  1853. # [16:35] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  1854. # [16:36] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  1855. # [16:36] * Joins: alfredo (alfredo@moz-6277CBA8.dynamic-ip.hinet.net)
  1856. # [16:37] * Joins: emtwo (msamuel@moz-318D8CE8.dsl.teksavvy.com)
  1857. # [16:37] * Joins: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net)
  1858. # [16:37] * retornam is now known as retornam|away
  1859. # [16:37] * Joins: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP)
  1860. # [16:37] * Quits: bjacob_ (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  1861. # [16:37] <mshal> jrmuizel: hey, what is the context for bug 967300? Do we need it for gfx/harfbuzz/src too?
  1862. # [16:38] <jrmuizel> mshal: we may not compile gfx/harfbuzz/src in multithreaded mode
  1863. # [16:38] * Joins: mvujovic (sid13458@moz-E77DEB21.irccloud.com)
  1864. # [16:39] * Joins: Preeti (uid13882@moz-E77DEB21.irccloud.com)
  1865. # [16:39] * Quits: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net) (Ping timeout)
  1866. # [16:39] * Joins: mccr8 (mccr8@moz-2C4A1AA8.dsl.dynamic.sonic.net)
  1867. # [16:39] <jrmuizel> mshal: the context is basically that we turned on multithreaded support in cairo, but since we don't use cairo's configure script we never detect the intel atomics api
  1868. # [16:39] * Joins: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net)
  1869. # [16:40] * Quits: alfredo (alfredo@moz-6277CBA8.dynamic-ip.hinet.net) (Ping timeout)
  1870. # [16:40] * Joins: MarcoZ (marco.zehe@moz-2A100193.dip0.t-ipconnect.de)
  1871. # [16:40] * Quits: nattokirai (nattokirai@moz-F4EE21F.dynamic.ppp.asahi-net.or.jp) (Quit: nattokirai)
  1872. # [16:40] * Quits: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net) (Connection reset by peer)
  1873. # [16:41] * Joins: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net)
  1874. # [16:41] * mconley_ is now known as mconley
  1875. # [16:42] * Joins: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net)
  1876. # [16:42] * Joins: sbeta (Thunderbir@D69AD527.CFE976B8.4A5F0685.IP)
  1877. # [16:42] * Quits: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net) (Connection reset by peer)
  1878. # [16:43] * jchen|away is now known as jchen
  1879. # [16:43] * Joins: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net)
  1880. # [16:43] <mshal> jrmuizel: ahh, ok - thanks!
  1881. # [16:44] * Joins: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP)
  1882. # [16:44] * Quits: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net) (Ping timeout)
  1883. # [16:45] * Quits: lmandel (lmandel@moz-9CE00FC0.holiday-inn-express.mozilla.hq) (Input/output error)
  1884. # [16:45] * Quits: juanb (jbecerra@moz-104CC309.mv.mozilla.com) (Ping timeout)
  1885. # [16:46] * Joins: juanb (jbecerra@moz-104CC309.mv.mozilla.com)
  1886. # [16:46] * Joins: ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP)
  1887. # [16:46] * ChanServ sets mode: +o ehsan
  1888. # [16:46] * Quits: jaoo (user@9B16F31C.CF111F0B.E21948B5.IP) (Quit: ERC Version 5.3 (IRC client for Emacs))
  1889. # [16:47] * nsm|away is now known as nsm
  1890. # [16:48] * Quits: sfoster (sfoster@moz-961AB6F2.hsd1.or.comcast.net) (Quit: Leaving)
  1891. # [16:50] * Quits: bz (bzbarsky@moz-72881629.bstnma.fios.verizon.net) (Ping timeout)
  1892. # [16:51] * Quits: TheComputerGuy0010 (thecompute@1F5960CF.43579FD0.1CE56A7.IP) (Ping timeout)
  1893. # [16:52] * Quits: h4writer (h4writer@moz-957FCBC.access.telenet.be) (Client exited)
  1894. # [16:53] * Quits: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com) (Client exited)
  1895. # [16:53] * Joins: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP)
  1896. # [16:54] * Joins: Ami_Ty_ (Amie@moz-F24FF6E8.hsd1.ca.comcast.net)
  1897. # [16:54] * Joins: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com)
  1898. # [16:55] * Joins: mixedpuppy (mixedpuppy@9F8D5C23.842753D1.42082411.IP)
  1899. # [16:56] * Quits: Ami_Ty_ (Amie@moz-F24FF6E8.hsd1.ca.comcast.net) (Ping timeout)
  1900. # [16:57] * Joins: bogdan_maris (Mibbit@28C4EA76.976FBEE.5BC07656.IP)
  1901. # [16:57] * Quits: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: gwagner)
  1902. # [16:58] <Sylvestre> Is there any meta bug for aurora and the new version of sync ? (for the release note of aurora 29)
  1903. # [16:58] * Joins: WaltS48 (Thunderbir@moz-D9CC270F.pitbpa.east.verizon.net)
  1904. # [16:58] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Client exited)
  1905. # [16:59] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  1906. # [17:00] * Joins: till (till@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1907. # [17:00] * Quits: tedders1 (tedders1@87C1F78E.1DE10CA8.D8E68FF6.IP) (Client exited)
  1908. # [17:00] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Ping timeout)
  1909. # [17:01] * Joins: dne0 (Mibbit@9E69D102.29E0BAFB.1957C0DA.IP)
  1910. # [17:02] * Joins: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1911. # [17:04] * Quits: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP) (Ping timeout)
  1912. # [17:04] * Joins: h4writer (h4writer@moz-957FCBC.access.telenet.be)
  1913. # [17:05] * Quits: botond-laptop (chatzilla@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  1914. # [17:05] * Joins: dveditz (dveditz@moz-67794A0A.hsd1.ca.comcast.net)
  1915. # [17:05] * ChanServ sets mode: +o dveditz
  1916. # [17:05] <gps> taras_: I don't have graphite's API memorized any more. my trick was to go through the web interface and see what functions are available. once the graph updates, you can right click and copy image location and examine the URL
  1917. # [17:05] * pmoore|brb is now known as pmoore
  1918. # [17:06] * Quits: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: gwagner)
  1919. # [17:06] * Quits: adalucinet (Mibbit@28C4EA76.976FBEE.5BC07656.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1920. # [17:06] * Quits: jhorak (jhorak@moz-107AD163.redhat.com) (Quit: Leaving)
  1921. # [17:06] * Quits: snig_wal (chatzilla@9B9315E1.A6025CA.1C37C358.IP) (Ping timeout)
  1922. # [17:07] * Joins: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP)
  1923. # [17:07] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  1924. # [17:07] * Joins: tonymec (tonymec@5588409.8CFE30CE.A9371869.IP)
  1925. # [17:08] * Quits: sbeta (Thunderbir@D69AD527.CFE976B8.4A5F0685.IP) (Quit: sbeta)
  1926. # [17:09] * Quits: lzzluca (lzzluca@moz-10429979.static.virginmediabusiness.co.uk) (Client exited)
  1927. # [17:09] * Joins: lzzluca (lzzluca@moz-10429979.static.virginmediabusiness.co.uk)
  1928. # [17:09] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  1929. # [17:09] * Joins: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP)
  1930. # [17:09] * Joins: bjacob_ (bjacob@13F2CEC5.7672369.D8E68FF6.IP)
  1931. # [17:11] * Quits: cers (csonne@965B4807.AAD27CA2.192BA9D5.IP) (Connection reset by peer)
  1932. # [17:11] * Quits: h4writer (h4writer@moz-957FCBC.access.telenet.be) (Ping timeout)
  1933. # [17:11] * jcranmer|away is now known as jcranmer
  1934. # [17:11] * Joins: cers (csonne@965B4807.AAD27CA2.192BA9D5.IP)
  1935. # [17:12] * Quits: gsvelto (gsvelto@moz-1C8C231E.clienti.tiscali.it) (Quit: Leaving)
  1936. # [17:12] * Quits: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP) (Ping timeout)
  1937. # [17:12] * Quits: squeakytoy (squeakytoy@7061EEAD.41CBD7B1.148A607A.IP) (Quit: Leaving)
  1938. # [17:14] * Joins: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP)
  1939. # [17:15] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  1940. # [17:16] * Quits: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP) (Quit: Ex-Chat)
  1941. # [17:16] * Quits: michal (michal@moz-6CE1017D.broadband17.iol.cz) (Ping timeout)
  1942. # [17:16] * Joins: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP)
  1943. # [17:17] * retornam|away is now known as retornam
  1944. # [17:18] * Joins: bitgeeky (bitgeeky@9B9315E1.A6025CA.1C37C358.IP)
  1945. # [17:18] * Quits: glazou (glazou@D8B9C081.E820043D.D4C04133.IP) (Quit: glazou)
  1946. # [17:18] * Quits: bogdan_maris (Mibbit@28C4EA76.976FBEE.5BC07656.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1947. # [17:19] * Joins: serge (Thunderbir@moz-C5779BFD.dsl.teksavvy.com)
  1948. # [17:19] * Quits: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP) (Quit: brendan)
  1949. # [17:19] * gregglind_afk is now known as gregglind
  1950. # [17:20] * Quits: till (till@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  1951. # [17:20] * Joins: till (till@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1952. # [17:21] * Quits: schien (anonymous@moz-46B670D1.dynamic.hinet.net) (Quit: sleep)
  1953. # [17:22] * Quits: WaltS48 (Thunderbir@moz-D9CC270F.pitbpa.east.verizon.net) (Quit: WaltS48 has gone elsewhere)
  1954. # [17:23] * Quits: till (till@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Client exited)
  1955. # [17:23] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  1956. # [17:24] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  1957. # [17:24] * Joins: botond-laptop (chatzilla@13F2CEC5.7672369.D8E68FF6.IP)
  1958. # [17:24] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  1959. # [17:25] * Joins: jfkthame (jfkthame@F87A0877.60847916.3E2A4E92.IP)
  1960. # [17:25] * Joins: sbeta (Thunderbir@D69AD527.CFE976B8.4A5F0685.IP)
  1961. # [17:25] * gaye|dinner is now known as gaye
  1962. # [17:25] * Quits: tonymec|away (tonymec@5588409.8CFE30CE.A9371869.IP) (Ping timeout)
  1963. # [17:25] * Quits: cers (csonne@965B4807.AAD27CA2.192BA9D5.IP) (Quit: Computer has gone to sleep.)
  1964. # [17:26] <mshal> jrmuizel: are you able to build on linux with your patch? It fails to build cairo-base85-stream.c for me
  1965. # [17:26] <jrmuizel> mshal: hmmm
  1966. # [17:26] <jrmuizel> mshal: I hadn't tried. What error do you get?
  1967. # [17:27] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Quit: )
  1968. # [17:27] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  1969. # [17:27] * Joins: mwobensmith (mwobensmit@12E4AD8B.27376607.189F3E15.IP)
  1970. # [17:27] * Joins: sunfish (chatzilla@moz-8DE7F965.dsl.dynamic.sonic.net)
  1971. # [17:28] <mshal> jrmuizel: https://pastebin.mozilla.org/4183035
  1972. # [17:28] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Input/output error)
  1973. # [17:28] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  1974. # [17:28] <jrmuizel> mshal: thanks I'll look into it
  1975. # [17:28] <mshal> cool, thanks
  1976. # [17:29] * Joins: tonymec|away (tonymec@5588409.8CFE30CE.A9371869.IP)
  1977. # [17:29] * Joins: stransky (stransky@moz-59D79C36.broadband2.iol.cz)
  1978. # [17:29] * Joins: vikstrous (v@13F2CEC5.7672369.D8E68FF6.IP)
  1979. # [17:30] * Quits: vikstrous (v@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  1980. # [17:30] * Joins: vikstrous (v@13F2CEC5.7672369.D8E68FF6.IP)
  1981. # [17:30] * Joins: till (till@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1982. # [17:30] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Ping timeout)
  1983. # [17:30] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  1984. # [17:31] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  1985. # [17:31] <hrw> hi guys
  1986. # [17:32] <froydnj> hello hrw
  1987. # [17:32] * Joins: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net)
  1988. # [17:33] <hrw> froydnj: tomorrow I plan to get firefox 27 with my patches. then will update bugzilla with those which need that
  1989. # [17:33] * jhopkins is now known as jhopkins|afk
  1990. # [17:34] <hrw> fosdem sucked lot of time. and tomorrow trip to devconf.cz again takes time
  1991. # [17:34] * Quits: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
  1992. # [17:35] * Quits: gcp (gcp@moz-9CEB1C98.access.telenet.be) (Ping timeout)
  1993. # [17:35] <jrmuizel> mshal: it turns out the cairo wants defines for SIZEOF_VOID_P, SIZEOF_INT
  1994. # [17:35] <mshal> ahh
  1995. # [17:35] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  1996. # [17:35] * Joins: gcp (gcp@moz-9CEB1C98.access.telenet.be)
  1997. # [17:35] * rail is now known as rail-lunch
  1998. # [17:35] * Joins: BigBro (BigBro@D6C2B1D2.3D53C2EC.8154E413.IP)
  1999. # [17:35] * catlee is now known as catlee-lunch
  2000. # [17:36] <jrmuizel> mshal: I guess autconf usually gives you these things?
  2001. # [17:36] <mshal> jrmuizel: those will depend on 32/64bit, right?
  2002. # [17:36] <jrmuizel> mshal: yeah
  2003. # [17:36] * Quits: BigBro (BigBro@D6C2B1D2.3D53C2EC.8154E413.IP) (Quit: Bye)
  2004. # [17:37] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Ping timeout)
  2005. # [17:37] * sheppy-afk is now known as sheppy
  2006. # [17:37] <mshal> I'm not sure why it couldn't just use sizeof(void *) instead of generating it from configure
  2007. # [17:37] <mshal> must be some reason :)
  2008. # [17:38] * mccr8 is now known as mccr8|afk
  2009. # [17:38] <froydnj> probably because sizeof(void*) isn't valid in preprocessor conditionals
  2010. # [17:38] <mshal> ahh
  2011. # [17:38] * Joins: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP)
  2012. # [17:38] <froydnj> (although you could check __LP64__ or _WIN64 or similar)
  2013. # [17:38] * Joins: gsvelto (gsvelto@moz-1C8C231E.clienti.tiscali.it)
  2014. # [17:39] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  2015. # [17:39] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  2016. # [17:40] * Quits: John-Galt (kris@moz-882434A3.hsd1.or.comcast.net) (Ping timeout)
  2017. # [17:40] * Joins: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2018. # [17:41] * Quits: mwobensmith (mwobensmit@12E4AD8B.27376607.189F3E15.IP) (Quit: Leaving.)
  2019. # [17:41] * Joins: pranavk (pranav@6BFC1AC1.7B79ED8.1C37C358.IP)
  2020. # [17:42] * raniere_ is now known as raniere
  2021. # [17:42] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  2022. # [17:42] * Joins: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP)
  2023. # [17:42] * Joins: jrm2k6 (jrm2k6@moz-876091EF.sd.sd.cox.net)
  2024. # [17:42] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  2025. # [17:42] * Joins: jonasfj (jonasfj@moz-F9C6FBE1.hsd1.ca.comcast.net)
  2026. # [17:43] * Joins: John-Galt (kris@moz-882434A3.hsd1.or.comcast.net)
  2027. # [17:44] * Joins: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net)
  2028. # [17:44] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  2029. # [17:44] <jrmuizel> mshal: what's the best way for us to get those variables from autoconf into cairo?
  2030. # [17:44] * Quits: jwei (jwei@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Leaving.)
  2031. # [17:45] * Quits: sbeta (Thunderbir@D69AD527.CFE976B8.4A5F0685.IP) (Quit: sbeta)
  2032. # [17:45] * Quits: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net) (Ping timeout)
  2033. # [17:45] * Joins: mwobensmith (mwobensmit@12E4AD8B.27376607.189F3E15.IP)
  2034. # [17:47] * Joins: Mossop (dtownsend@53343B0D.8DCA2D5.5E2862A8.IP)
  2035. # [17:48] * ahal is now known as ahal|afk
  2036. # [17:48] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2037. # [17:48] * Quits: wlach (wlach@CE1D4A38.D6711D10.47C41102.IP) (Ping timeout)
  2038. # [17:49] <hrw> jrmuizel: put them into config.h.in?
  2039. # [17:49] * Joins: givanica (Thunderbir@BD692503.2E7E5149.FB866788.IP)
  2040. # [17:49] <jrmuizel> hrw: I don't know if the mozilla config.h.in makes it into the cairo build process
  2041. # [17:50] * Joins: ehugg (chatzilla@5AD0A91D.29102B70.6CD50604.IP)
  2042. # [17:50] <hrw> jrmuizel: so put into cairo config.h.in?
  2043. # [17:50] <jrmuizel> hrw: I don't think we generate config.h from a config.h.in for cairo
  2044. # [17:50] <hrw> ah, ok
  2045. # [17:50] <RyanVM|sheriffduty> jrmuizel: how far are we from being able to kill cairo?
  2046. # [17:51] <jrmuizel> RyanVM|sheriffduty: far
  2047. # [17:51] * Quits: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP) (Quit: brendan)
  2048. # [17:51] <RyanVM|sheriffduty> when did we last update it? like 2010 timeframe?
  2049. # [17:51] <jrmuizel> RyanVM|sheriffduty: yeah
  2050. # [17:51] <jrmuizel> RyanVM|sheriffduty: it should be easier to update soon
  2051. # [17:51] <RyanVM|sheriffduty> I think pixman's been updated more recently
  2052. # [17:51] <froydnj> ekr: ping on bug 928930 review
  2053. # [17:51] * Quits: gwagner (Gregor@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: gwagner)
  2054. # [17:51] * Joins: wlach (wlach@87D57A78.DE578A3B.47C41102.IP)
  2055. # [17:51] <jrmuizel> as we drop our usage of some of the more customized parts
  2056. # [17:51] * khuey is now known as khuey|away
  2057. # [17:52] * Joins: jammink (textual@moz-BBE3ABD.mv.mozilla.com)
  2058. # [17:53] * Joins: mchang (mchang@BE99BE02.84BCE52A.BCAEBB33.IP)
  2059. # [17:53] * Joins: bent (chatzilla@87C1F78E.1DE10CA8.D8E68FF6.IP)
  2060. # [17:53] * Joins: dbaron (dbaron@moz-B3F1D17A.dsl.dynamic.sonic.net)
  2061. # [17:53] * ChanServ sets mode: +ao dbaron dbaron
  2062. # [17:54] * Quits: gcp (gcp@moz-9CEB1C98.access.telenet.be) (Ping timeout)
  2063. # [17:54] * Joins: tomer (tomer@moz-F45DAEFD.static.012.net.il)
  2064. # [17:54] * Joins: metacode (sourabh@BB116D.78701726.388CF16F.IP)
  2065. # [17:54] * nsm is now known as nsm|away
  2066. # [17:55] * Joins: gcp (gcp@moz-9CEB1C98.access.telenet.be)
  2067. # [17:55] * Quits: @ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2068. # [17:55] * Quits: wlach (wlach@87D57A78.DE578A3B.47C41102.IP) (Quit: Ex-Chat)
  2069. # [17:55] * Joins: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca)
  2070. # [17:55] * Joins: lmandel (lmandel@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2071. # [17:55] * Joins: jedp (jedp@moz-8E6E760A.dsl.dynamic.sonic.net)
  2072. # [17:56] * Quits: bent (chatzilla@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  2073. # [17:56] * Joins: ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP)
  2074. # [17:56] * ChanServ sets mode: +o ehsan
  2075. # [17:56] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  2076. # [17:56] * metacode is now known as _metacode
  2077. # [17:57] * _metacode is now known as metacode
  2078. # [17:57] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  2079. # [17:57] * Quits: naveed (nihsanulla@2644E933.3F46CA9A.AA745434.IP) (Input/output error)
  2080. # [17:57] * Quits: lmandel (lmandel@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  2081. # [17:58] * Quits: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2082. # [17:58] * Joins: naveed (nihsanulla@2644E933.3F46CA9A.AA745434.IP)
  2083. # [17:59] * Joins: sfoster (sfoster@moz-37AA60E3.hsd1.wa.comcast.net)
  2084. # [17:59] * Quits: @dveditz (dveditz@moz-67794A0A.hsd1.ca.comcast.net) (Input/output error)
  2085. # [17:59] * Quits: metacode (sourabh@BB116D.78701726.388CF16F.IP) (Quit: Peace Out!)
  2086. # [17:59] * Quits: nical (nico@87C1F78E.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  2087. # [17:59] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  2088. # [17:59] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  2089. # [18:00] * Joins: metacode (sourabh@BB116D.78701726.388CF16F.IP)
  2090. # [18:01] * Joins: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net)
  2091. # [18:01] * Quits: tomer (tomer@moz-F45DAEFD.static.012.net.il) (Input/output error)
  2092. # [18:02] * Joins: mayhemer (Miranda@moz-2F75AE00.broadband6.iol.cz)
  2093. # [18:02] * Joins: paolo_ (paolo@moz-FAA5AC9.retail.telecomitalia.it)
  2094. # [18:02] * Joins: FabioMag_ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br)
  2095. # [18:03] * Joins: tomer (tomer@moz-F45DAEFD.static.012.net.il)
  2096. # [18:03] * Quits: tzimmermann (tzimmerman@moz-ED2B34EA.pools.arcor-ip.net) (Quit: Ex-Chat)
  2097. # [18:04] * Joins: ejpbruel (ejpbruel@moz-366E8346.cm-11-1b.dynamic.ziggo.nl)
  2098. # [18:04] * Joins: FabioMa__ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br)
  2099. # [18:04] * Quits: FabioMag_ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br) (Ping timeout)
  2100. # [18:05] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2101. # [18:05] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2102. # [18:05] * Quits: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP) (Connection reset by peer)
  2103. # [18:05] * Joins: Rik_ (rik@87C1F78E.1DE10CA8.D8E68FF6.IP)
  2104. # [18:06] * armenzg is now known as armenzg_brb
  2105. # [18:06] <@smaug> !seen gerard-majax
  2106. # [18:06] <@killer> I don't know who gerard-majax is.
  2107. # [18:06] * Quits: FabioMa__ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br) (Ping timeout)
  2108. # [18:07] * Joins: lmandel (lmandel@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2109. # [18:07] * jlund|afk is now known as jlund
  2110. # [18:07] * nsm|away is now known as nsm
  2111. # [18:07] * Quits: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com) (Connection reset by peer)
  2112. # [18:07] * coop is now known as coop|mtg
  2113. # [18:08] * Quits: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro) (Ping timeout)
  2114. # [18:08] * jlund is now known as jlund|buildduty
  2115. # [18:08] <padenot> smaug: I just saw him packing his laptop and going to the gaia meeting
  2116. # [18:08] <snorp> RyanVM|sheriffduty: is observing the leave-open whiteboard tag automated or something you look at yourself
  2117. # [18:08] * Joins: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com)
  2118. # [18:09] * Joins: gabor (gabor@5ED9E6DA.CB3251F2.284344F5.IP)
  2119. # [18:09] * Joins: aklotz (Thunderbir@FD1E68D2.64455FB.F97ED6F2.IP)
  2120. # [18:09] <@smaug> padenot: k
  2121. # [18:09] * Quits: mixedpuppy (mixedpuppy@9F8D5C23.842753D1.42082411.IP) (Quit: mixedpuppy)
  2122. # [18:10] * Joins: heftig (heftig@moz-513A856E.dip0.t-ipconnect.de)
  2123. # [18:10] * Joins: ckerschb (ckerschb@moz-82777327.ics.uci.edu)
  2124. # [18:10] <till> snorp: I'm pretty sure it's automated
  2125. # [18:10] * Joins: squeakytoy (squeakytoy@moz-79070305.dynamic.se.alltele.net)
  2126. # [18:10] * Quits: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net) (Ping timeout)
  2127. # [18:10] * IRCMonkey40342 is now known as rhelmer
  2128. # [18:11] * Quits: bjacob_ (bjacob@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2129. # [18:11] * Joins: bz (bzbarsky@moz-72881629.bstnma.fios.verizon.net)
  2130. # [18:11] * ChanServ sets mode: +o bz
  2131. # [18:12] * Quits: paolo_ (paolo@moz-FAA5AC9.retail.telecomitalia.it) (Ping timeout)
  2132. # [18:12] * Quits: gsvelto (gsvelto@moz-1C8C231E.clienti.tiscali.it) (Quit: Leaving)
  2133. # [18:12] * terrence-afk is now known as terrence
  2134. # [18:12] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  2135. # [18:13] * Quits: jrmuizel (jrmuizel@moz-E039A32.cable.teksavvy.com) (Client exited)
  2136. # [18:13] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  2137. # [18:14] * Joins: TimAbraldes (quassel@moz-7FD19BDC.hsd1.or.comcast.net)
  2138. # [18:14] * Joins: jwalden (chatzilla@moz-BBE3ABD.mv.mozilla.com)
  2139. # [18:14] * jimm is now known as jimm-lunch
  2140. # [18:14] * Quits: dne0 (Mibbit@9E69D102.29E0BAFB.1957C0DA.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2141. # [18:14] * Quits: kaze (kaze@87C1F78E.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  2142. # [18:14] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  2143. # [18:14] * Quits: andreasn (andreasn@moz-846D011E.redhat.com) (Ping timeout)
  2144. # [18:14] * mccr8|afk is now known as mccr8
  2145. # [18:15] * Joins: bjacob_ (bjacob@13F2CEC5.7672369.D8E68FF6.IP)
  2146. # [18:15] * Quits: mccr8 (mccr8@moz-2C4A1AA8.dsl.dynamic.sonic.net) (Quit: computer sleep)
  2147. # [18:16] * Joins: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP)
  2148. # [18:16] <derf> What component are we using for Persona now?
  2149. # [18:16] * Joins: kaze (kaze@87C1F78E.1DE10CA8.D8E68FF6.IP)
  2150. # [18:16] * Quits: jrm2k6 (jrm2k6@moz-876091EF.sd.sd.cox.net) (Client exited)
  2151. # [18:16] * Quits: wolfiR (wolfiR@moz-97AB7B3A.open-xchange.com) (Input/output error)
  2152. # [18:16] <padenot> Identify ?
  2153. # [18:17] * Joins: jrm2k6 (jrm2k6@moz-876091EF.sd.sd.cox.net)
  2154. # [18:17] <derf> Hah, in Core, okay. I would not have looked for it there.
  2155. # [18:17] * Joins: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  2156. # [18:17] * ctalbert|afk is now known as ctalbert
  2157. # [18:18] * Quits: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP) (Ping timeout)
  2158. # [18:19] <givanica> hi. Does anyone know if there is any way to find out what data was set when drag operation started? I need this for Firefox ui events like dragging bookmarks, or current url. I mean, is there an easier option than finding the code ?
  2159. # [18:19] <@smaug> Enn: ^
  2160. # [18:19] * Quits: simo (simo@2D233D57.3194ED15.B1865714.IP) (Ping timeout)
  2161. # [18:20] * Quits: chrisccoulson (chr1s@C08D9303.9289A342.80AB4F0.IP) (Ping timeout)
  2162. # [18:20] <@gavin> derf: Core::Identity is not the right place for persona-the-web-service, is that what you're asking about?
  2163. # [18:21] * Parts: metacode (sourabh@BB116D.78701726.388CF16F.IP)
  2164. # [18:21] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Ping timeout)
  2165. # [18:21] <derf> gavin: It has decided my browser is unsupported.
  2166. # [18:21] <derf> Worked two weeks ago.
  2167. # [18:21] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  2168. # [18:21] * Joins: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com)
  2169. # [18:22] <RyanVM|sheriffduty> snorp: automatic
  2170. # [18:22] <snorp> RyanVM|sheriffduty: ok I filed https://bugzilla.mozilla.org/show_bug.cgi?id=967101
  2171. # [18:23] <snorp> RyanVM|sheriffduty: so if you guys have opinions...
  2172. # [18:23] <RyanVM|sheriffduty> fwiw, our regex looks for a few common variants
  2173. # [18:23] * armenzg_brb is now known as armenzg
  2174. # [18:23] * Joins: lizzard_ (ehenry@981AA104.E81F12CD.76F66111.IP)
  2175. # [18:23] <snorp> really
  2176. # [18:23] * Quits: Enn (enn@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2177. # [18:23] * Joins: xwaynec (xwaynec@moz-C475BDB7.hinet-ip.hinet.net)
  2178. # [18:23] * Quits: lmandel (lmandel@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  2179. # [18:23] <RyanVM|sheriffduty> https://mxr.mozilla.org/webtools-central/source/tbpl/mcmerge/js/Config.js#19
  2180. # [18:23] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Ping timeout)
  2181. # [18:23] * lizzard_ is now known as lizzard
  2182. # [18:24] <snorp> RyanVM|sheriffduty: I've probably seen it a few ways
  2183. # [18:24] <derf> gavin: Unfortunately I'd already filed bug 967597 when you said that. I'm happy to move it to a better component.
  2184. # [18:24] <snorp> heh
  2185. # [18:24] * Joins: lmandel (lmandel@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2186. # [18:24] <RyanVM|sheriffduty> snorp: also, tbpl will need to be fixed ot look for the keyword once it's added
  2187. # [18:24] <@gavin> derf: you use SeaMonkey o_O
  2188. # [18:24] * Quits: pnkfelix (pnkfelix@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: rcirc on GNU Emacs 24.3.1)
  2189. # [18:24] <RyanVM|sheriffduty> who's volunteering to do that patch?
  2190. # [18:24] <snorp> RyanVM|sheriffduty: yeah
  2191. # [18:24] <derf> gavin: I do!
  2192. # [18:24] * Joins: paolo_ (paolo@moz-5AC75460.retail.telecomitalia.it)
  2193. # [18:24] <snorp> RyanVM|sheriffduty: nobody :)
  2194. # [18:24] <RyanVM|sheriffduty> snorp: fun
  2195. # [18:25] * Quits: bajaj (Adium@moz-E55DC3D0.hsd1.ca.comcast.net) (Quit: Leaving.)
  2196. # [18:25] <@bz> gps, glandium: ping
  2197. # [18:25] * jedp is now known as jedp|BART
  2198. # [18:26] <philor> RyanVM|sheriffduty: typo, you meant "before the keyword is added"
  2199. # [18:26] * Quits: erahm (Adium@moz-A511F1A0.hsd1.or.comcast.net) (Quit: Leaving.)
  2200. # [18:26] <RyanVM|sheriffduty> philor: yes
  2201. # [18:26] <@bz> gps, glandium: Trying to understand what https://bugzilla.mozilla.org/show_bug.cgi?id=925350 means for "mach build dom/bindings"
  2202. # [18:27] * Joins: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP)
  2203. # [18:27] <RyanVM|sheriffduty> we really need a Webspeech component
  2204. # [18:27] * Joins: mt (mt@moz-BBE3ABD.mv.mozilla.com)
  2205. # [18:27] <gps> bz: since dom/bindings isn't in build/dumbmake-dependencies, I don't think it means much
  2206. # [18:27] * Joins: jduell (jduell@moz-2B2B9F2.hsd1.wa.comcast.net)
  2207. # [18:28] <gps> bz: we may want to introduce a special make target that ensures all codegen is up to date. or we should add that to |binaries|
  2208. # [18:28] * Joins: michal (michal@moz-167B440E.broadband6.iol.cz)
  2209. # [18:28] * Quits: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr_)
  2210. # [18:28] * Quits: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2211. # [18:29] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  2212. # [18:30] <@gavin> derf: you probably actually want an issue on https://github.com/mozilla/persona
  2213. # [18:30] * Joins: Mook_as (mook@moz-1FCC0032.activestate.com)
  2214. # [18:31] * Quits: lizzard (ehenry@981AA104.E81F12CD.76F66111.IP) (Ping timeout)
  2215. # [18:31] * Quits: jedp|BART (jedp@moz-8E6E760A.dsl.dynamic.sonic.net) (Quit: Computer has gone to sleep.)
  2216. # [18:31] * Joins: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net)
  2217. # [18:31] * rail-lunch is now known as rail
  2218. # [18:32] <derf> gavin: Ah, thanks for transferring it.
  2219. # [18:32] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2220. # [18:32] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  2221. # [18:33] <derf> Or oh, Jared transferred it.
  2222. # [18:33] * Joins: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  2223. # [18:33] <jaws> hey
  2224. # [18:33] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2225. # [18:33] * Joins: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  2226. # [18:34] <@gavin> other jared
  2227. # [18:34] <jaws> darn
  2228. # [18:34] <jaws> too many jared's now :)
  2229. # [18:34] <jaws> jareds*
  2230. # [18:34] * Quits: ekr (ekr@moz-D7997EC8.rtfm.com) (Ping timeout)
  2231. # [18:34] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  2232. # [18:34] * Joins: jgriffin (jgriffin@moz-C55C3E25.hsd1.wa.comcast.net)
  2233. # [18:35] * Joins: simo (simo@63170536.3CB02B52.B1865714.IP)
  2234. # [18:35] <jcranmer> but did he go to Jared's?
  2235. # [18:35] <jaws> ssshhh....
  2236. # [18:35] * Quits: ekr_ (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Ping timeout)
  2237. # [18:35] * Joins: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com)
  2238. # [18:36] * Quits: jammink (textual@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2239. # [18:36] * Quits: MarcoZ (marco.zehe@moz-2A100193.dip0.t-ipconnect.de) (Quit: zzzzzzzzz)
  2240. # [18:36] * Joins: jammink (textual@moz-BBE3ABD.mv.mozilla.com)
  2241. # [18:37] * Joins: miketaylr (mtaylor@moz-C07D5168.p2p.sfo1.mozilla.com)
  2242. # [18:39] * jhopkins|afk is now known as jhopkins
  2243. # [18:39] * Joins: karl (karl@moz-C433B975.jetstream.xtra.co.nz)
  2244. # [18:40] * catlee-lunch is now known as catlee
  2245. # [18:40] <@bz> gps: I'm confused
  2246. # [18:40] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  2247. # [18:40] <@bz> gps: currently "mach build dom/bindings" does codegen, compiles the C++, and links XUL
  2248. # [18:41] <@bz> gps: Will the removal of dumbmake leave the behavior as-is?
  2249. # [18:41] <@bz> gps: or will it break it?
  2250. # [18:41] <gps> bz: dumbmake does not impact |mach build dom/bindings| today
  2251. # [18:41] <@bz> gps: ok
  2252. # [18:41] <ochameau> gps: thanks for the immediate review!
  2253. # [18:41] * Quits: bnicholson (bnicholson@moz-46A94A2D.hsd1.ca.comcast.net) (Ping timeout)
  2254. # [18:41] <@bz> gps: Them I'm _really_ confused....
  2255. # [18:41] <@bz> gps: because it sure sounded like the part that links XUL there is dumbmake...
  2256. # [18:42] * Joins: arnaud_bienner (arno@moz-A1109EC1.dsl.sta.abo.bbox.fr)
  2257. # [18:42] <gps> bz: actually, no. dumbmake builds toolkit/library
  2258. # [18:42] <@bz> gps: we have a target for doing codegen on its own already, btw. It's called "export"
  2259. # [18:42] <gps> bz: so what you want is a convenient target to do export + binaries
  2260. # [18:42] <@bz> gps: That's different from linking libxul?
  2261. # [18:42] <@bz> gps: er... does binaries not do export right now?
  2262. # [18:43] <gps> bz: not all of it
  2263. # [18:43] <ejpbruel> bz: i have a quick question for you when available
  2264. # [18:43] <gps> it only processes file copies for things like EXPORTS
  2265. # [18:43] * Quits: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  2266. # [18:43] <@bz> gps: I see
  2267. # [18:43] * Joins: gsvelto (gsvelto@moz-1C8C231E.clienti.tiscali.it)
  2268. # [18:43] <@bz> gps: basically, I'd like a target that allows me to change webidl files or codegen and then not have to do a full rebuild
  2269. # [18:43] <@bz> gps: and give me a build with my changes
  2270. # [18:43] <gps> bz: we can do that. file a bug. make it block the removal of dumbmake
  2271. # [18:43] <@bz> gps: right now "mach build dom/bindings" does that
  2272. # [18:43] <@bz> gps: ok
  2273. # [18:44] * Quits: Boriss (Boriss@FCCEA34F.7672369.D8E68FF6.IP) (Quit: Boriss)
  2274. # [18:44] * Joins: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net)
  2275. # [18:45] <@bz> ejpbruel: what's up?
  2276. # [18:45] <@bz> gps: https://bugzilla.mozilla.org/show_bug.cgi?id=967623
  2277. # [18:45] * Joins: nrc|afk (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  2278. # [18:45] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2279. # [18:45] <ejpbruel> bz: hi
  2280. # [18:45] * Joins: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP)
  2281. # [18:46] <ejpbruel> bz: i managed to create a XPCOM service with your directions of last week
  2282. # [18:46] <ejpbruel> bz: now im trying to create an interface for this service to implement
  2283. # [18:46] * Quits: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net) (Ping timeout)
  2284. # [18:46] <ejpbruel> bz: ive created an idl file, and added a XPIDL_SOURCES line to dom/workers/moz.build
  2285. # [18:46] <ejpbruel> bz: mach complains that i need a XPIDL_MODULE line, so i added that as well
  2286. # [18:47] <ejpbruel> bz: but now it complains about a syntax error with no further info
  2287. # [18:47] * Quits: smontagu (chatzilla@88F51059.F3BBB17D.144F44FA.IP) (Ping timeout)
  2288. # [18:47] <@bz> ejpbruel: "it" being mach or the xpidl compiler?
  2289. # [18:47] <ejpbruel> bz: the latter, afaict
  2290. # [18:47] <@bz> ok
  2291. # [18:47] <@bz> can I see your exact build output and your idl?
  2292. # [18:48] <ejpbruel> bz: xpidl.IDLError: error: Syntax Error at end of file. Possibly due to missing semicolon(;), braces(}) or both, None
  2293. # [18:48] <ejpbruel> bz: sure, do you also want the moz.build changes?
  2294. # [18:48] <@bz> Do you have a missing semicolon?
  2295. # [18:48] <@bz> (that's not "no further info"!)
  2296. # [18:48] <ejpbruel> bz: heh. i mean im 99% sure i did not mess up the semicolon
  2297. # [18:48] <@bz> ejpbruel: no, just the idl is good
  2298. # [18:48] <ejpbruel> bz: so that error message seems to be wrong
  2299. # [18:48] * Joins: chrisccoulson (chr1s@C08D9303.9289A342.80AB4F0.IP)
  2300. # [18:48] * Joins: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2301. # [18:49] * Joins: drno (nohlmeier@moz-8C24FDC2.hsd1.ca.comcast.net)
  2302. # [18:49] <ejpbruel> bz: sorry, should have phrased that better
  2303. # [18:49] * Quits: chrisccoulson (chr1s@C08D9303.9289A342.80AB4F0.IP) (Client exited)
  2304. # [18:51] <ejpbruel> bz: hold on, having some clipboard weirdness
  2305. # [18:51] * Joins: pnkfelix (pnkfelix@moz-43495417.fbx.proxad.net)
  2306. # [18:53] * Joins: squib (squib@moz-5175C098.dhcp.mdsn.wi.charter.com)
  2307. # [18:53] * philor is now known as philor|away
  2308. # [18:53] <@bz> ejpbruel: email is ok too
  2309. # [18:53] <ejpbruel> bz: heres the IDL: http://pastebin.mozilla.org/4183591
  2310. # [18:53] <ejpbruel> build output coming up
  2311. # [18:53] <mak> RyanVM|sheriffduty: Yes, I think 3.8.3 is worth it
  2312. # [18:53] <ejpbruel> turns out pbcopy doesnt work in tmux :)
  2313. # [18:53] <@bz> ejpbruel: no need
  2314. # [18:53] <RyanVM|sheriffduty> mak: ok
  2315. # [18:53] <@bz> ejpbruel: You're missing a semicolon. ;)
  2316. # [18:53] <@bz> ejpbruel: after the closing curly.
  2317. # [18:54] <@bz> ejpbruel: just like in C++ for classes and structs and all
  2318. # [18:54] <ejpbruel> bz: oh!
  2319. # [18:54] * Quits: emtwo (msamuel@moz-318D8CE8.dsl.teksavvy.com) (Ping timeout)
  2320. # [18:54] <@bz> The 1% strike again. ;)
  2321. # [18:54] <ejpbruel> bz: see, i had assumed the error was talking about the moz.build
  2322. # [18:54] <ejpbruel> bz: i am so sorry :)
  2323. # [18:54] <@bz> ejpbruel: no, it's an error from the idl compiler, so it's talking about the idl!
  2324. # [18:55] * Joins: snig_wal (chatzilla@9B9315E1.A6025CA.1C37C358.IP)
  2325. # [18:55] <@bz> Sure would be nice if it included the filename, though.
  2326. # [18:55] <ejpbruel> bz: yeah, it started to dawn on me when you asked for the idl file :)
  2327. # [18:56] <ejpbruel> bz: sorry about that :)
  2328. # [18:56] * Quits: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP) (Quit: Leaving.)
  2329. # [18:56] * khuey|away is now known as khuey
  2330. # [18:56] * sheppy is now known as sheppy-afk
  2331. # [18:56] * Parts: emerson (Icedove@6F3CD6F5.77F4443F.66AE2FF3.IP)
  2332. # [18:57] * Joins: Ms2ger (Ms2ger@moz-E2F08450.adsl-dyn.isp.belgacom.be)
  2333. # [18:58] * Joins: bnicholson (bnicholson@moz-BBE3ABD.mv.mozilla.com)
  2334. # [18:58] * Joins: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP)
  2335. # [18:58] * Joins: jwei (jwei@13F2CEC5.7672369.D8E68FF6.IP)
  2336. # [18:58] * Joins: williecheong (Adium@moz-BBE3ABD.mv.mozilla.com)
  2337. # [18:58] * Joins: Enn (enn@13F2CEC5.7672369.D8E68FF6.IP)
  2338. # [18:59] * Joins: emtwo (msamuel@moz-9C6DF40F.dsl.teksavvy.com)
  2339. # [18:59] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Client exited)
  2340. # [18:59] <@bz> ejpbruel: not a problem.
  2341. # [19:00] * nsm is now known as nsm|away
  2342. # [19:00] * coop|mtg is now known as coop
  2343. # [19:01] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  2344. # [19:01] * Quits: Enn (enn@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2345. # [19:01] * Quits: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2346. # [19:02] * Joins: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP)
  2347. # [19:03] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  2348. # [19:03] * Quits: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2349. # [19:03] * Joins: emtwo2 (msamuel@22E5E0E8.8ACB8079.47C41102.IP)
  2350. # [19:03] <mshal> jrmuizel: if you copy the AC_CHECK_SIZEOF()'s from cairo into m-c/configure.in, they should get picked up through mozilla-config.h
  2351. # [19:03] * Joins: FabioMag_ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br)
  2352. # [19:03] * Quits: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2353. # [19:03] <jrmuizel> mshal: ok thanks
  2354. # [19:03] <mshal> I dunno if that's the best way to do it though - couldn't hurt to check with glandium
  2355. # [19:04] * Joins: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP)
  2356. # [19:04] * Quits: emtwo (msamuel@moz-9C6DF40F.dsl.teksavvy.com) (Ping timeout)
  2357. # [19:05] * Quits: FabioMag_ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br) (Connection reset by peer)
  2358. # [19:05] * Joins: billm (billm@moz-BBE3ABD.mv.mozilla.com)
  2359. # [19:05] * Joins: jviereck (Adium@82889C84.3D50F6D0.7FD7B4A6.IP)
  2360. # [19:05] * Quits: huseby (huseby@moz-63865A26.torservers.net) (Ping timeout)
  2361. # [19:05] * Joins: blacksimit (blacksimit@D0B34CBE.D0EFE19F.4CEB6735.IP)
  2362. # [19:05] * Joins: FabioMag_ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br)
  2363. # [19:06] * Joins: ekr (ekr@moz-D7997EC8.rtfm.com)
  2364. # [19:06] * Joins: sworkman (sworkman@moz-C07D5168.p2p.sfo1.mozilla.com)
  2365. # [19:06] <@ted> anyone know how i enable the new cache?
  2366. # [19:06] <mayhemer> ted: pref name is browser.cache.use_new_backend
  2367. # [19:06] <@ted> thx
  2368. # [19:06] <mayhemer> ted: and set it to 1
  2369. # [19:07] <@ted> it's not a bool?
  2370. # [19:07] <mayhemer> no
  2371. # [19:07] * Quits: sunfish (chatzilla@moz-8DE7F965.dsl.dynamic.sonic.net) (Client exited)
  2372. # [19:07] <mayhemer> but I may turn it to be soon
  2373. # [19:07] * Quits: FabioMag_ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br) (Ping timeout)
  2374. # [19:07] <mayhemer> there were some other value prepared for a/b testing but it was never used
  2375. # [19:07] <mayhemer> the value was 2
  2376. # [19:07] <@ted> gotcha
  2377. # [19:08] <@bz> boooring
  2378. # [19:08] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  2379. # [19:08] <@bz> Should have been browser.cache.new_hotness_energize
  2380. # [19:08] * Quits: janv (varga@B613191B.3EC5E826.4F33160D.IP) (Ping timeout)
  2381. # [19:08] <@bz> or something
  2382. # [19:08] * Quits: jwalden (chatzilla@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2383. # [19:08] <mayhemer> :)
  2384. # [19:08] * Joins: jwalden (chatzilla@moz-BBE3ABD.mv.mozilla.com)
  2385. # [19:08] * Quits: darkowlzz (sunny@7B4A9AD6.38C7F33B.F44414AF.IP) (Quit: This computer has gone to sleep)
  2386. # [19:08] * Joins: janv (varga@B613191B.3EC5E826.4F33160D.IP)
  2387. # [19:09] <mayhemer> yep it would be even better PR ;)
  2388. # [19:09] * Quits: blacksimit (blacksimit@D0B34CBE.D0EFE19F.4CEB6735.IP) (Quit: Leaving)
  2389. # [19:10] * Quits: sworkman (sworkman@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: sworkman)
  2390. # [19:11] * philor|away is now known as philor
  2391. # [19:11] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Client exited)
  2392. # [19:11] <NeilAway> Persona-- for supporting Firefox rather than Gecko :-P
  2393. # [19:12] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  2394. # [19:12] * hwine is now known as hwine|mtg
  2395. # [19:12] * Quits: RealRaven (Thunderbir@94DC1789.FAD15229.C3498625.IP) (Ping timeout)
  2396. # [19:13] * Joins: sunfish (chatzilla@moz-8DE7F965.dsl.dynamic.sonic.net)
  2397. # [19:13] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  2398. # [19:13] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Ping timeout)
  2399. # [19:13] * Quits: IanN (chatzilla@4837CDFE.2ECE621A.E5F36E28.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  2400. # [19:16] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  2401. # [19:16] <ejpbruel> can somebody let in gabor? :P
  2402. # [19:17] <gabor> ejpbruel: thanks, but jsantell already volunteered
  2403. # [19:17] * jimm-lunch is now known as jimm
  2404. # [19:17] * Joins: brendan (brendaneic@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2405. # [19:18] * armenzg is now known as armenzg_mtg
  2406. # [19:18] * Joins: sworkman (sworkman@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2407. # [19:19] * Joins: vendo (chatzilla@A228D7A2.69EDD1E9.2B0D1E01.IP)
  2408. # [19:20] * Joins: RealRaven (Thunderbir@8CDF40AE.5F5E7745.27F80FAC.IP)
  2409. # [19:20] <blassey> bz: how do you set the priority of a load group?
  2410. # [19:20] * Joins: benvie (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP)
  2411. # [19:21] * Joins: erahm (Adium@125EF623.B2666F0E.66399531.IP)
  2412. # [19:21] * Quits: sworkman (sworkman@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sworkman)
  2413. # [19:21] * Joins: cpeterson (cpeterson@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2414. # [19:22] * glob is now known as glob|away
  2415. # [19:22] * Joins: sworkman (sworkman@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2416. # [19:22] * Quits: recursive (recursive@71958799.4D49EC71.6815CE39.IP) (Quit: Leaving...)
  2417. # [19:22] * Quits: benvie (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP) (Ping timeout)
  2418. # [19:23] * Joins: chrisccoulson (chr1s@C08D9303.9289A342.80AB4F0.IP)
  2419. # [19:23] * Joins: Enn (enn@13F2CEC5.7672369.D8E68FF6.IP)
  2420. # [19:24] * Quits: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP) (Ping timeout)
  2421. # [19:25] * Quits: gabor (gabor@5ED9E6DA.CB3251F2.284344F5.IP) (Ping timeout)
  2422. # [19:26] * Joins: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP)
  2423. # [19:28] * Quits: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP) (Ping timeout)
  2424. # [19:28] * Joins: benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2425. # [19:28] * Joins: nical (nico@87C1F78E.1DE10CA8.D8E68FF6.IP)
  2426. # [19:29] * Joins: wlach (wlach@13F2CEC5.7672369.D8E68FF6.IP)
  2427. # [19:29] * Joins: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP)
  2428. # [19:29] * Joins: mgol (m_gol@moz-5B97C831.neoplus.adsl.tpnet.pl)
  2429. # [19:30] * Quits: m_gol (m_gol@moz-5B97C831.neoplus.adsl.tpnet.pl) (Ping timeout)
  2430. # [19:31] * Quits: Archaeopteryx (itsme@moz-8710BD92.cust.telecolumbus.net) (Quit: Goodbye)
  2431. # [19:32] * Joins: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP)
  2432. # [19:33] * ahal|afk is now known as ahal
  2433. # [19:33] * Quits: mgol (m_gol@moz-5B97C831.neoplus.adsl.tpnet.pl) (Quit: Leaving...)
  2434. # [19:33] * Quits: benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  2435. # [19:33] * emtwo2 is now known as emtwo
  2436. # [19:34] * Joins: benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2437. # [19:35] * jorendorff is now known as jorendorff_away
  2438. # [19:35] * Quits: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: mixedpuppy)
  2439. # [19:36] * Joins: grobinson|laptop (grob_@moz-B27258F9.bu.edu)
  2440. # [19:37] * Quits: gcp (gcp@moz-9CEB1C98.access.telenet.be) (Quit: Leaving)
  2441. # [19:38] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2442. # [19:39] * armenzg_mtg is now known as armenzg_lunch
  2443. # [19:39] * Joins: huseby (huseby@8B856A66.DAB7EE7C.260A953E.IP)
  2444. # [19:39] * geekboy|afk is now known as geekboy
  2445. # [19:40] * Joins: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net)
  2446. # [19:40] * Quits: janv (varga@B613191B.3EC5E826.4F33160D.IP) (Ping timeout)
  2447. # [19:40] * Joins: janv (varga@B613191B.3EC5E826.4F33160D.IP)
  2448. # [19:41] * Quits: flo-retina (Instantbir@moz-2C9D8405.ip-176-31-106.eu) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  2449. # [19:41] * dhylands|afk is now known as dhylands
  2450. # [19:42] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  2451. # [19:44] * Quits: RealRaven (Thunderbir@8CDF40AE.5F5E7745.27F80FAC.IP) (Ping timeout)
  2452. # [19:45] * Joins: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net)
  2453. # [19:47] * Quits: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net) (Ping timeout)
  2454. # [19:47] * Joins: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2455. # [19:47] <khuey> kats: ping
  2456. # [19:47] <kats> khuey: pong
  2457. # [19:48] * jorendorff_away is now known as jorendorff
  2458. # [19:48] <khuey> kats: can you take a look at 965945?
  2459. # [19:48] <khuey> kats: smells like APZ to me
  2460. # [19:49] * Quits: chrisccoulson (chr1s@C08D9303.9289A342.80AB4F0.IP) (Ping timeout)
  2461. # [19:49] <kats> khuey: it does look likely, yes
  2462. # [19:49] <kats> we fixed a similar issue in 1.2 but i have a "better fix" in mind for 1.3 which i've been working on
  2463. # [19:49] <kats> i'll comment
  2464. # [19:49] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  2465. # [19:49] * stephend is now known as stephend|busy
  2466. # [19:50] <khuey> kats: yeah, I thought this sounded a lot like 947523
  2467. # [19:50] <kats> yeah
  2468. # [19:50] <kats> that's the one
  2469. # [19:50] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2470. # [19:51] * Quits: serge (Thunderbir@moz-C5779BFD.dsl.teksavvy.com) (Ping timeout)
  2471. # [19:52] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  2472. # [19:54] * Joins: dorsatum (dorsatum@8C751CAC.2462B1E2.5D9ABA9F.IP)
  2473. # [19:54] <Gijs> jmaher: re bug 967691, can you verify that bug 963105 fixed it?
  2474. # [19:55] <dorsatum> hi! i've been working on a patch and this particular portion of the code ( http://paste.ubuntu.com/6874501/ ) has some duplication, I'm not too certain as regards how it should be removed. The first thing that comes to my mind is removing lines 12 and 27. But then again, as I said i'm not too sure.
  2475. # [19:55] <Gijs> jmaher: I didn't land that so I got no 'improvement' emails
  2476. # [19:55] <jmaher> Gijs: ok, I will look
  2477. # [19:56] * Quits: lgarner (lgarner@2D337F52.2D31AF7B.5AEB50C4.IP) (Quit: Leaving)
  2478. # [19:56] * Joins: lgarner (lgarner@2D337F52.2D31AF7B.5AEB50C4.IP)
  2479. # [19:56] <Gijs> jmaher: if not we need to look again, but I verified locally that removing the binding fixed the regression, and from what I understood from Enn, the optimizations he made should have the same effect.
  2480. # [19:56] * Joins: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP)
  2481. # [19:57] <jmaher> Gijs: appears to be fixed- I need more concrete data though
  2482. # [19:57] * philor is now known as philor|afk
  2483. # [19:57] <Gijs> jmaher: ok, phew.
  2484. # [19:57] <Gijs> jmaher: I guess "more concrete data" means retriggers?
  2485. # [19:58] <jmaher> Gijs: yes, that is fixed
  2486. # [19:58] <jmaher> let me resolve it as fixed then and link to the bug
  2487. # [19:58] * Quits: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP) (Client exited)
  2488. # [19:58] * Joins: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net)
  2489. # [19:59] <Gijs> jmaher: awesome! Thank you for keeping a lookout for this kind of stuff. I did act on the regression emails I got, and I'm glad it worked... Is there something I neglected to do that could have saved you work/effort here?
  2490. # [19:59] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Client exited)
  2491. # [19:59] <Enn> I received a winnt6.2 3.99 decrease message today attributed to bug 963105
  2492. # [19:59] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  2493. # [19:59] <jmaher> Gijs: I didn't spent a lot of time on it- mostly a few retriggers and cross referencing the branches to see where the regression was introduced
  2494. # [19:59] * Quits: lsblakk (lsblakk@moz-DB4A9C19.scl3.mozilla.com) (Quit: Changing server)
  2495. # [20:00] * sheppy-afk is now known as sheppy
  2496. # [20:00] * Quits: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  2497. # [20:00] <jmaher> Gijs: maybe add keywords "perf, regression" and mention the test which regressed in a comment or the summary
  2498. # [20:00] <Gijs> jmaher: ah, fair point. :)
  2499. # [20:00] <jesup> Is there some reason retriggering from tbpl (on Try) doesn't result in any Pending Jobs added? a build and a Valgrind test - neither seems to be working.
  2500. # [20:01] * Joins: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net)
  2501. # [20:01] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Ping timeout)
  2502. # [20:01] <Gijs> jesup: I think this was an issue earlier today that was deemed resolved... not sure if there's another one going on... RyanVM|sheriffduty ?
  2503. # [20:01] <jmaher> Gijs: I am just glad it is fixed since you took action on the regression email you received- sometimes you get a few emails and it doesn't make much sense- easy to ignore
  2504. # [20:01] * Quits: taras (taras@D2ABC49B.2F7415B9.B87ED48A.IP) (Quit: leaving)
  2505. # [20:01] * Joins: lsblakk (lsblakk@moz-DB4A9C19.scl3.mozilla.com)
  2506. # [20:01] <Gijs> jmaher: I think I'm scarred for life because of the australis stuff :P
  2507. # [20:02] <@gavin> Enn: nice
  2508. # [20:02] * Quits: mikeratcliffe (Adium@755D1F38.4788BC2C.7CCB197A.IP) (Ping timeout)
  2509. # [20:02] <jmaher> Gijs: time will heal the wounds
  2510. # [20:02] <Gijs> jmaher: well, for the sake of perf in our product, let's hope not, in this specific instance ;)
  2511. # [20:02] <jmaher> :)
  2512. # [20:02] * Gijs changes topic to 'Next uplift 17 Mar || Want help, or want to help others? See #introduction || http://logbot.glob.com.au/?c=developers'
  2513. # [20:03] * Joins: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2514. # [20:03] * Quits: jviereck (Adium@82889C84.3D50F6D0.7FD7B4A6.IP) (Quit: Leaving.)
  2515. # [20:03] * Quits: brendan (brendaneic@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: brendan)
  2516. # [20:03] <jesup> My second build retrigger seems to have worked
  2517. # [20:04] * Quits: vladan (vladan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2518. # [20:04] * Quits: vd (vd@moz-7A53EEF0.ddns.cablebg.net) (Client exited)
  2519. # [20:05] * Quits: gsvelto (gsvelto@moz-1C8C231E.clienti.tiscali.it) (Quit: Leaving)
  2520. # [20:05] * Joins: vladan (vladan@13F2CEC5.7672369.D8E68FF6.IP)
  2521. # [20:05] <jesup> And the second valgrind retrigger just showed up - or the first one did, Very late
  2522. # [20:05] * Quits: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: mixedpuppy)
  2523. # [20:06] * Joins: FabioMag_ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br)
  2524. # [20:06] * Joins: ddahl (ddahl@F3C5A0F1.F4A2F9DE.84F2893D.IP)
  2525. # [20:06] * Joins: Archaeopteryx (itsme@moz-8710BD92.cust.telecolumbus.net)
  2526. # [20:06] <myk> bdahl: i figured out how to reproduce that bug that paul experienced and filed issue 17 on it; perhaps you can take a look?
  2527. # [20:07] <Jesse> are "atoms" and "interned strings" the same thing?
  2528. # [20:07] * Joins: chrisccoulson (chr1s@C08D9303.9289A342.80AB4F0.IP)
  2529. # [20:07] <bdahl> myk: yup, looking at it now
  2530. # [20:07] <yeukhon> dorsatum: are you first time contributor?
  2531. # [20:07] <myk> bdahl: excellent :-)
  2532. # [20:07] <khuey> Jesse: yes
  2533. # [20:08] * Quits: FabioMag_ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br) (Ping timeout)
  2534. # [20:08] <dorsatum> yeukhon: I have submitted a few patches before.
  2535. # [20:08] * nrc|afk is now known as nrc
  2536. # [20:08] <yeukhon> dorsatum: oh okay. not that im any senior than you lol. just thought if no one can answer your question here u can leave that note on the bug and ask someone for feedback?
  2537. # [20:09] * Quits: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2538. # [20:09] * Joins: codeforfun (codeforfun@DCF5805C.E41C993B.378F979D.IP)
  2539. # [20:10] * Quits: davidb (davidb@13F2CEC5.7672369.D8E68FF6.IP) (Quit: davidb)
  2540. # [20:10] <dorsatum> yeukhon: I'll do that, also got help in #security (bug's related there) thank you :)
  2541. # [20:10] <yeukhon> oh i see msg helped you
  2542. # [20:10] <yeukhon> :3
  2543. # [20:11] <yeukhon> *didn't notice*
  2544. # [20:13] * Joins: johnath (johnath@moz-DB4A9C19.scl3.mozilla.com)
  2545. # [20:14] * Quits: xwaynec (xwaynec@moz-C475BDB7.hinet-ip.hinet.net) (Quit: )
  2546. # [20:14] <dorsatum> yeukhon: nevertheless, thank you for looking it up :)
  2547. # [20:15] <yeukhon> np dorsatum
  2548. # [20:15] <bdahl> myk: with regular builds i can do ./mach debug to attach lldb at startup, do you know of a way to do this with the add-on sdk?
  2549. # [20:16] * Joins: TheCrap (TheCrap@moz-7EA330A4.unity-media.net)
  2550. # [20:19] <myk> bdahl: i think the --binary-args flag to the SDK's cfx tool (for which "make run" is just a thin wrapper) will enable you to pass "-g" to attach lldb at startup; ochameau: is that correct?
  2551. # [20:20] * hwine|mtg is now known as hwine
  2552. # [20:20] * Joins: AndroUser (androirc@moz-53FDDAAE.dyn.everestkc.net)
  2553. # [20:20] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  2554. # [20:21] * Quits: ddahl (ddahl@F3C5A0F1.F4A2F9DE.84F2893D.IP) (Input/output error)
  2555. # [20:22] * Joins: brendan (brendaneic@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2556. # [20:22] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  2557. # [20:22] * hwine is now known as hwine|mtg
  2558. # [20:23] * Quits: Ms2ger (Ms2ger@moz-E2F08450.adsl-dyn.isp.belgacom.be) (Quit: nn)
  2559. # [20:23] * Joins: gabor (gabor@5ED9E6DA.CB3251F2.284344F5.IP)
  2560. # [20:23] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  2561. # [20:23] * Quits: huseby (huseby@8B856A66.DAB7EE7C.260A953E.IP) (Ping timeout)
  2562. # [20:24] * Quits: drno (nohlmeier@moz-8C24FDC2.hsd1.ca.comcast.net) (Quit: drno)
  2563. # [20:25] * Joins: huseby (huseby@moz-DAEFD4E7.piratenpartei-nrw.de)
  2564. # [20:25] * Joins: drno (nohlmeier@moz-8C24FDC2.hsd1.ca.comcast.net)
  2565. # [20:26] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  2566. # [20:26] * Quits: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Computer has gone to sleep.)
  2567. # [20:27] * Quits: ferjm (ferjm@moz-C75BC392.upc-i.chello.nl) (Quit: Leaving)
  2568. # [20:27] * mattwoodrow is now known as mattwoodrow|away
  2569. # [20:27] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Client exited)
  2570. # [20:27] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  2571. # [20:28] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  2572. # [20:28] * sheppy is now known as sheppy-offline
  2573. # [20:29] * Joins: qheaden (Instantbir@moz-B6BAC09E.nrflva.fios.verizon.net)
  2574. # [20:29] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Ping timeout)
  2575. # [20:29] * Quits: vendo (chatzilla@A228D7A2.69EDD1E9.2B0D1E01.IP) (Quit: ChatZilla 0.9.90-rdmsoft [XULRunner 1.9.0.17/2009122204])
  2576. # [20:30] <nemo> you know, it's a shame you can't specify a height and a gutter with CSS columns :-/
  2577. # [20:30] <nemo> at least, I can't find any way to do so
  2578. # [20:30] <nemo> like column-height: 50%; or column-height: 500px;
  2579. # [20:31] * Joins: rstrong (rstrong@moz-204A999A.hsd1.ca.comcast.net)
  2580. # [20:32] * Quits: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP) (Client exited)
  2581. # [20:32] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  2582. # [20:32] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  2583. # [20:32] * Joins: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP)
  2584. # [20:32] * nsm|away is now known as nsm
  2585. # [20:32] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  2586. # [20:32] * Quits: AndroUser (androirc@moz-53FDDAAE.dyn.everestkc.net) (Quit: AndroIRC - Android IRC Client ( http://www.androirc.com ))
  2587. # [20:33] <myk> bdahl: hmm, that doesn't work as i expect
  2588. # [20:34] * Quits: kushagra (kushagra@D036C5A3.85F9C832.520CDC98.IP) (Ping timeout)
  2589. # [20:34] * Quits: grobinson|laptop (grob_@moz-B27258F9.bu.edu) (Ping timeout)
  2590. # [20:34] * Quits: bitgeeky (bitgeeky@9B9315E1.A6025CA.1C37C358.IP) (Quit: Leaving)
  2591. # [20:35] * Joins: harth_ (harth@moz-42412102.hsd1.ca.comcast.net)
  2592. # [20:35] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2593. # [20:35] * jgriffin is now known as jgriffin-mtg
  2594. # [20:35] * Joins: jimb (user@125EF623.B2666F0E.66399531.IP)
  2595. # [20:36] <myk> bdahl: ah, right, `cfx --no-run` will configure the profile and then stop right before it starts Firefox, so you can then start it yourself in lldb
  2596. # [20:36] * bz is now known as bz_away
  2597. # [20:37] * Quits: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: mixedpuppy)
  2598. # [20:37] * Joins: m_gol (m_gol@moz-F7162DA7.dynamic.chello.pl)
  2599. # [20:37] * baku is now known as baku|away
  2600. # [20:38] * Quits: @bz_away (bzbarsky@moz-72881629.bstnma.fios.verizon.net) (Ping timeout)
  2601. # [20:39] * Quits: nl (nicklebede@moz-29D843ED.net151.n37.ru) (Quit: )
  2602. # [20:39] * Quits: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP) (Ping timeout)
  2603. # [20:39] * Joins: clb (clb@moz-F9ED79A1.fi)
  2604. # [20:40] * armenzg_lunch is now known as armenzg
  2605. # [20:40] * Quits: tonymec (tonymec@5588409.8CFE30CE.A9371869.IP) (Input/output error)
  2606. # [20:40] * Quits: ehugg (chatzilla@5AD0A91D.29102B70.6CD50604.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  2607. # [20:40] * Quits: luke (luke@moz-7CF84B28.dhcp.ftwo.tx.charter.com) (Quit: Leaving.)
  2608. # [20:41] * Joins: jviereck (Adium@moz-56DDD13.dip0.t-ipconnect.de)
  2609. # [20:41] * Quits: sunfish (chatzilla@moz-8DE7F965.dsl.dynamic.sonic.net) (Ping timeout)
  2610. # [20:42] * mcote is now known as mcote|biab
  2611. # [20:42] <myk> bdahl: so you should be able to do something like: cd addon-sdk && . bin/activate && cd ../helper && cfx run --package-path ../addon/ --no-run --binary=/path/to/Firefox.app
  2612. # [20:43] <nemo> hm. anyone enjoy looking at profiles? I have a mysterious 100% CPU thing I've been hitting on and off, and was wondering if the profile had anything illuminating
  2613. # [20:44] <nemo> for some reason closing the stack overflow tab seems to help, but not sure if that's actually the problem
  2614. # [20:44] <myk> bdahl: then massage the command provided by cfx to attach lldb at startup, something like: lldb /Applications/FirefoxNightly.app/Contents/MacOS/firefox-bin -- -profile /var/folders/lp/8t_7y24119720_hjp5wc_4cr0000gn/T/tmp9vQMk1.mozrunner -foreground -no-remote
  2615. # [20:44] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Quit: jib)
  2616. # [20:44] <myk> bdahl: although that is crashing for me when i launch the process
  2617. # [20:45] * Quits: @dbaron (dbaron@moz-B3F1D17A.dsl.dynamic.sonic.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  2618. # [20:45] * Quits: codeforfun (codeforfun@DCF5805C.E41C993B.378F979D.IP) (Input/output error)
  2619. # [20:45] <bdahl> myk: running fine for me, with no crashes
  2620. # [20:45] * geekboy is now known as geekboy|afk
  2621. # [20:46] * Joins: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net)
  2622. # [20:46] * Quits: paolo_ (paolo@moz-5AC75460.retail.telecomitalia.it) (Ping timeout)
  2623. # [20:46] <bdahl> the device doesn't show up but, no crash
  2624. # [20:46] <mstange> RyanVM|sheriffduty: What's the status on inbound? Are you waiting for the remaining bc runs?
  2625. # [20:46] <RyanVM|sheriffduty> mstange: i'm getting ready to merge m-c back over to it and then will reopen
  2626. # [20:46] * Quits: Gijs (gijs@moz-38E1C9D2.range86-164.btcentralplus.com) (Quit: Reconnecting…)
  2627. # [20:46] * geekboy|afk is now known as geekboy
  2628. # [20:47] <mstange> RyanVM|sheriffduty: I see
  2629. # [20:47] * Joins: Gijs (gijs@moz-38E1C9D2.range86-164.btcentralplus.com)
  2630. # [20:47] * Joins: azakai (alon@13F2CEC5.7672369.D8E68FF6.IP)
  2631. # [20:47] * Joins: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP)
  2632. # [20:47] <mstange> RyanVM|sheriffduty: also, do I need approval for backouts on Aurora? I want to back out part 1 of bug 941095 that made it to Aurora yesterday
  2633. # [20:48] * Quits: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net) (Ping timeout)
  2634. # [20:48] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2635. # [20:48] <RyanVM|sheriffduty> mstange: meh, I wouldn't argue with a=backout
  2636. # [20:48] <mstange> RyanVM|sheriffduty: ok, thanks
  2637. # [20:49] * hwine|mtg is now known as hwine
  2638. # [20:49] <myk> bdahl: hmm, strange; what happens if you replug the device?
  2639. # [20:49] * kats is now known as kats-afk
  2640. # [20:49] <myk> bdahl: then try to connect, and then quit firefox?
  2641. # [20:50] <jhopkins> rstrong, vlad: you should see Windows 8 tests happen on 64-bit builds on your next Date push
  2642. # [20:50] * Joins: KWierso|PTO (chatzilla@moz-3D85277A.hsd1.ca.comcast.net)
  2643. # [20:50] * catlee is now known as catlee-mtg
  2644. # [20:51] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Client exited)
  2645. # [20:51] * Joins: sicking (sicking@moz-501E5580.hsd1.ca.comcast.net)
  2646. # [20:51] * Quits: sicking (sicking@moz-501E5580.hsd1.ca.comcast.net) (Quit: sicking)
  2647. # [20:51] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  2648. # [20:51] * Quits: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: mixedpuppy)
  2649. # [20:51] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Connection reset by peer)
  2650. # [20:52] * Joins: flo-retina (Instantbir@moz-2C9D8405.ip-176-31-106.eu)
  2651. # [20:52] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  2652. # [20:52] <bdahl> myk: no crash the first time, i get a crash now though
  2653. # [20:52] <myk> bdahl: aha; hmm
  2654. # [20:53] <josh> wonder why this video works in release (27) but not Nightly
  2655. # [20:53] <josh> https://air.mozilla.org/gecko-cycle-collector-intro/
  2656. # [20:53] <vlad> jhopkins: windows 8 tests?
  2657. # [20:53] * Joins: mkmelin (mkmelin@moz-70104AE1.elisa-laajakaista.fi)
  2658. # [20:53] <@gavin> josh: I see the same
  2659. # [20:55] * Quits: Enn (enn@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2660. # [20:55] * hwine is now known as hwine-food
  2661. # [20:56] * Joins: jhford (sid15926@moz-A42E5B7B.irccloud.com)
  2662. # [20:56] <jhopkins> vlad: yes, against the 64-bit builds
  2663. # [20:56] * Quits: gabor (gabor@5ED9E6DA.CB3251F2.284344F5.IP) (Ping timeout)
  2664. # [20:57] * Joins: jaoo (user@moz-F2C43276.red-83-45-173.dynamicip.rima-tde.net)
  2665. # [20:57] <josh> gavin: filed bug 967733
  2666. # [20:57] * Quits: Gijs (gijs@moz-38E1C9D2.range86-164.btcentralplus.com) (Ping timeout)
  2667. # [20:58] <_AtilA_> I'm getting crazy trying to put android style logs (__android_log_print) on some specific parts of Gecko..
  2668. # [20:58] * Quits: juanb (jbecerra@moz-104CC309.mv.mozilla.com) (Quit: juanb)
  2669. # [20:59] <jhopkins> vlad: re: bug 967030
  2670. # [20:59] * Joins: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP)
  2671. # [20:59] <_AtilA_> I did it before in TimerThread.cpp with no problems, but I'm unable to make them work on gfx code
  2672. # [20:59] <vlad> jhopkins: yeah but what do you mean by windows 8 tests?
  2673. # [20:59] <vlad> it should just be running the regular tests
  2674. # [21:00] <jhopkins> vlad: regular tests (non-talos) running on a windows 8 test slave (on physical hardware)
  2675. # [21:00] <vlad> oh yes, right
  2676. # [21:00] <vlad> sorry, I thought you meant just metro tests or something :)
  2677. # [21:00] * Quits: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  2678. # [21:00] <jhopkins> heh
  2679. # [21:01] * Quits: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP) (Ping timeout)
  2680. # [21:01] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2681. # [21:03] <vlad> ok just did a merge and a push
  2682. # [21:03] <vlad> let's see what happens :)
  2683. # [21:04] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  2684. # [21:04] * Quits: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2685. # [21:04] * jgriffin-mtg is now known as jgriffin
  2686. # [21:05] * geekboy is now known as geekboy|afk
  2687. # [21:05] * Quits: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: mixedpuppy)
  2688. # [21:06] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  2689. # [21:07] * Quits: miketaylr (mtaylor@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: Leaving...)
  2690. # [21:07] * Joins: FabioMag_ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br)
  2691. # [21:08] * Parts: jaoo (user@moz-F2C43276.red-83-45-173.dynamicip.rima-tde.net) (ERC Version 5.3 (IRC client for Emacs))
  2692. # [21:08] * khuey is now known as khuey|away
  2693. # [21:09] * Quits: FabioMag_ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br) (Ping timeout)
  2694. # [21:09] * Joins: Gijs (gijs@moz-38E1C9D2.range86-164.btcentralplus.com)
  2695. # [21:09] * Quits: tn (tim@moz-2E73ACE4.wp.shawcable.net) (Ping timeout)
  2696. # [21:09] * Joins: Enn (enn@13F2CEC5.7672369.D8E68FF6.IP)
  2697. # [21:09] <Gijs> hrmpf
  2698. # [21:10] * Joins: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net)
  2699. # [21:10] * Joins: tn (tim@moz-2E73ACE4.wp.shawcable.net)
  2700. # [21:10] <Gijs> jmaher: so... I just got a ts_paint regression email for some of yesterday's commits, and that goes in the 'huh' category...
  2701. # [21:11] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  2702. # [21:11] <jmaher> Gijs: well, the graph for ts_paint looks scary: http://graphs.mozilla.org/graph.html#tests=[[83,64,37]]&sel=none&displayrange=30&datatype=running
  2703. # [21:11] <Gijs> :|
  2704. # [21:11] * kats-afk is now known as kats
  2705. # [21:12] <jmaher> Gijs: let me look into it a bit and ensure it is that vs the changeset before it
  2706. # [21:13] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  2707. # [21:13] <Cork> if i set gfx.*.azure.backends to skia i get https://crash-stats.mozilla.com/report/index/f36a4278-344d-4a4a-9ecb-620d82140204
  2708. # [21:13] <Cork> should i block bug 740200 from the report?
  2709. # [21:14] <gw280> gps: do you deal with the b2g buildsystem as well as gecko?
  2710. # [21:15] <gw280> gps: on my dual core machine I'm seeing this madness when I run build.sh -j5 : http://pastebin.mozilla.org/4184542
  2711. # [21:15] * Quits: tomer (tomer@moz-F45DAEFD.static.012.net.il) (Ping timeout)
  2712. # [21:15] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Client exited)
  2713. # [21:16] * nthomas|away is now known as nthomas
  2714. # [21:16] <Gijs> jmaher: thanks
  2715. # [21:16] * julienw is now known as julienw_afk
  2716. # [21:16] * Quits: soreau (soreau@moz-6626C024.clsp.qwest.net) (Quit: soreau)
  2717. # [21:16] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  2718. # [21:16] * Joins: jgilbert (jgilbert@moz-DABF6845.ph.ph.cox.net)
  2719. # [21:16] * Quits: harth_ (harth@moz-42412102.hsd1.ca.comcast.net) (Input/output error)
  2720. # [21:17] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Ping timeout)
  2721. # [21:18] * Joins: saebekassebil (saebekasse@moz-459AA6FA.dk.customer.tdc.net)
  2722. # [21:18] <nemo> hm. 49% of time in WCF_flushMessageQueue() @ webconsole.js:2019
  2723. # [21:18] <nemo> 39% in layout::Flush
  2724. # [21:19] <nemo> 29% in WCF__outputMessageFromQueue() @ webconsole.js:2166
  2725. # [21:19] <RyanVM|sheriffduty> khuey: bug 967614 seems to be striking pretty hard today, any chance you or bent could take a look?
  2726. # [21:19] <nemo> (left an _ out of WCF__flushMessageQueue sorry)
  2727. # [21:19] * bc is now known as bc|bbiab
  2728. # [21:19] <RyanVM|sheriffduty> oh, away
  2729. # [21:19] <nemo> er. wait ignore that 29%. that was a reading fail
  2730. # [21:19] * nsm is now known as nsm|away
  2731. # [21:19] * philor|afk is now known as philor
  2732. # [21:20] <nemo> the layout flush is actually 45%
  2733. # [21:20] * Joins: bz_away (bzbarsky@moz-D9C25B3C.hsd1.ma.comcast.net)
  2734. # [21:20] <nemo> 45% layout::DoReflow
  2735. # [21:20] <nemo> soooo something about webconsole is sucking up all my CPU :(
  2736. # [21:20] * Joins: soreau (soreau@moz-6626C024.clsp.qwest.net)
  2737. # [21:20] <nemo> looking at output of Browser Console, don't see anything that unusual
  2738. # [21:21] <jmaher> Gijs: so this ts_paint regression is a pgo issue
  2739. # [21:21] <@smaug> nemo: any testcase? and mention the issue in #devtools
  2740. # [21:21] <nemo> smaug: well. it has been annoyingly hard to pin down
  2741. # [21:21] <nemo> smaug: mostly, I'm browsing and I'm like... huh. 100% CPU and all my tabs are thrashing
  2742. # [21:21] <nemo> I'll slowly start closing tabs until thrashing stops
  2743. # [21:21] <nemo> s/all my tabs/entire browser/
  2744. # [21:21] <soreau> I am trying to build the browser with gtk3 on linux but it fails to link libxul.so http://hastebin.com/raw/sovifeqigu
  2745. # [21:21] <soreau> ../../build/unix/gold/ld: error: read-only segment has dynamic relocations
  2746. # [21:22] <jmaher> Gijs: and it appears to be related to something after your commit- let me do some pgo builds and retriggers
  2747. # [21:22] <nemo> smaug: it seems to stop at some point, although, reopening that tab does not necessarily cause CPU to spike again
  2748. # [21:22] <@smaug> right
  2749. # [21:22] <nemo> smaug: as noted prior, stackoverflow seemed to be doing it for me today
  2750. # [21:22] <nemo> was reading https://stackoverflow.com/questions/14922272/perl-while-file-handling in this case for a refresh as to what it does
  2751. # [21:22] <soreau> I found a bug report where users report a similar problem https://bugzilla.mozilla.org/show_bug.cgi?id=307168
  2752. # [21:23] <nemo> smaug: I can link you to those cleopatra thingies, but I have no idea if they are very informative
  2753. # [21:23] <@smaug> nemo: I could take a look
  2754. # [21:23] <@smaug> are you using gecko profiler
  2755. # [21:23] * catlee-mtg is now known as catlee
  2756. # [21:23] <nemo> smaug: is there any way I can just disable the dev tools? I don't particularly need them most of the time, and, it *is* kind of annoying
  2757. # [21:23] <@smaug> or just the devtool profiler?
  2758. # [21:23] <@smaug> oh, devtools shouldn't affect to perf it they are closed
  2759. # [21:23] <nemo> smaug: Gecko Profiler yeah
  2760. # [21:23] * Joins: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP)
  2761. # [21:23] <nemo> smaug: oh. hm...
  2762. # [21:23] <@smaug> gecko profiler itself affects to performance
  2763. # [21:23] * Quits: ggp (ggp@9F804FF1.6E049667.B65F468E.IP) (Ping timeout)
  2764. # [21:23] <nemo> maybe I've always had 'em open?
  2765. # [21:24] <@smaug> at least when js profiling is enabled
  2766. # [21:24] <nemo> smaug: yeah. that I've noticed. setting stop seems to help
  2767. # [21:24] * Quits: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net) (Quit: pcwalton)
  2768. # [21:24] <nemo> smaug: annoying thing keeps turning itself back on tho
  2769. # [21:24] <nemo> one of several annoying habits :)
  2770. # [21:24] * @smaug uses external profilers
  2771. # [21:24] <@smaug> which means no js profiling
  2772. # [21:24] <nemo> smaug: it might well be that it was only happening w/ dev tools open. I'll keep an eye on that
  2773. # [21:25] <nemo> I sometimes hit ctrl-shift-k then forget to close it
  2774. # [21:25] * Joins: vingtetu1 (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP)
  2775. # [21:25] <@smaug> but it was Console?
  2776. # [21:25] * Quits: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  2777. # [21:25] * Joins: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca)
  2778. # [21:26] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  2779. # [21:26] * Quits: mt (mt@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  2780. # [21:26] * coop is now known as coop|afk
  2781. # [21:27] * Quits: brendan (brendaneic@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: brendan)
  2782. # [21:27] * Quits: vingtetu1 (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  2783. # [21:27] * Quits: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca) (Ping timeout)
  2784. # [21:28] * Joins: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP)
  2785. # [21:30] <Gijs> jmaher: hrm. What about the issue around jan ~22/23, was that the thing you just filed? Then I would have expected the graph to go back down when bug 963105 landed, but I don't see that on the graph...
  2786. # [21:31] <jmaher> Gijs: the previous bug was for tpaint, this is ts_paint
  2787. # [21:31] * mcote|biab is now known as mcote
  2788. # [21:31] <jmaher> Gijs: I am filing a tracking bug, it is both pgo and non-pgo- I should have it sorted out by end of day tomorrow
  2789. # [21:31] * Joins: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2790. # [21:32] <Gijs> jmaher: OK. Thank you for looking into this. Feel free to CC me and let me know if I can help.
  2791. # [21:32] <jwalden> jrmuizel: is there some reason why qcms must be C, and can't be C++? even if the code were a purely C API and extern "C" were used, it would be really nice to not have to worry about C restricting mfbt's APIs (or having to think about targeting two different languages when designing them)
  2792. # [21:32] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2793. # [21:32] <jrmuizel> jwalden: why does qcms restrict mfbt's api?
  2794. # [21:33] * Quits: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net) (Quit: Jesse)
  2795. # [21:33] * Quits: mwobensmith (mwobensmit@12E4AD8B.27376607.189F3E15.IP) (Quit: Leaving.)
  2796. # [21:33] <jmaher> Gijs: I have cc'd you and when I get it narrowed down, I will needinfo? all the appropriate parties
  2797. # [21:33] * Joins: sunfish (chatzilla@moz-BBE3ABD.mv.mozilla.com)
  2798. # [21:33] * Joins: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca)
  2799. # [21:33] <jrmuizel> jwalden: or more specifically why are qcms and mfbt interacting?
  2800. # [21:34] <jwalden> jrmuizel: bug 957002 wants to switch qcms over to using mozilla/Endian.h instead of prtypes.h for handling endianness, but mozilla/Endian.h is a C++ header
  2801. # [21:34] <jwalden> where m/Endian.h is mfbt/Endian.h in our tree
  2802. # [21:34] * Joins: luke (luke@moz-7CF84B28.dhcp.ftwo.tx.charter.com)
  2803. # [21:34] <Gijs> jmaher: OK. The tpaint issue that was solved by bug 963105 did also cause ts_paint regression alerts. The core reason was that we were instantiating a bunch of extra bindings, which were not cheap. I verified that disabling the binding fixed tpaint, and assumed (!) that that would also fix ts_paint, as it seemed plausible that they were the same issue - things that affect tpaint usually...
  2804. # [21:34] <Gijs> ...affect ts_paint as well
  2805. # [21:35] * Joins: kentuckyfriedtakahe (ajones@34E8ECDF.DC2C3734.616A18A6.IP)
  2806. # [21:35] <jrmuizel> jwalden: how does Endian determine the endianess?
  2807. # [21:35] * Quits: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca) (Ping timeout)
  2808. # [21:35] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2809. # [21:35] <Gijs> jmaher: if bug 963105 only fixed tpaint but not ts_paint (which seems very strange, but I guess is hypothetically possible) then I guess I need to look again at whether those csets did anything else that made them regress ts_paint...
  2810. # [21:35] <jwalden> jrmuizel: it's doing a bunch of ifdef stuff right now; it's more that the rest of the file defines a bunch of C++ class stuff
  2811. # [21:36] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2812. # [21:36] <jrmuizel> jwalden: so it's probably easiest to just move the endian detection stuff into qcms
  2813. # [21:37] <jwalden> jrmuizel: given the size/madness of that ifdeffery, that seems unwise; http://mxr.mozilla.org/mozilla-central/source/mfbt/Endian.h#82 is at least sixty lines or so
  2814. # [21:37] <jmaher> Gijs: yeah, there are a lot of common issues found between the two tests, I need to investigate it in more detail- this is starting to get into the fuzzy too much noise to decipher who is the culprit territory
  2815. # [21:38] <jrmuizel> jwalden: but it's an improvement for qcms to not have external dependencies
  2816. # [21:38] * Quits: joshua-s (Thunderbir@moz-E5863041.syrcny.east.verizon.net) (Quit: Try Firetext (https://marketplace.firefox.com/app/firetext), a word processor for Firefox OS!)
  2817. # [21:38] <jwalden> bleh
  2818. # [21:38] <jwalden> we probably should just make mfbt more easily usable/buildable as a dependency, or something
  2819. # [21:38] <jrmuizel> jwalden: and qcms already has endian detection code it's just not as complete as mfbt
  2820. # [21:39] <jwalden> but I guess if you want to copypasta for now, it's sort of on your head to review updates to the macros and all :-\
  2821. # [21:39] <jrmuizel> jwalden: having to pull in all of mfbt just to detect the endianess would be insane
  2822. # [21:39] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  2823. # [21:39] * bc|bbiab is now known as bc
  2824. # [21:39] * Joins: joshua-s (Thunderbir@moz-E5863041.syrcny.east.verizon.net)
  2825. # [21:39] * ehsan is now known as ehsan|mtg
  2826. # [21:39] <jwalden> jrmuizel: not much "all of", seems to me, given it's mostly a bunch of headers and little implementation
  2827. # [21:39] * Joins: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca)
  2828. # [21:40] <jwalden> jrmuizel: but whatever
  2829. # [21:40] * Quits: fredw (Icedove@moz-B9C110E2.fbx.proxad.net) (Quit: fredw)
  2830. # [21:40] * jwalden goes to tell the people in that bug to change qcms instead
  2831. # [21:41] * Joins: stefanh_netbook (chatzilla@moz-3EED0162.customers.ownit.se)
  2832. # [21:43] * Joins: tcaud2 (Mibbit@moz-54D07745.lightspeed.cntmoh.sbcglobal.net)
  2833. # [21:43] * Quits: RyanVM|sheriffduty (Thunderbir@moz-4C953DE7.phlapa.fios.verizon.net) (Quit: RyanVM|sheriffduty)
  2834. # [21:44] <tcaud2> Hi, I have some questions about Firefox's internals.
  2835. # [21:44] * Quits: elan (elancaster@moz-1C4F0CAA.dhcp.rvsd.ca.charter.com) (Quit: elan)
  2836. # [21:44] * Joins: mwobensmith (mwobensmit@12E4AD8B.27376607.189F3E15.IP)
  2837. # [21:45] * Joins: ggp (ggp@9F804FF1.6E049667.B65F468E.IP)
  2838. # [21:45] <Gijs> tcaud2: if it's longer than 1 sentence, perhaps write it down at http://ask.mozilla.org/ and post the link here? :)
  2839. # [21:46] * Joins: grobinson|laptop (grob_@moz-B861FB3D.de)
  2840. # [21:46] * Quits: mwobensmith (mwobensmit@12E4AD8B.27376607.189F3E15.IP) (Ping timeout)
  2841. # [21:46] * Quits: ggp (ggp@9F804FF1.6E049667.B65F468E.IP) (Input/output error)
  2842. # [21:46] * Joins: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net)
  2843. # [21:47] * Quits: six600110 (six600110@moz-C663577C.hsd1.il.comcast.net) (Ping timeout)
  2844. # [21:47] * Quits: dria (dria@13F2CEC5.7672369.D8E68FF6.IP) (Quit: dria)
  2845. # [21:48] <tcaud2> How are the omni jars coded? I replaced a file in one with WinRAR and it corrupted my install. Even after I removed the changes Firefox failed to load.
  2846. # [21:48] * Quits: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net) (Ping timeout)
  2847. # [21:49] <mcsmurf> normal zip file afaik
  2848. # [21:49] <Gijs> mcsmurf: not quite
  2849. # [21:50] <Gijs> (any more)
  2850. # [21:50] <mcsmurf> oh
  2851. # [21:50] <mcsmurf> ok
  2852. # [21:50] * Quits: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro) (Ping timeout)
  2853. # [21:52] <Gijs> tcaud2: it's basically zip with some changes to improve performance. There's also some caching going on in different files, so I think in some cases that kind of thing indeed broke. See https://developer.mozilla.org/en-US/docs/Mozilla/About_omni.ja_%28formerly_omni.jar%29
  2854. # [21:53] * Joins: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP)
  2855. # [21:53] * Joins: jedp (jedp@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2856. # [21:54] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2857. # [21:54] * Quits: m_gol (m_gol@moz-F7162DA7.dynamic.chello.pl) (Quit: Leaving...)
  2858. # [21:54] <fabrice> Gijs: any pointer on the perf improvement changes?
  2859. # [21:54] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  2860. # [21:55] <Gijs> fabrice: http://blog.mozilla.com/tglek/2010/09/14/firefox-4-jar-jar-jar/
  2861. # [21:55] * Quits: saebekassebil (saebekasse@moz-459AA6FA.dk.customer.tdc.net) (Quit: )
  2862. # [21:55] * philor is now known as philor|away
  2863. # [21:56] <tcaud2> I see.
  2864. # [21:56] <tcaud2> Also what about this webapprt stub? I've heard it's used to create standalone apps, like XULRunner?
  2865. # [21:56] * Quits: bz_away (bzbarsky@moz-D9C25B3C.hsd1.ma.comcast.net) (Client exited)
  2866. # [21:58] <Gijs> tcaud2: what about it? :)
  2867. # [21:58] * Quits: TheCrap (TheCrap@moz-7EA330A4.unity-media.net) (Ping timeout)
  2868. # [21:58] * Joins: Jesse (jruderman@moz-BBE3ABD.mv.mozilla.com)
  2869. # [21:59] * Joins: digitsm (digitsm@BA017A6.AED3FF2E.C146C5E5.IP)
  2870. # [21:59] <AutomatedTester> ehsan|mtg: hey, the sheriffs aren't around at the moment and I noticed https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=b54e8c328c32 is burning
  2871. # [21:59] * Joins: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP)
  2872. # [22:00] * geekboy|afk is now known as geekboy
  2873. # [22:00] <tcaud2> how do you use it?
  2874. # [22:00] * Quits: espadrine (ttyl@moz-D8BE539E.w92-128.abo.wanadoo.fr) (Ping timeout)
  2875. # [22:01] * Joins: bz (bzbarsky@moz-D9C25B3C.hsd1.ma.comcast.net)
  2876. # [22:01] * ChanServ sets mode: +o bz
  2877. # [22:01] <rnewman> AutomatedTester: I only see one failed build, which might be an intermittent
  2878. # [22:01] * Joins: espadrine (ttyl@moz-D8BE539E.w92-128.abo.wanadoo.fr)
  2879. # [22:01] * kats senses a tree closure coming
  2880. # [22:01] * Quits: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP) (Ping timeout)
  2881. # [22:01] <Gijs> tcaud2: have you looked at something like https://developer.mozilla.org/en-US/Apps/Quickstart/Build/Intro_to_open_web_apps ? :)
  2882. # [22:02] <AutomatedTester> rnewman: might be, will retrigger
  2883. # [22:02] * Quits: Archaeopteryx (itsme@moz-8710BD92.cust.telecolumbus.net) (Quit: Goodbye)
  2884. # [22:02] * Joins: ehugg (chatzilla@5AD0A91D.29102B70.6CD50604.IP)
  2885. # [22:02] <AutomatedTester> rnewman: only mentioned because it was a build failure and it was a build patch
  2886. # [22:03] <rnewman> aye, fair
  2887. # [22:03] * Joins: dveditz_ (dveditz@moz-67794A0A.hsd1.ca.comcast.net)
  2888. # [22:03] * ChanServ sets mode: +o dveditz_
  2889. # [22:03] * Quits: mkmelin (mkmelin@moz-70104AE1.elisa-laajakaista.fi) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131206145143])
  2890. # [22:04] * hwine-food is now known as hwine
  2891. # [22:04] * hwine is now known as hwine|mtg
  2892. # [22:04] * Quits: digitsm (digitsm@BA017A6.AED3FF2E.C146C5E5.IP) (Ping timeout)
  2893. # [22:05] * Joins: longsonr (chatzilla@AF967AE5.128FDBEE.9C6A40AF.IP)
  2894. # [22:05] * Quits: espadrine (ttyl@moz-D8BE539E.w92-128.abo.wanadoo.fr) (Ping timeout)
  2895. # [22:07] * Quits: longsonr (chatzilla@AF967AE5.128FDBEE.9C6A40AF.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
  2896. # [22:07] * dveditz_ is now known as dveditz
  2897. # [22:08] * Joins: FabioMag_ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br)
  2898. # [22:08] * Quits: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP) (Ping timeout)
  2899. # [22:09] * Joins: miketaylr (mtaylor@moz-C07D5168.p2p.sfo1.mozilla.com)
  2900. # [22:10] * Quits: FabioMag_ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br) (Ping timeout)
  2901. # [22:10] * Joins: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP)
  2902. # [22:10] * nsm|away is now known as nsm
  2903. # [22:11] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2904. # [22:11] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  2905. # [22:11] * Quits: Jesse (jruderman@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  2906. # [22:11] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2907. # [22:11] * Joins: Miranda (chatzilla@7EA5AB88.DC2C3734.616A18A6.IP)
  2908. # [22:11] * Joins: Jesse (jruderman@moz-BBE3ABD.mv.mozilla.com)
  2909. # [22:12] * Joins: espadrine (ttyl@moz-D8BE539E.w92-128.abo.wanadoo.fr)
  2910. # [22:13] * Joins: Archaeopteryx (itsme@moz-8710BD92.cust.telecolumbus.net)
  2911. # [22:13] * rail is now known as rail-mtg
  2912. # [22:15] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2913. # [22:15] * Quits: qheaden (Instantbir@moz-B6BAC09E.nrflva.fios.verizon.net) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  2914. # [22:15] * Standard8 is now known as Standard8Away
  2915. # [22:15] * Quits: Standard8Away (Standard8@B7F1AE36.48015583.54C3481B.IP) (Quit: ZNC - http://znc.in)
  2916. # [22:15] * armenzg is now known as armenzg_brb
  2917. # [22:17] * Joins: davidb (davidb@moz-CDD6CD1B.dsl.bell.ca)
  2918. # [22:17] * Quits: @bz (bzbarsky@moz-D9C25B3C.hsd1.ma.comcast.net) (Ping timeout)
  2919. # [22:19] * Quits: gustavold (gustavold@A9E6384.B3194B4B.DF2AC62B.IP) (Ping timeout)
  2920. # [22:19] * armenzg_brb is now known as armenzg
  2921. # [22:19] * Quits: espadrine (ttyl@moz-D8BE539E.w92-128.abo.wanadoo.fr) (Ping timeout)
  2922. # [22:20] * Quits: jackneill (jackneill@moz-2A74CDA9.pool.digikabel.hu) (Ping timeout)
  2923. # [22:20] * Joins: tedders1 (tedders1@moz-5668B33F.pck.nerim.net)
  2924. # [22:20] * Joins: ggp (ggp@9F804FF1.6E049667.B65F468E.IP)
  2925. # [22:20] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  2926. # [22:21] <mjrosenb> _cairo_user_data_array_set_data and _cairo_user_data_array_get_data are combined, eating up 60% of my cpu time.
  2927. # [22:21] * Quits: davidb (davidb@moz-CDD6CD1B.dsl.bell.ca) (Quit: davidb)
  2928. # [22:22] * Joins: davidb (davidb@moz-CDD6CD1B.dsl.bell.ca)
  2929. # [22:22] * Joins: njn (chatzilla@moz-69A5C917.dyn.iinet.net.au)
  2930. # [22:22] * ChanServ sets mode: +o njn
  2931. # [22:22] * Joins: cpearce (chatzilla@34E8ECDF.DC2C3734.616A18A6.IP)
  2932. # [22:23] * Quits: nical (nico@87C1F78E.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  2933. # [22:23] * Joins: mt (mt@moz-BBE3ABD.mv.mozilla.com)
  2934. # [22:24] * Joins: digitsm (digitsm@32978DD6.8A901D9A.DA0107E2.IP)
  2935. # [22:24] * Quits: kaze (kaze@87C1F78E.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  2936. # [22:24] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  2937. # [22:24] * KaiRo is now known as KaiRo_away
  2938. # [22:25] <jgilbert> mjrosenb, poke #gfx?
  2939. # [22:26] <froydnj> "Log file https://ftp-ssl.mozilla.org/.... not hosted on ftp.mozilla.org"?
  2940. # [22:27] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  2941. # [22:28] * Quits: digitsm (digitsm@32978DD6.8A901D9A.DA0107E2.IP) (Ping timeout)
  2942. # [22:28] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  2943. # [22:28] * Joins: bz (bzbarsky@moz-72881629.bstnma.fios.verizon.net)
  2944. # [22:28] * ChanServ sets mode: +o bz
  2945. # [22:29] * Quits: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  2946. # [22:29] * Joins: bajaj1 (Adium@moz-BBE3ABD.mv.mozilla.com)
  2947. # [22:30] * Quits: jviereck (Adium@moz-56DDD13.dip0.t-ipconnect.de) (Quit: Leaving.)
  2948. # [22:31] * Quits: Miranda (chatzilla@7EA5AB88.DC2C3734.616A18A6.IP) (Client exited)
  2949. # [22:31] * Quits: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: mixedpuppy)
  2950. # [22:32] * Joins: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2951. # [22:32] * whimboo is now known as whimboo|afk
  2952. # [22:32] * Joins: dria (dria@moz-1C1CE1C8.dsl.teksavvy.com)
  2953. # [22:35] <mstange> Has a bug been filed about the "Log not available" redness?
  2954. # [22:35] * Quits: williecheong (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  2955. # [22:35] * Joins: williecheong (Adium@moz-BBE3ABD.mv.mozilla.com)
  2956. # [22:35] * Joins: espadrine (ttyl@moz-D8BE539E.w92-128.abo.wanadoo.fr)
  2957. # [22:35] * Joins: Miranda (chatzilla@34E8ECDF.DC2C3734.616A18A6.IP)
  2958. # [22:36] * Joins: serge (Thunderbir@moz-C5779BFD.dsl.teksavvy.com)
  2959. # [22:36] <mstange> philor|away: help
  2960. # [22:37] * khuey|away is now known as khuey
  2961. # [22:37] * Quits: grobinson|laptop (grob_@moz-B861FB3D.de) (Ping timeout)
  2962. # [22:37] * Joins: RealRaven (Thunderbir@A5D17C1E.8BF1CB87.C3498625.IP)
  2963. # [22:37] <catlee> mstange: a fix is already written, just needs pushing to prod now
  2964. # [22:37] <mstange> catlee: oh, good
  2965. # [22:37] * Joins: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net)
  2966. # [22:37] <mstange> catlee: is there a bug I can reference in my stars?
  2967. # [22:38] <mstange> catlee: I have all of android burning on my Aurora push
  2968. # [22:38] * Joins: dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2969. # [22:38] * ChanServ sets mode: +ao dbaron dbaron
  2970. # [22:38] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  2971. # [22:39] * rail-mtg is now known as rail
  2972. # [22:40] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2973. # [22:40] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2974. # [22:41] * Quits: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Quit: dealloc)
  2975. # [22:41] * jld also just ran into the "log not available" thing.
  2976. # [22:41] * nthomas is now known as nthomas|mtg
  2977. # [22:41] * catlee is now known as catlee-mtg
  2978. # [22:42] <catlee-mtg> mstange: shouldn't be causing redness, so no, don't star things with it
  2979. # [22:43] <mstange> catlee-mtg: ok... how can I find out what caused the redness?
  2980. # [22:43] <catlee-mtg> mstange: download the log manually?
  2981. # [22:43] <mstange> oh, so it does exist?
  2982. # [22:43] <mstange> good
  2983. # [22:43] <catlee-mtg> yeah
  2984. # [22:43] <mstange> indeed
  2985. # [22:44] <catlee-mtg> tbpl hardcodes ftp.m.o
  2986. # [22:44] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  2987. # [22:45] * Quits: dorsatum (dorsatum@8C751CAC.2462B1E2.5D9ABA9F.IP) (Ping timeout)
  2988. # [22:45] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2989. # [22:45] * Quits: Enn (enn@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2990. # [22:45] <AutomatedTester> mstange: android issue could be bug 967452
  2991. # [22:46] * Quits: rogeliodh (Thunderbir@A6BD84F6.C2BE31D.D67CC001.IP) (Quit: rogeliodh)
  2992. # [22:47] * Joins: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net)
  2993. # [22:47] * Quits: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: mixedpuppy)
  2994. # [22:48] * Quits: mcsmurf (chatzilla@moz-14D2B2CE.dip0.t-ipconnect.de) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.23/20131210201652])
  2995. # [22:48] <AutomatedTester> closing the trees until we can get releng fix into tbpl prod
  2996. # [22:49] * jmaher is now known as jmaher|afk
  2997. # [22:49] <bnicholson> cross-posting from #js: does anyone know why `fn instanceof Function` would return false, while `typeof fn == "function"` is true?
  2998. # [22:49] <bnicholson> snippet here: https://pastebin.mozilla.org/4185242
  2999. # [22:49] * Quits: aklotz (Thunderbir@FD1E68D2.64455FB.F97ED6F2.IP) (Quit: aklotz)
  3000. # [22:49] * Quits: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net) (Ping timeout)
  3001. # [22:49] <mstange> AutomatedTester: I think that's the issue I'm seeing
  3002. # [22:49] * Quits: jimb (user@125EF623.B2666F0E.66399531.IP) (Ping timeout)
  3003. # [22:50] * Joins: askalski (akuda@2BA4E5A7.CC7751E8.6712E96B.IP)
  3004. # [22:50] <mstange> AutomatedTester: wget --progress=dot:mega --tries=5 --waitretry=120 -N https://ftp-ssl.mozilla.org/.../fennec-29.0a2.en-US.android-arm-armv6.apk is the command that fails in my build
  3005. # [22:50] <mstange> AutomatedTester: https://ftp-ssl.mozilla.org/pub/mozilla.org/mobile/tinderbox-builds/mozilla-aurora-android-armv6/1391542405/mozilla-aurora_tegra_android-armv6_test-crashtest-bm88-tests1-tegra-build160.txt.gz
  3006. # [22:50] * Quits: jwei (jwei@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Leaving.)
  3007. # [22:51] <AutomatedTester> catlee-mtg: ^ related to what aki is fixing for tbpl?
  3008. # [22:51] * Joins: jwei (jwei@13F2CEC5.7672369.D8E68FF6.IP)
  3009. # [22:52] * Joins: aki (aki@moz-A18C1E59.members.linode.com)
  3010. # [22:52] * Joins: aklotz (Thunderbir@FD1E68D2.64455FB.F97ED6F2.IP)
  3011. # [22:52] <aki> mstange: your build is failing where?
  3012. # [22:52] <mstange> aki: on Aurora, android tests, second push from the top
  3013. # [22:52] <mstange> oh, first now, too
  3014. # [22:52] <mstange> https://tbpl.mozilla.org/?tree=Mozilla-Aurora
  3015. # [22:53] * geekboy is now known as geekboy|afk
  3016. # [22:54] <aki> ok
  3017. # [22:54] * Joins: terrence_ (terrence@moz-B38D16E9.sb.sd.cox.net)
  3018. # [22:55] * ehsan|mtg is now known as ehsan
  3019. # [22:55] * Quits: milan_ (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  3020. # [22:55] * Joins: milan (milan@13F2CEC5.7672369.D8E68FF6.IP)
  3021. # [22:55] <AutomatedTester> ehsan: please can you look at the build errors that have happened from your push at https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=b54e8c328c32 onwards and see if they are related
  3022. # [22:56] <AutomatedTester> ehsan: tree is closed atm
  3023. # [22:56] * Quits: Optimizer (Optimizer@E08222C9.78D6AEDF.BE90E62C.IP) (Ping timeout)
  3024. # [22:56] * Quits: jwei (jwei@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Leaving.)
  3025. # [22:56] <khuey> the tree is always closed
  3026. # [22:56] * Joins: jwei (jwei@13F2CEC5.7672369.D8E68FF6.IP)
  3027. # [22:56] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3028. # [22:57] <AutomatedTester> not always closed
  3029. # [22:57] <AutomatedTester> its normally quite open
  3030. # [22:57] * Quits: msucan (mihai@70F900A.1CE56E7B.C0E37CF3.IP) (Quit: Leaving.)
  3031. # [22:57] * geekboy|afk is now known as geekboy
  3032. # [22:58] * Joins: vichen (vichen@moz-E42461BB.dynamic.hinet.net)
  3033. # [22:58] * Quits: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: mixedpuppy)
  3034. # [23:00] * Joins: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP)
  3035. # [23:01] * stephend|busy is now known as stephend|mtg
  3036. # [23:01] * Joins: roc (chatzilla@34E8ECDF.DC2C3734.616A18A6.IP)
  3037. # [23:01] * ChanServ sets mode: +o roc
  3038. # [23:01] * Joins: ddahl (ddahl@F3894F4.25313C1E.484C4A16.IP)
  3039. # [23:02] <aki> backing out post_upload due to https://bugzilla.mozilla.org/show_bug.cgi?id=967452#c9
  3040. # [23:02] * Quits: Boriss (Boriss@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  3041. # [23:02] * Quits: stefanh_netbook (chatzilla@moz-3EED0162.customers.ownit.se) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131206152142])
  3042. # [23:02] * Quits: lpy (lpy@51E8C831.DDD9F058.E99F7FDB.IP) (Ping timeout)
  3043. # [23:02] * Joins: Optimizer (Optimizer@4D85C235.4FD8C53D.BE4CF869.IP)
  3044. # [23:03] * Quits: davidb|afk (uid12418@moz-31ABA2C0.irccloud.com) (Quit: )
  3045. # [23:03] * Quits: davidb (davidb@moz-CDD6CD1B.dsl.bell.ca) (Quit: blast off!)
  3046. # [23:03] * Joins: davidb|afk (uid12418@moz-31ABA2C0.irccloud.com)
  3047. # [23:04] <@ehsan> AutomatedTester: looking
  3048. # [23:04] * Quits: AaronMT (AaronMT@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Textual IRC Client: www.textualapp.com)
  3049. # [23:04] <@ehsan> uh oh
  3050. # [23:04] <@ehsan> yeah that's totally my fault!
  3051. # [23:05] <@ehsan> backing out
  3052. # [23:05] <AutomatedTester> ehsan: thanks!
  3053. # [23:05] * taras_ is now known as taras
  3054. # [23:05] * geekboy is now known as geekboy|afk
  3055. # [23:06] * Quits: milan (milan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  3056. # [23:07] * Quits: bjacob_ (bjacob@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3057. # [23:07] * Joins: wesj (wesj@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3058. # [23:08] * Joins: bsmedberg_ (bsmedberg@13F2CEC5.7672369.D8E68FF6.IP)
  3059. # [23:08] <@ehsan> AutomatedTester: done
  3060. # [23:08] <@ehsan> sorry again
  3061. # [23:08] <AutomatedTester> ehsan: awesome
  3062. # [23:08] * hwine|mtg is now known as hwine
  3063. # [23:08] <mstange> aki: Will your backout fix my Aurora redness? Even the JP one?
  3064. # [23:08] * coop|afk is now known as coop
  3065. # [23:08] <aki> mstange: it'll require a rebuild of the build, but yes
  3066. # [23:08] * Joins: FabioMag_ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br)
  3067. # [23:08] <mstange> aki: thank you
  3068. # [23:09] * Joins: Boriss_ (Boriss@13F2CEC5.7672369.D8E68FF6.IP)
  3069. # [23:09] * Quits: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  3070. # [23:10] <AutomatedTester> I have reopened the tree... probably prematurely but lets see
  3071. # [23:10] * Joins: tantek (tantek@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3072. # [23:10] <aki> AutomatedTester: the tegra tests will be broken until the backout takes effect
  3073. # [23:10] <AutomatedTester> aki: how long is that
  3074. # [23:11] * Quits: FabioMag_ (fabiomagno@moz-B3C5BCB4.dsl.telesp.net.br) (Ping timeout)
  3075. # [23:11] <aki> 15-30 min. i'll ask ericz if he can speed that up
  3076. # [23:11] <AutomatedTester> aki: ok, will close the trees again until this is done
  3077. # [23:12] * Joins: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3078. # [23:12] <AutomatedTester> trees closed until aki's change has been pushed
  3079. # [23:12] <aki> ty, and sorry
  3080. # [23:13] <aki> this is part of trying to fix the network-caused tree closures though :)
  3081. # [23:13] <AutomatedTester> aki: its all good
  3082. # [23:13] <AutomatedTester> I am happy to close the trees so that the proper sheriffs don't kill me :)
  3083. # [23:14] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Client exited)
  3084. # [23:14] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  3085. # [23:15] * Quits: heftig (heftig@moz-513A856E.dip0.t-ipconnect.de) (Ping timeout)
  3086. # [23:15] <mstange> AutomatedTester: the Mac reftest failure is caused by me
  3087. # [23:15] <mstange> AutomatedTester: I don't want to back out, because what caused the failure is already a backout
  3088. # [23:16] <mstange> AutomatedTester: and the test that now fails landed while the fix was in the tree
  3089. # [23:16] <mstange> AutomatedTester: so I'd like to disable the test on Mac
  3090. # [23:16] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Ping timeout)
  3091. # [23:16] * pmoore is now known as pmoore|away
  3092. # [23:16] <AutomatedTester> mstange: ok
  3093. # [23:16] * Joins: btulchinsky (btulchinsk@moz-6FFE20E8.dsl.bell.ca)
  3094. # [23:18] <AutomatedTester> mstange: just waiting for aki's patch to be pushed everywhere and then we can land
  3095. # [23:18] <mstange> AutomatedTester: thanks
  3096. # [23:19] * AutomatedTester starts staring
  3097. # [23:19] <ericjung> beltzner: ping
  3098. # [23:20] * Quits: jhopkins (jhopkins@13F2CEC5.7672369.D8E68FF6.IP) (Quit: jhopkins)
  3099. # [23:20] * nthomas|mtg is now known as nthomas
  3100. # [23:21] * catlee-mtg is now known as catlee
  3101. # [23:22] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  3102. # [23:23] * heycam|away is now known as heycam
  3103. # [23:23] * Quits: snig_wal (chatzilla@9B9315E1.A6025CA.1C37C358.IP) (Client exited)
  3104. # [23:24] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  3105. # [23:24] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3106. # [23:24] <aki> AutomatedTester: woot, live
  3107. # [23:24] <aki> AutomatedTester: the busted tests will need new builds
  3108. # [23:25] <AutomatedTester> right
  3109. # [23:25] <beltzner> ericjung: pong
  3110. # [23:25] * kats is now known as kats|away
  3111. # [23:25] <ericjung> beltzner: tunnelbear, not foxyproxy? :(
  3112. # [23:26] * Joins: heftig (heftig@moz-1448C700.dip0.t-ipconnect.de)
  3113. # [23:26] * Joins: clokep (Instantbir@moz-1484204D.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com)
  3114. # [23:26] <beltzner> ericjung: foxyproxy doesn't work on my iPad, and doesn't tell me how much it will cost
  3115. # [23:26] <seth> bz: quick question re: XPIDL and WebIDL
  3116. # [23:26] * philor|away is now known as philor
  3117. # [23:26] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  3118. # [23:26] <ericjung> beltzner: the VPN service works on your ipad just fine. https://getfoxyproxy.org/proxyservice/
  3119. # [23:27] <beltzner> Have you looked at TunnelBear?
  3120. # [23:27] <ericjung> beltzner: cost is there, too, but i can give you a free account
  3121. # [23:27] <beltzner> it's one click
  3122. # [23:27] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  3123. # [23:27] * Callek is now known as Callek_disconnected
  3124. # [23:27] <AutomatedTester> philor: trees closed, sorry for the mess
  3125. # [23:27] <ericjung> beltzner: yes, i have looked at them. why?
  3126. # [23:27] <seth> bz: we're talking over in #static about references between languages in DXR. one question is, are there cases where the mapping between identifiers is not 1-to-1 that we care about? do we, for example, dispatch calls to a JS function with different number arguments to different native functions?
  3127. # [23:27] <philor> AutomatedTester: heh, looks like fun!
  3128. # [23:27] <beltzner> ericjung: the experience is great; I can recommend it to anyone, and it will just work
  3129. # [23:27] <beltzner> also, $5 is cheaper than $14
  3130. # [23:28] <ericjung> beltzner: $14?
  3131. # [23:28] * Quits: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  3132. # [23:28] <AutomatedTester> philor: ehsan's backout is the cause of the build failures, aki has backed out a releng offending patch
  3133. # [23:28] <ericjung> beltzner: the experience is quite "cutesy" but if that's your thing, that's your thing.
  3134. # [23:28] * Quits: askalski (akuda@2BA4E5A7.CC7751E8.6712E96B.IP) (Quit: Wychodzi)
  3135. # [23:28] * mattwoodrow|away is now known as mattwoodrow
  3136. # [23:28] <AutomatedTester> philor: so android needs rebuilds to do the tests again (paraphrasing aki)
  3137. # [23:29] * Quits: Optimizer (Optimizer@4D85C235.4FD8C53D.BE4CF869.IP) (Ping timeout)
  3138. # [23:29] <aki> yeah. i could also do massaged sendchanges
  3139. # [23:29] <@gavin> ericjung: (Canadian VPN pricing for foxyproxy)
  3140. # [23:29] <@bz> seth: well, webidl has method overloading....
  3141. # [23:29] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3142. # [23:29] <@bz> seth: based on both argc and argtypes
  3143. # [23:29] <AutomatedTester> philor: I am going to do some staring now
  3144. # [23:29] <AutomatedTester> philor: and sorry again for the mess :)
  3145. # [23:29] <@bz> seth: c.f. XHR.send
  3146. # [23:30] <@bz> seth: So I guess "yes"?
  3147. # [23:30] <philor> AutomatedTester: it is what it is, every day's an adventure
  3148. # [23:30] * Quits: ahal (ahal@moz-7DE89BF0.cable.teksavvy.com) (Quit: Leaving)
  3149. # [23:31] <AutomatedTester> philor: aki's backout has landed so have done some build retriggers, when you think it is safe to reopen the trees would you mind doing it?
  3150. # [23:31] <mstange> AutomatedTester: note that the tree still won't be green until I've disabled the failing test
  3151. # [23:31] * Quits: tedders1 (tedders1@moz-5668B33F.pck.nerim.net) (Client exited)
  3152. # [23:31] <AutomatedTester> philor: also mstange wants to disable a mac reftest which is burning in the tree
  3153. # [23:31] * Quits: miketaylr (mtaylor@moz-C07D5168.p2p.sfo1.mozilla.com) (User has been banned from Mozilla (no spamming here))
  3154. # [23:31] * Quits: shorlander (shorlander@moz-93A7049A.dhcp.insightbb.com) (Quit: )
  3155. # [23:31] * Joins: tedders1 (tedders1@moz-5668B33F.pck.nerim.net)
  3156. # [23:31] <aki> back to #releng
  3157. # [23:31] * Parts: aki (aki@moz-A18C1E59.members.linode.com)
  3158. # [23:32] <AutomatedTester> mstange: hadnt forgotten
  3159. # [23:32] * Quits: Jesse (jruderman@moz-BBE3ABD.mv.mozilla.com) (Quit: Jesse)
  3160. # [23:32] <mstange> I think I could do that right now on a closed tree because it's completely orthogonal to the android problems
  3161. # [23:32] <philor> AutomatedTester: I can try, this is my lunch hour, of which there are 15 more minutes, but at least I'm not on the front desk any more today, I don't think
  3162. # [23:32] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  3163. # [23:32] * Quits: Gijs (gijs@moz-38E1C9D2.range86-164.btcentralplus.com) (Quit: Reconnecting…)
  3164. # [23:32] * Joins: Gijs (gijs@moz-38E1C9D2.range86-164.btcentralplus.com)
  3165. # [23:32] * Joins: jviereck (Adium@moz-56DDD13.dip0.t-ipconnect.de)
  3166. # [23:32] <AutomatedTester> philor: I can reopen then
  3167. # [23:33] <AutomatedTester> mstange: ok, land on a closed tree
  3168. # [23:33] <mstange> AutomatedTester: thanks!
  3169. # [23:33] <philor> AutomatedTester: no worries, I can sheriff from work, I've done it for years
  3170. # [23:33] * Quits: tedders1 (tedders1@moz-5668B33F.pck.nerim.net) (Ping timeout)
  3171. # [23:33] <AutomatedTester> just getting more tea and then will help out
  3172. # [23:34] * Quits: wlach (wlach@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Ex-Chat)
  3173. # [23:34] * philor looks at the number of jetpack tests, calculates the percentage which will take 161 minutes to fail on a retrigger, and decides we don't need to retrigger them
  3174. # [23:34] <mstange> AutomatedTester: pushed
  3175. # [23:34] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  3176. # [23:35] * Quits: {V} (V@moz-FEE911A5.on.nl) (Quit: Leaving)
  3177. # [23:35] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  3178. # [23:36] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  3179. # [23:36] * Joins: mixedpuppy (mixedpuppy@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3180. # [23:37] * Quits: jrm2k6 (jrm2k6@moz-876091EF.sd.sd.cox.net) (Client exited)
  3181. # [23:38] <gps> gw280: the mozilla-central build system shouldn't build that much concurrently on a 2 core machine unless you've changed something
  3182. # [23:38] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Ping timeout)
  3183. # [23:38] * Quits: grapenuts (chatzilla@moz-EF816845.nycap.res.rr.com) (Quit: ChatZilla 0.9.90.1 [Firefox 28.0a2/20140131004003])
  3184. # [23:38] * stephend|mtg is now known as stephend
  3185. # [23:39] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  3186. # [23:39] * Quits: jwei (jwei@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Leaving.)
  3187. # [23:39] <philor> hmm, which is the Windows build bustage, where we timed out in startup precompile?
  3188. # [23:40] <philor> oh, I bet I know :)
  3189. # [23:41] * bz is now known as bz_away
  3190. # [23:42] * armenzg is now known as armenzg_afk
  3191. # [23:42] * Quits: Mossop (dtownsend@53343B0D.8DCA2D5.5E2862A8.IP) (Quit: Leaving)
  3192. # [23:43] <philor> and whose is the Assertion failure: pres->GetContainerWeak() (SchedulePaint in a detached pres context) in indexedDB?
  3193. # [23:43] * Quits: vikstrous (v@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3194. # [23:44] * stephend is now known as stephend|drappt
  3195. # [23:44] * Quits: btulchinsky (btulchinsk@moz-6FFE20E8.dsl.bell.ca) (Client exited)
  3196. # [23:44] <philor> I think I know what tests are going to be second up against the wall, when the revolution comes
  3197. # [23:44] * Joins: shorlander (shorlander@moz-93A7049A.dhcp.insightbb.com)
  3198. # [23:44] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  3199. # [23:44] * Joins: Mossop (dtownsend@53343B0D.8DCA2D5.5E2862A8.IP)
  3200. # [23:44] * Quits: armenzg_afk (armenzg@moz-DC6D6B46.home1.cgocable.net) (Quit: Leaving)
  3201. # [23:45] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  3202. # [23:45] <AutomatedTester> philor: should I just stand in the corner and watch?
  3203. # [23:46] * Quits: jfkthame (jfkthame@F87A0877.60847916.3E2A4E92.IP) (Quit: Leaving)
  3204. # [23:46] <seth> bz: great, thanks for the example
  3205. # [23:46] * Joins: Mano (mano@moz-DD946CD4.red.bezeqint.net)
  3206. # [23:46] * Joins: lmandel_ (lmandel@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3207. # [23:46] <philor> AutomatedTester: yeah, I've got it - simpler to wait for the backouts than to retrigger a bunch of stuff, and we'll just trip over each other if we both do stuff at once
  3208. # [23:47] * Quits: lmandel (lmandel@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Connection reset by peer)
  3209. # [23:47] <AutomatedTester> philor: okey dokey, I will go break other things ;)
  3210. # [23:47] <gaston> gerv: hi, https://wiki.mozilla.org/Community:SummerOfCode14:Brainstorming is the right page for gsoc proposals from potential mentors, right ?
  3211. # [23:47] * Joins: miketaylr (mtaylor@moz-C07D5168.p2p.sfo1.mozilla.com)
  3212. # [23:48] * Joins: brendan (brendaneic@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3213. # [23:48] * geekboy|afk is now known as geekboy
  3214. # [23:48] <philor> I might as well open b-i, little red there isn't out of place
  3215. # [23:48] * Joins: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net)
  3216. # [23:48] * Joins: Optimizer (Optimizer@4D85C235.4FD8C53D.BE4CF869.IP)
  3217. # [23:48] * Quits: Mano (mano@moz-DD946CD4.red.bezeqint.net) (Ping timeout)
  3218. # [23:50] * Quits: kk1fff (kk1fff@moz-CB3B6591.dynamic.hinet.net) (Ping timeout)
  3219. # [23:50] <philor> and fx-team, because I have faith
  3220. # [23:51] <philor> but not m-c just yet, because I don't have so much that it makes me insane :)
  3221. # [23:51] * gregglind is now known as gregglind_away
  3222. # [23:51] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Quit: surkov)
  3223. # [23:51] * KWierso|PTO is now known as KWierso
  3224. # [23:51] <philor> back in 20
  3225. # [23:52] <AutomatedTester> ok
  3226. # [23:52] <AutomatedTester> oh hai KWierso, feeling better?
  3227. # [23:52] * philor is now known as philor|away
  3228. # [23:52] * markh destroys the last remnants of faith philor has...
  3229. # [23:53] <AutomatedTester> markh: now that is evil, he didnt have much left
  3230. # [23:53] * Quits: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  3231. # [23:53] <KWierso> AutomatedTester: my bloodstream is about 90% cold medicine at this point, but I think I'm doing well enough to stare at a screen for a few hours :)
  3232. # [23:53] <AutomatedTester> KWierso: awesome
  3233. # [23:53] <AutomatedTester> KWierso: read scrollback for what is happening atm
  3234. # [23:53] <markh> he's been living a fantasy all this time, so it's up to me to set him straight!
  3235. # [23:54] * Joins: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca)
  3236. # [23:54] * Quits: bsmedberg_ (bsmedberg@13F2CEC5.7672369.D8E68FF6.IP) (Quit: bsmedberg_)
  3237. # [23:57] * Joins: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3238. # [23:58] * Quits: jgilbert (jgilbert@moz-DABF6845.ph.ph.cox.net) (Ping timeout)
  3239. # [23:58] * Quits: drno (nohlmeier@moz-8C24FDC2.hsd1.ca.comcast.net) (Quit: drno)
  3240. # [23:58] * Joins: mcpherrin (mcpherrin@BB4DB59D.2876C283.70845BE5.IP)
  3241. # [23:59] * Joins: Jesse (jruderman@moz-BBE3ABD.mv.mozilla.com)
  3242. # [23:59] * Joins: drno (nohlmeier@moz-8C24FDC2.hsd1.ca.comcast.net)
  3243. # [23:59] <mcpherrin> Is firefox's "html5" parser just used on <!doctype html> documents, or is it used on "legacy" documents too?
  3244. # [23:59] <khuey> we use it on everything
  3245. # [23:59] <Hixie> there's only "html" documents now
  3246. # [23:59] * Quits: Rik_ (rik@87C1F78E.1DE10CA8.D8E68FF6.IP) (Input/output error)
  3247. # Session Close: Wed Feb 05 00:00:00 2014

The end :)