diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2010-01-14 02:27:18 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2010-01-14 02:52:09 (GMT) |
commit | 8e9ec9b982808feb3608e3f9b4d4caf13b65428c (patch) | |
tree | 617bd39b837ce63aec6110b53b76724f30b853b9 /tests/benchmarks/declarative/binding | |
parent | 0c0afc25be3267dddddc63f0cf17c1fba4d5e69d (diff) | |
download | Qt-8e9ec9b982808feb3608e3f9b4d4caf13b65428c.zip Qt-8e9ec9b982808feb3608e3f9b4d4caf13b65428c.tar.gz Qt-8e9ec9b982808feb3608e3f9b4d4caf13b65428c.tar.bz2 |
Benchmark cleanup.
Diffstat (limited to 'tests/benchmarks/declarative/binding')
-rw-r--r-- | tests/benchmarks/declarative/binding/data/idproperty.txt (renamed from tests/benchmarks/declarative/binding/idproperty.txt) | 0 | ||||
-rw-r--r-- | tests/benchmarks/declarative/binding/data/localproperty.txt (renamed from tests/benchmarks/declarative/binding/localproperty.txt) | 0 | ||||
-rw-r--r-- | tests/benchmarks/declarative/binding/data/objectproperty.txt (renamed from tests/benchmarks/declarative/binding/objectproperty.txt) | 0 | ||||
-rw-r--r-- | tests/benchmarks/declarative/binding/tst_binding.cpp | 16 |
4 files changed, 8 insertions, 8 deletions
diff --git a/tests/benchmarks/declarative/binding/idproperty.txt b/tests/benchmarks/declarative/binding/data/idproperty.txt index 71e3c4e..71e3c4e 100644 --- a/tests/benchmarks/declarative/binding/idproperty.txt +++ b/tests/benchmarks/declarative/binding/data/idproperty.txt diff --git a/tests/benchmarks/declarative/binding/localproperty.txt b/tests/benchmarks/declarative/binding/data/localproperty.txt index c7ca0ef..c7ca0ef 100644 --- a/tests/benchmarks/declarative/binding/localproperty.txt +++ b/tests/benchmarks/declarative/binding/data/localproperty.txt diff --git a/tests/benchmarks/declarative/binding/objectproperty.txt b/tests/benchmarks/declarative/binding/data/objectproperty.txt index 63fa74d..63fa74d 100644 --- a/tests/benchmarks/declarative/binding/objectproperty.txt +++ b/tests/benchmarks/declarative/binding/data/objectproperty.txt diff --git a/tests/benchmarks/declarative/binding/tst_binding.cpp b/tests/benchmarks/declarative/binding/tst_binding.cpp index 02312e6..7b4875f 100644 --- a/tests/benchmarks/declarative/binding/tst_binding.cpp +++ b/tests/benchmarks/declarative/binding/tst_binding.cpp @@ -102,8 +102,8 @@ void tst_binding::objectproperty_data() QTest::addColumn<QString>("file"); QTest::addColumn<QString>("binding"); - QTest::newRow("object.value") << "objectproperty.txt" << "object.value"; - QTest::newRow("object.value + 10") << "objectproperty.txt" << "object.value + 10"; + QTest::newRow("object.value") << "data/objectproperty.txt" << "object.value"; + QTest::newRow("object.value + 10") << "data/objectproperty.txt" << "object.value + 10"; } void tst_binding::objectproperty() @@ -131,13 +131,13 @@ void tst_binding::basicproperty_data() QTest::addColumn<QString>("file"); QTest::addColumn<QString>("binding"); - QTest::newRow("value") << "localproperty.txt" << "value"; - QTest::newRow("value + 10") << "localproperty.txt" << "value + 10"; - QTest::newRow("value + value + 10") << "localproperty.txt" << "value + value + 10"; + QTest::newRow("value") << "data/localproperty.txt" << "value"; + QTest::newRow("value + 10") << "data/localproperty.txt" << "value + 10"; + QTest::newRow("value + value + 10") << "data/localproperty.txt" << "value + value + 10"; - QTest::newRow("MyObject.value") << "idproperty.txt" << "MyObject.value"; - QTest::newRow("MyObject.value + 10") << "idproperty.txt" << "MyObject.value + 10"; - QTest::newRow("MyObject.value + MyObject.value + 10") << "idproperty.txt" << "MyObject.value + MyObject.value + 10"; + QTest::newRow("MyObject.value") << "data/idproperty.txt" << "MyObject.value"; + QTest::newRow("MyObject.value + 10") << "data/idproperty.txt" << "MyObject.value + 10"; + QTest::newRow("MyObject.value + MyObject.value + 10") << "data/idproperty.txt" << "MyObject.value + MyObject.value + 10"; } void tst_binding::basicproperty() |