From fbcfd079debf27665f23a996853903aa3b2ef23a Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 17 Apr 2011 15:00:27 -0400 Subject: [PATCH] callcount update for cext + 2.7 --- test/aaa_profiling/test_zoomark.py | 5 +++-- test/aaa_profiling/test_zoomark_orm.py | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/test/aaa_profiling/test_zoomark.py b/test/aaa_profiling/test_zoomark.py index dfea8312a2..2ac9aa632d 100644 --- a/test/aaa_profiling/test_zoomark.py +++ b/test/aaa_profiling/test_zoomark.py @@ -387,14 +387,15 @@ class ZooMarkTest(fixtures.TestBase): def test_profile_5_aggregates(self): self.test_baseline_5_aggregates() - @profiling.function_call_count(1788, {'2.4': 1118, '3.2':1647}) + @profiling.function_call_count(1788, {'2.4': 1118, '3.2':1647, + '2.7+cextension':1698}) def test_profile_6_editing(self): self.test_baseline_6_editing() @profiling.function_call_count(2252, {'2.4': 1673, '2.6':2412, '2.7':2412, - '2.7+cextension':2252, + '2.7+cextension':2110, '2.6+cextension': 2252}) def test_profile_7_multiview(self): self.test_baseline_7_multiview() diff --git a/test/aaa_profiling/test_zoomark_orm.py b/test/aaa_profiling/test_zoomark_orm.py index 592e63701e..3363a6094a 100644 --- a/test/aaa_profiling/test_zoomark_orm.py +++ b/test/aaa_profiling/test_zoomark_orm.py @@ -334,7 +334,8 @@ class ZooMarkTest(fixtures.TestBase): def test_profile_1_create_tables(self): self.test_baseline_1_create_tables() - @profiling.function_call_count(5786, {'2.7+cextension':5992, '2.6+cextension':5992}) + @profiling.function_call_count(5786, {'2.7+cextension':5683, + '2.6+cextension':5992}) def test_profile_1a_populate(self): self.test_baseline_1a_populate() -- 2.39.5