/irc-logs / w3c / #testing / 2015-07-27 / end

Options:

Previous day, Next day

  1. # Session Start: Mon Jul 27 00:00:00 2015
  2. # Session Ident: #testing
  3. # [00:00] <ato> Haha
  4. # [00:00] * Quits: sangwhan__ (~sid23@public.cloak) (Client closed connection)
  5. # [00:02] * Joins: sangwhan__ (~sid23@public.cloak)
  6. # [00:02] * Quits: sangwhan__ (~sid23@public.cloak) (Client closed connection)
  7. # [00:04] * Joins: sangwhan__ (~sid23@public.cloak)
  8. # [01:47] * Quits: Ms2ger (~Ms2ger@public.cloak) ("nn")
  9. # [02:28] * Joins: playjax (~chatzilla@public.cloak)
  10. # [02:43] <MikeSmith> jgraham: restarted wptserve in w3c-test.org
  11. # [02:54] <MikeSmith> jgraham: and I just now added a cron job to restart wptserve on w3c-test.org at 00:51 UTC every day
  12. # [02:57] <MikeSmith> oh and reading the rest of scrollback now, I see you had already retarted it a few hours ago
  13. # [02:58] <MikeSmith> well anyway, I finally took the time to write a simple cron job for it. And it's hacky but it should be OK
  14. # [03:01] <MikeSmith> jgraham: btw I think either you figured this out yourself or we talked about it previously, but when restarting wptserve there, in addition to doing "/etc/init.d/wptserve stop" you had to do "rm /var/run/wptserve.pid" and kill any remaining python processes that are still around
  15. # [03:02] <MikeSmith> jgraham: because "/etc/init.d/wptserve stop" seemed to have left some hanging around
  16. # [03:02] <MikeSmith> jgraham: but I changed the /etc/init.d/wptserve such that it does those two additional things automatically
  17. # [03:03] <MikeSmith> jgraham: that is, it does "rm /var/run/wptserve.pid" and it does "pkill python"
  18. # [03:04] <MikeSmith> jgraham: so "/etc/init.d/wptserve restart" should now actually work as expected (it didn't before because of the problem that is it was not removing the pid file and was leaving child python processes hanging around)
  19. # [03:06] <MikeSmith> jgraham: of course this would break stuff if we ever want to run persistent python processes for some other service there. But at this point we're not running anything else, so it should be OK.
  20. # [05:15] <frewsxcv> anyone know why this https://github.com/w3c/web-platform-tests/blob/master/dom/nodes/ChildNode-after.html#L109 results in '<x></x>12<y></y>' instead of '<x></x>21<y></y>' ?
  21. # [05:39] * Joins: gitbot (~gitbot@public.cloak)
  22. # [05:39] -gitbot:#testing- [web-platform-tests] frewsxcv opened pull request #2034: Fix ChildNode::after incorrect test (master...fix-childnode-after) https://github.com/w3c/web-platform-tests/pull/2034
  23. # [05:39] * Parts: gitbot (~gitbot@public.cloak)
  24. # [05:43] <MikeSmith> frewsxcv: seems Ms2ger reviewed that one
  25. # [05:44] <frewsxcv> does anyone have access to the internal chromium tracker?
  26. # [05:44] <frewsxcv> i'm curious why they reverted https://codereview.chromium.org/1234813003/
  27. # [05:44] <MikeSmith> not anybody who's normally on this channel
  28. # [05:45] * Joins: xianlaioy (~xianlaioy@public.cloak)
  29. # [05:45] <MikeSmith> some people around on #whatwg on freenode do
  30. # [05:45] <MikeSmith> e.g., jsbell
  31. # [05:46] <MikeSmith> of course also on #chromium or #blink on freenode
  32. # [05:46] <frewsxcv> hmm, maybe i'll ask there
  33. # [05:51] <MikeSmith> frewsxcv: jsbell is one of the blink devs who's very familiar with the wpt test suite
  34. # [05:51] <MikeSmith> Ah krit also
  35. # [05:52] <frewsxcv> ah okay, thanks
  36. # [05:56] * Quits: xianlaioy (~xianlaioy@public.cloak) (Ping timeout: 180 seconds)
  37. # [06:41] * Joins: bhill2 (~bhill2@public.cloak)
  38. # [06:43] * Joins: bhill2_ (~bhill2@public.cloak)
  39. # [06:49] * Quits: bhill2 (~bhill2@public.cloak) (Ping timeout: 180 seconds)
  40. # [07:22] * Quits: bhill2_ (~bhill2@public.cloak) (Ping timeout: 180 seconds)
  41. # [07:30] * Joins: bhill2 (~bhill2@public.cloak)
  42. # [07:41] * Quits: bhill2 (~bhill2@public.cloak) (Ping timeout: 180 seconds)
  43. # [09:11] <hallvord> so, I got into an interesting Git state.. again :-/
  44. # [09:12] <hallvord> I wanted to rebase my branch for a pull request against web-platform-tests
  45. # [09:13] <hallvord> so, I did 'git rebase master' and it worked fine
  46. # [09:14] <hallvord> but when I tried pushing, I got that error saying remote is different bla bla and do git pull
  47. # [09:15] <hallvord> git pull created a lot of merge conflicts.. but I wanted the state of the repo I had before pull, so after some searching I did 'git checkout --ours -- *'
  48. # [09:15] <hallvord> which seemed to do a splendid job
  49. # [09:18] <hallvord> however, there's a catch. After git add for all the files in the folder I'm working on, git status still says
  50. # [09:18] <hallvord> You have unmerged paths.
  51. # [09:18] <hallvord> (fix conflicts and run "git commit")
  52. # [09:18] <hallvord> Unmerged paths:
  53. # [09:18] <hallvord> (use "git add <file>..." to mark resolution)
  54. # [09:18] <hallvord> added by us: tools
  55. # [09:19] <hallvord> so I'm not allowed to commit because of the 'tools' dir, and I'm not allowed to 'git add tools' either - now it says
  56. # [09:19] <hallvord> error: unable to index file tools
  57. # [09:19] <hallvord> fatal: updating files failed
  58. # [09:20] <hallvord> and that sort of sucks.. :( What's next?
  59. # [09:34] <hallvord> (It's also confusing how git status says a lot of files in worker and messaging are "modified" - I didn't touch them, how is that possible?)
  60. # [09:41] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
  61. # [09:48] * Joins: Ms2ger (~Ms2ger@public.cloak)
  62. # [10:00] <MikeSmith> hallvord: try "git submodule deinit -f . && git submodule update --init --recursive"
  63. # [10:01] <MikeSmith> or you could just do ""git submodule deinit -f ." if you just want to be able to push
  64. # [10:06] * Joins: cvrebert (~cvrebert@public.cloak)
  65. # [10:06] <botie> cvrebert, at 2015-07-26 01:11 UTC, MikeSmith said: https://github.com/w3c/web-platform-tests/pull/2031 now has a merge conflict
  66. # [10:06] <cvrebert> botie: thanks; no longer relevant
  67. # [10:06] <botie> cvrebert: no worries
  68. # [10:09] * Quits: cvrebert (~cvrebert@public.cloak) (cvrebert)
  69. # [10:10] <MikeSmith> frewsxcv: so I'm told the reason for that revert was "it introduced a crash which is being fixed"
  70. # [10:10] <Ms2ger> Hi frewsxcv!
  71. # [10:10] <MikeSmith> frewsxcv: I assume that means they plan to re-land it after it's updated to not cause a crash
  72. # [10:10] <frewsxcv> Hello
  73. # [10:11] <MikeSmith> frewsxcv: (by way of philipj over on #whatwg)
  74. # [10:15] <frewsxcv> Ms2ger: let me know if you have any thoughts about the WPT PR
  75. # [10:18] <Ms2ger> Hmm
  76. # [10:20] <Ms2ger> frewsxcv, looks like the bug was introduced in response to my review comments :)
  77. # [10:20] <MikeSmith> high five
  78. # [10:20] * Joins: gitbot (~gitbot@public.cloak)
  79. # [10:20] -gitbot:#testing- [web-platform-tests] Ms2ger closed pull request #2034: Fix ChildNode::after incorrect test (master...fix-childnode-after) https://github.com/w3c/web-platform-tests/pull/2034
  80. # [10:20] * Parts: gitbot (~gitbot@public.cloak)
  81. # [10:20] * Joins: gitbot (~gitbot@public.cloak)
  82. # [10:20] -gitbot:#testing- [web-platform-tests] Ms2ger pushed 2 new commits to master: https://github.com/w3c/web-platform-tests/compare/13d65bc07536...3223977dd312
  83. # [10:20] -gitbot:#testing- web-platform-tests/master 3a72a22 Corey Farwell: Fix ChildNode::after incorrect test...
  84. # [10:20] -gitbot:#testing- web-platform-tests/master 3223977 Ms2ger: Merge pull request #2034 from frewsxcv/fix-childnode-after...
  85. # [10:20] * Parts: gitbot (~gitbot@public.cloak)
  86. # [10:20] <frewsxcv> 😎
  87. # [10:21] <MikeSmith> Ms2ger: "first do no harm"
  88. # [10:35] * Joins: Lachy (~Lachy@public.cloak)
  89. # [12:03] * Joins: alex179ohm (~alex179ohm@public.cloak)
  90. # [12:03] * Parts: alex179ohm (~alex179ohm@public.cloak)
  91. # [12:13] <jgraham> Anyone want to confirm that this test is actually probing undefined behaviour: http://codepen.io/bboyle/pen/MwPXMq ?
  92. # [13:48] * Joins: gitbot (~gitbot@public.cloak)
  93. # [13:48] -gitbot:#testing- [web-platform-tests] Ms2ger created sync_dca9e9f9eb5d455f40c73fd2fa2fe79637ae0b22 (+1 new commit): https://github.com/w3c/web-platform-tests/commit/dca9e9f9eb5d
  94. # [13:48] -gitbot:#testing- web-platform-tests/sync_dca9e9f9eb5d455f40c73fd2fa2fe79637ae0b22 dca9e9f Ms2ger: Add a test for clamping in WebSocket#close.
  95. # [13:48] * Parts: gitbot (~gitbot@public.cloak)
  96. # [13:48] * Joins: gitbot (~gitbot@public.cloak)
  97. # [13:48] -gitbot:#testing- [web-platform-tests] Ms2ger opened pull request #2035: Add a test for clamping in WebSocket#close. (master...sync_dca9e9f9eb5d455f40c73fd2fa2fe79637ae0b22) https://github.com/w3c/web-platform-tests/pull/2035
  98. # [13:48] * Parts: gitbot (~gitbot@public.cloak)
  99. # [13:48] * Joins: gitbot (~gitbot@public.cloak)
  100. # [13:48] -gitbot:#testing- [web-platform-tests] Ms2ger closed pull request #2035: Add a test for clamping in WebSocket#close. (master...sync_dca9e9f9eb5d455f40c73fd2fa2fe79637ae0b22) https://github.com/w3c/web-platform-tests/pull/2035
  101. # [13:48] * Parts: gitbot (~gitbot@public.cloak)
  102. # [13:48] * Joins: gitbot (~gitbot@public.cloak)
  103. # [13:48] -gitbot:#testing- [web-platform-tests] Ms2ger pushed 1 new commit to master: https://github.com/w3c/web-platform-tests/commit/12d3e15e5ecae695e1216c358d613705fbff6b68
  104. # [13:48] -gitbot:#testing- web-platform-tests/master 12d3e15 Ms2ger: Merge pull request #2035 from w3c/sync_dca9e9f9eb5d455f40c73fd2fa2fe79637ae0b22...
  105. # [13:48] * Parts: gitbot (~gitbot@public.cloak)
  106. # [13:48] * Joins: gitbot (~gitbot@public.cloak)
  107. # [13:48] -gitbot:#testing- [web-platform-tests] Ms2ger deleted sync_dca9e9f9eb5d455f40c73fd2fa2fe79637ae0b22 at dca9e9f: https://github.com/w3c/web-platform-tests/commit/dca9e9f
  108. # [13:48] * Parts: gitbot (~gitbot@public.cloak)
  109. # [13:49] * Joins: plh (plehegar@public.cloak)
  110. # [14:33] * Quits: playjax (~chatzilla@public.cloak) (Client closed connection)
  111. # [14:39] * Joins: gitbot (~gitbot@public.cloak)
  112. # [14:39] -gitbot:#testing- [web-platform-tests] hallvors force-pushed hallvors/clipboard-api-2 from deaf7d1 to 1301bbf: https://github.com/w3c/web-platform-tests/commits/hallvors/clipboard-api-2
  113. # [14:39] -gitbot:#testing- web-platform-tests/hallvors/clipboard-api-2 a2190a0 Hallvord R. M. Steen: adding clipboard API tests
  114. # [14:39] -gitbot:#testing- web-platform-tests/hallvors/clipboard-api-2 b77f7a0 Hallvord R. M. Steen: adding helper files
  115. # [14:39] -gitbot:#testing- web-platform-tests/hallvors/clipboard-api-2 2269d2d Hallvord R. M. Steen: Added script that extracts tests from spec source code and generates various variants
  116. # [14:39] * Parts: gitbot (~gitbot@public.cloak)
  117. # [14:51] * Joins: Lachy_ (~Lachy@public.cloak)
  118. # [14:51] * Quits: Lachy (~Lachy@public.cloak) (Client closed connection)
  119. # [15:54] * Quits: Lachy_ (~Lachy@public.cloak) (Client closed connection)
  120. # [15:54] * Joins: Lachy (~Lachy@public.cloak)
  121. # [16:02] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
  122. # [16:03] * Joins: Lachy (~Lachy@public.cloak)
  123. # [16:26] * Joins: gitbot (~gitbot@public.cloak)
  124. # [16:26] -gitbot:#testing- [web-platform-tests] hallvors pushed 19 new commits to hallvors/clipboard-api-2: https://github.com/w3c/web-platform-tests/compare/1301bbf6e6eb...f675441e6413
  125. # [16:26] -gitbot:#testing- web-platform-tests/hallvors/clipboard-api-2 3a916cc Hallvord R. M. Steen: adding clipboard API tests
  126. # [16:26] -gitbot:#testing- web-platform-tests/hallvors/clipboard-api-2 b63ae72 Hallvord R. M. Steen: adding helper files
  127. # [16:26] -gitbot:#testing- web-platform-tests/hallvors/clipboard-api-2 1c2739a Hallvord R. M. Steen: Added script that extracts tests from spec source code and generates various variants
  128. # [16:26] * Parts: gitbot (~gitbot@public.cloak)
  129. # [16:42] * Joins: robieb (~robieb@public.cloak)
  130. # [16:42] * Quits: robieb (~robieb@public.cloak) ("Page closed")
  131. # [17:00] * Joins: bhill2 (~bhill2@public.cloak)
  132. # [17:13] * Quits: bhill2 (~bhill2@public.cloak) (Client closed connection)
  133. # [17:13] * Joins: bhill2 (~bhill2@public.cloak)
  134. # [17:16] * Joins: gitbot (~gitbot@public.cloak)
  135. # [17:16] -gitbot:#testing- [web-platform-tests] hallvors pushed 1 new commit to hallvors/clipboard-api-2: https://github.com/w3c/web-platform-tests/commit/68be7a99e291d586226837d64fc399f1ff52b6ba
  136. # [17:16] -gitbot:#testing- web-platform-tests/hallvors/clipboard-api-2 68be7a9 Hallvord R. M. Steen: dropping unnecessary try usage, better testharness.js usage
  137. # [17:16] * Parts: gitbot (~gitbot@public.cloak)
  138. # [18:00] * Quits: bhill2 (~bhill2@public.cloak) (Ping timeout: 180 seconds)
  139. # [18:02] * Joins: gitbot (~gitbot@public.cloak)
  140. # [18:02] -gitbot:#testing- [web-platform-tests] hallvors force-pushed hallvors/clipboard-api-2 from 68be7a9 to ff638f9: https://github.com/w3c/web-platform-tests/commits/hallvors/clipboard-api-2
  141. # [18:02] -gitbot:#testing- web-platform-tests/hallvors/clipboard-api-2 4a00c77 Hallvord R. M. Steen: adding clipboard API tests
  142. # [18:02] -gitbot:#testing- web-platform-tests/hallvors/clipboard-api-2 f6d5c93 Hallvord R. M. Steen: adding helper files
  143. # [18:02] -gitbot:#testing- web-platform-tests/hallvors/clipboard-api-2 21cd455 Hallvord R. M. Steen: Added script that extracts tests from spec source code and generates various variants
  144. # [18:02] * Parts: gitbot (~gitbot@public.cloak)
  145. # [18:09] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
  146. # [18:59] * Joins: Lachy (~Lachy@public.cloak)
  147. # [19:28] * Joins: bhill2 (~bhill2@public.cloak)
  148. # [19:35] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
  149. # [19:55] * Quits: bhill2 (~bhill2@public.cloak) (Client closed connection)
  150. # [19:58] * Joins: bhill2 (~bhill2@public.cloak)
  151. # [20:25] * terri_offline is now known as terri
  152. # [20:48] * Quits: bhill2 (~bhill2@public.cloak) (Client closed connection)
  153. # [20:49] * Joins: bhill2 (~bhill2@public.cloak)
  154. # [20:56] * Quits: bhill2 (~bhill2@public.cloak) (Ping timeout: 180 seconds)
  155. # [21:16] * Joins: Lachy (~Lachy@public.cloak)
  156. # [21:28] * mkwst is now known as mkwst_afk
  157. # [21:31] * Joins: bhill2 (~bhill2@public.cloak)
  158. # [21:35] * mkwst_afk is now known as mkwst
  159. # [21:54] * Joins: zcorpan (~zcorpan@public.cloak)
  160. # [22:13] * terri is now known as terri_offline
  161. # [22:34] * Quits: zcorpan (~zcorpan@public.cloak) ("Leaving...")
  162. # Session Close: Tue Jul 28 00:00:00 2015

Previous day, Next day

Think these logs are useful? Then please donate to show your gratitude (and keep them up, of course). Thanks! — Krijn