]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
callcounts for py3k
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 15 Mar 2012 00:19:15 +0000 (17:19 -0700)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 15 Mar 2012 00:19:15 +0000 (17:19 -0700)
test/aaa_profiling/test_zoomark.py
test/aaa_profiling/test_zoomark_orm.py

index ebce688724ace5acdfd4a5ed5cbd93ab37d499e1..a0336662d7c1b985ead43b1316ac22f7e1409b55 100644 (file)
@@ -402,6 +402,7 @@ class ZooMarkTest(fixtures.TestBase):
     @profiling.function_call_count(2252, {'2.4': 1673, 
                                             '2.6':2412,
                                             '2.7':2412,
+                                            '3.2':2396,
                                             '2.7+cextension':2110, 
                                             '2.6+cextension': 2252})
     def test_profile_7_multiview(self):
index 59391b4990db0e09dd5ed15ab85e54f609b203f7..99b4d922406e436b75b48e7dc2eeef8a55bd7c84 100644 (file)
@@ -331,7 +331,7 @@ class ZooMarkTest(fixtures.TestBase):
         session = sessionmaker(engine)()
         engine.connect()
 
-    @profiling.function_call_count(5600)
+    @profiling.function_call_count(5600, {"3.2":5928})
     def test_profile_1_create_tables(self):
         self.test_baseline_1_create_tables()
 
@@ -340,7 +340,7 @@ class ZooMarkTest(fixtures.TestBase):
     def test_profile_1a_populate(self):
         self.test_baseline_1a_populate()
 
-    @profiling.function_call_count(413, {'3.2':360})
+    @profiling.function_call_count(413, {'3.2':398})
     def test_profile_2_insert(self):
         self.test_baseline_2_insert()
 
@@ -358,7 +358,7 @@ class ZooMarkTest(fixtures.TestBase):
 
     # and this number go down slightly when using the C extensions
 
-    @profiling.function_call_count(17698, {'2.7+cextension':17698, '2.6': 18943, '2.7':19110})
+    @profiling.function_call_count(17698, {'2.7+cextension':17698, '2.6': 18943, '2.7':19110, '3.2':19264})
     def test_profile_4_expressions(self):
         self.test_baseline_4_expressions()