summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/corelib/tools/qstring/data.h
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2014-07-24 16:47:41 -0700
committerThiago Macieira <thiago.macieira@intel.com>2014-08-09 15:36:36 +0200
commitdb851ed5d132c6221f94307038e3ac4017e28273 (patch)
tree0b33439b8b08869a76c0b903bc371039836ade42 /tests/benchmarks/corelib/tools/qstring/data.h
parente319196f7634825c6f8f6694dbc42f0ee52a1ce8 (diff)
Trim the QString benchmark test
The comparison, Latin 1 and UTF-8 benchmarks contained in this file are stale. The implementation changed in Qt 5.3 and this benchmark couldn't be updated (test data too large for Qt). Please contact Thiago Macieira to obtain the benchmarks and test data. Change-Id: I48c19b1f1711eb73c953a30ed4da510e97a62472 Reviewed-by: Lars Knoll <lars.knoll@digia.com> Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'tests/benchmarks/corelib/tools/qstring/data.h')
-rw-r--r--tests/benchmarks/corelib/tools/qstring/data.h70
1 files changed, 0 insertions, 70 deletions
diff --git a/tests/benchmarks/corelib/tools/qstring/data.h b/tests/benchmarks/corelib/tools/qstring/data.h
deleted file mode 100644
index 82bb718990..0000000000
--- a/tests/benchmarks/corelib/tools/qstring/data.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#ifndef DATA_H
-#define DATA_H
-
-#include <qglobal.h>
-
-struct StringCollection
-{
- int len;
- int offset1, offset2;
- ushort align1, align2;
-};
-
-extern const ushort stringCollectionData[];
-extern const StringCollection stringCollection[];
-extern const int stringCollectionCount;
-
-struct StringData
-{
- const int *entries;
- union {
- const char *charData;
- const ushort *ushortData;
- };
-
- int entryCount;
- int maxLength;
-};
-
-#endif // DATA_H