From 0359a6a13dbe02b680e14cd830206544206153b8 Mon Sep 17 00:00:00 2001 From: Jason Kirtland Date: Wed, 2 Apr 2008 18:13:53 +0000 Subject: [PATCH] - Re-tuned call counts for 2.3 through 2.5. --- test/profiling/compiler.py | 2 +- test/profiling/zoomark.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/profiling/compiler.py b/test/profiling/compiler.py index 1960a1cb6a..7062a7e292 100644 --- a/test/profiling/compiler.py +++ b/test/profiling/compiler.py @@ -23,7 +23,7 @@ class CompileTest(TestBase, AssertsExecutionResults): def test_update(self): t1.update().compile() - @profiling.function_call_count(120, versions={'2.3': 180, '2.4':123}) + @profiling.function_call_count(120, versions={'2.3': 153, '2.4':116}) def test_select(self): s = select([t1], t1.c.c2==t2.c.c1) s.compile() diff --git a/test/profiling/zoomark.py b/test/profiling/zoomark.py index f2e9f8bc89..1606b8103f 100644 --- a/test/profiling/zoomark.py +++ b/test/profiling/zoomark.py @@ -12,6 +12,8 @@ from testlib import * ITERATIONS = 1 +# Use with conditional_call_count() if VM state of a full-suite run +# throws off profiling numbers. _run_type = 'suite' _running_in = lambda: _run_type @@ -26,9 +28,7 @@ class ZooMarkTest(testing.TestBase, AssertsExecutionResults): __only_on__ = 'postgres' __skip_if__ = ((lambda: sys.version_info < (2, 4)), ) - @profiling.conditional_call_count( - _running_in, {'isolation': (2038,), - 'suite': (1569, {'2.4': 1579}, 0.20)}) + @profiling.function_call_count(2028) def test_1_create_tables(self): global metadata metadata = MetaData(testing.db) -- 2.47.3