Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(661)

Unified Diff: tools/cygprofile/mergetraces_unittest.py

Issue 281093002: Make cygprofile order functions by process and thread ID. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/cygprofile/mergetraces_unittest.py
diff --git a/tools/cygprofile/mergetraces_unittest.py b/tools/cygprofile/mergetraces_unittest.py
new file mode 100644
index 0000000000000000000000000000000000000000..5a00bd6d9a03a0450a0a329f62c4cc0a1f38c6cc
--- /dev/null
+++ b/tools/cygprofile/mergetraces_unittest.py
@@ -0,0 +1,36 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import unittest
+
+import mergetraces
+
+class GroupByProcessAndThreadIdTest(unittest.TestCase):
+ def runTest(self):
+ # (sec, usec, 'pid:tid', function address).
+ input_trace = [
+ (100, 10, '2000:2001', 0x5),
+ (100, 11, '2000:2001', 0x3),
+ (100, 11, '2000:2000', 0x1),
+ (100, 12, '2001:2001', 0x6),
+ (100, 13, '2000:2002', 0x8),
+ (100, 13, '2001:2002', 0x9),
+ (100, 14, '2000:2000', 0x7)
+ ]
+
+ # Functions should be grouped by thread-id and PIDs should not be
+ # interleaved.
+ expected_trace = [
+ (100, 10, '2000:2001', 0x5),
+ (100, 11, '2000:2001', 0x3),
+ (100, 11, '2000:2000', 0x1),
+ (100, 14, '2000:2000', 0x7),
+ (100, 13, '2000:2002', 0x8),
+ (100, 12, '2001:2001', 0x6),
+ (100, 13, '2001:2002', 0x9)
+ ]
+
+ grouped_trace = mergetraces.GroupByProcessAndThreadId(input_trace)
+
+ self.assertEqual(grouped_trace, expected_trace)

Powered by Google App Engine
This is Rietveld 408576698