Title: [137711] trunk/Tools
Revision
137711
Author
[email protected]
Date
2012-12-13 20:52:43 -0800 (Thu, 13 Dec 2012)

Log Message

Unreviewed, fixing typo in python unittest.

I changed the default profiler on linux from pprof to perf in
bug 104971.  I failed to update the unittest results at that time.

* Scripts/webkitpy/common/system/profiler_unittest.py:
(ProfilerFactoryTest.test_basic):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (137710 => 137711)


--- trunk/Tools/ChangeLog	2012-12-14 04:48:11 UTC (rev 137710)
+++ trunk/Tools/ChangeLog	2012-12-14 04:52:43 UTC (rev 137711)
@@ -1,3 +1,13 @@
+2012-12-13  Eric Seidel  <[email protected]>
+
+        Unreviewed, fixing typo in python unittest.
+
+        I changed the default profiler on linux from pprof to perf in
+        bug 104971.  I failed to update the unittest results at that time.
+
+        * Scripts/webkitpy/common/system/profiler_unittest.py:
+        (ProfilerFactoryTest.test_basic):
+
 2012-12-13  Ian Vollick  <[email protected]>
 
         [chromium] Add a virtual test suite for enabling opt-in to composited scrolling

Modified: trunk/Tools/Scripts/webkitpy/common/system/profiler_unittest.py (137710 => 137711)


--- trunk/Tools/Scripts/webkitpy/common/system/profiler_unittest.py	2012-12-14 04:48:11 UTC (rev 137710)
+++ trunk/Tools/Scripts/webkitpy/common/system/profiler_unittest.py	2012-12-14 04:52:43 UTC (rev 137711)
@@ -43,7 +43,7 @@
 
         host.platform.os_name = 'linux'
         profiler = ProfilerFactory.create_profiler(host, '/bin/executable', '/tmp/output')
-        self.assertEquals(profiler._output_path, "/tmp/output/test.pprof")
+        self.assertEquals(profiler._output_path, "/tmp/output/test.data")
 
     def test_pprof_output_regexp(self):
         pprof_output = """
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to