summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/corelib/io
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2021-01-29 18:56:54 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2021-02-01 21:14:01 +0100
commit7d1cda9de3e88db33696675c9723209d0f876cdb (patch)
tree1859b2b1a061adb34376ff11e8b50f3e718c24b4 /tests/benchmarks/corelib/io
parenta4574bfd34d68ac7e670626e21175bf2fb04abb0 (diff)
Remove qmake project files for benchmarks
Also remove tests/tests.pro that would be empty without the benchmarks. Change-Id: Iaf92a729d1286b3e0c03bf9f877b59e1d83708e6 Reviewed-by: Alexey Edelev <alexey.edelev@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Diffstat (limited to 'tests/benchmarks/corelib/io')
-rw-r--r--tests/benchmarks/corelib/io/io.pro11
-rw-r--r--tests/benchmarks/corelib/io/qdir/10000/10000.pro6
-rw-r--r--tests/benchmarks/corelib/io/qdir/qdir.pro2
-rw-r--r--tests/benchmarks/corelib/io/qdir/tree/tree.pro7
-rw-r--r--tests/benchmarks/corelib/io/qdiriterator/qdiriterator.pro13
-rw-r--r--tests/benchmarks/corelib/io/qfile/qfile.pro7
-rw-r--r--tests/benchmarks/corelib/io/qfileinfo/qfileinfo.pro7
-rw-r--r--tests/benchmarks/corelib/io/qiodevice/qiodevice.pro6
-rw-r--r--tests/benchmarks/corelib/io/qprocess/qprocess.pro3
-rw-r--r--tests/benchmarks/corelib/io/qprocess/test/test.pro5
-rw-r--r--tests/benchmarks/corelib/io/qprocess/testProcessLoopback/testProcessLoopback.pro6
-rw-r--r--tests/benchmarks/corelib/io/qtemporaryfile/qtemporaryfile.pro6
-rw-r--r--tests/benchmarks/corelib/io/qtextstream/qtextstream.pro6
-rw-r--r--tests/benchmarks/corelib/io/qurl/qurl.pro7
14 files changed, 0 insertions, 92 deletions
diff --git a/tests/benchmarks/corelib/io/io.pro b/tests/benchmarks/corelib/io/io.pro
deleted file mode 100644
index 23f9c190aa..0000000000
--- a/tests/benchmarks/corelib/io/io.pro
+++ /dev/null
@@ -1,11 +0,0 @@
-TEMPLATE = subdirs
-SUBDIRS = \
- qdir \
- qdiriterator \
- qfile \
- qfileinfo \
- qiodevice \
- qtemporaryfile \
- qtextstream
-
-qtConfig(process): SUBDIRS += qprocess
diff --git a/tests/benchmarks/corelib/io/qdir/10000/10000.pro b/tests/benchmarks/corelib/io/qdir/10000/10000.pro
deleted file mode 100644
index 52325f314f..0000000000
--- a/tests/benchmarks/corelib/io/qdir/10000/10000.pro
+++ /dev/null
@@ -1,6 +0,0 @@
-TEMPLATE = app
-CONFIG += benchmark
-QT = core testlib
-
-TARGET = tst_bench_qdir_10000
-SOURCES += bench_qdir_10000.cpp
diff --git a/tests/benchmarks/corelib/io/qdir/qdir.pro b/tests/benchmarks/corelib/io/qdir/qdir.pro
deleted file mode 100644
index c572566759..0000000000
--- a/tests/benchmarks/corelib/io/qdir/qdir.pro
+++ /dev/null
@@ -1,2 +0,0 @@
-TEMPLATE = subdirs
-SUBDIRS = 10000
diff --git a/tests/benchmarks/corelib/io/qdir/tree/tree.pro b/tests/benchmarks/corelib/io/qdir/tree/tree.pro
deleted file mode 100644
index 90ddd23345..0000000000
--- a/tests/benchmarks/corelib/io/qdir/tree/tree.pro
+++ /dev/null
@@ -1,7 +0,0 @@
-TEMPLATE = app
-CONFIG += benchmark
-QT = core testlib
-
-TARGET = bench_qdir_tree
-SOURCES += bench_qdir_tree.cpp
-RESOURCES += bench_qdir_tree.qrc
diff --git a/tests/benchmarks/corelib/io/qdiriterator/qdiriterator.pro b/tests/benchmarks/corelib/io/qdiriterator/qdiriterator.pro
deleted file mode 100644
index 0921b8424e..0000000000
--- a/tests/benchmarks/corelib/io/qdiriterator/qdiriterator.pro
+++ /dev/null
@@ -1,13 +0,0 @@
-CONFIG += benchmark
-QT = core testlib
-
-# Enable c++17 support for std::filesystem
-qtConfig(cxx17_filesystem) {
- CONFIG += c++17
- gcc:lessThan(QMAKE_GCC_MAJOR_VERSION, 9): \
- QMAKE_LFLAGS += -lstdc++fs
-}
-
-TARGET = tst_bench_qdiriterator
-SOURCES += main.cpp qfilesystemiterator.cpp
-HEADERS += qfilesystemiterator.h
diff --git a/tests/benchmarks/corelib/io/qfile/qfile.pro b/tests/benchmarks/corelib/io/qfile/qfile.pro
deleted file mode 100644
index a882c4ea61..0000000000
--- a/tests/benchmarks/corelib/io/qfile/qfile.pro
+++ /dev/null
@@ -1,7 +0,0 @@
-TEMPLATE = app
-CONFIG += benchmark
-QT = core core-private testlib
-win32: DEFINES+= _CRT_SECURE_NO_WARNINGS
-
-TARGET = tst_bench_qfile
-SOURCES += main.cpp
diff --git a/tests/benchmarks/corelib/io/qfileinfo/qfileinfo.pro b/tests/benchmarks/corelib/io/qfileinfo/qfileinfo.pro
deleted file mode 100644
index 9c97bfc84a..0000000000
--- a/tests/benchmarks/corelib/io/qfileinfo/qfileinfo.pro
+++ /dev/null
@@ -1,7 +0,0 @@
-TEMPLATE = app
-CONFIG += benchmark
-QT -= gui
-QT += core-private testlib
-
-TARGET = tst_bench_qfileinfo
-SOURCES += main.cpp
diff --git a/tests/benchmarks/corelib/io/qiodevice/qiodevice.pro b/tests/benchmarks/corelib/io/qiodevice/qiodevice.pro
deleted file mode 100644
index febe6e87f9..0000000000
--- a/tests/benchmarks/corelib/io/qiodevice/qiodevice.pro
+++ /dev/null
@@ -1,6 +0,0 @@
-TEMPLATE = app
-CONFIG += benchmark
-QT = core testlib
-
-TARGET = tst_bench_qiodevice
-SOURCES += main.cpp
diff --git a/tests/benchmarks/corelib/io/qprocess/qprocess.pro b/tests/benchmarks/corelib/io/qprocess/qprocess.pro
deleted file mode 100644
index 839b4f7ecd..0000000000
--- a/tests/benchmarks/corelib/io/qprocess/qprocess.pro
+++ /dev/null
@@ -1,3 +0,0 @@
-TEMPLATE = subdirs
-test.depends = testProcessLoopback
-SUBDIRS = testProcessLoopback test
diff --git a/tests/benchmarks/corelib/io/qprocess/test/test.pro b/tests/benchmarks/corelib/io/qprocess/test/test.pro
deleted file mode 100644
index e7e8e01aef..0000000000
--- a/tests/benchmarks/corelib/io/qprocess/test/test.pro
+++ /dev/null
@@ -1,5 +0,0 @@
-CONFIG += benchmark
-QT = core core-private testlib
-
-TARGET = ../tst_bench_qprocess
-SOURCES += ../tst_bench_qprocess.cpp
diff --git a/tests/benchmarks/corelib/io/qprocess/testProcessLoopback/testProcessLoopback.pro b/tests/benchmarks/corelib/io/qprocess/testProcessLoopback/testProcessLoopback.pro
deleted file mode 100644
index a5fe146e80..0000000000
--- a/tests/benchmarks/corelib/io/qprocess/testProcessLoopback/testProcessLoopback.pro
+++ /dev/null
@@ -1,6 +0,0 @@
-CONFIG += benchmark
-CONFIG -= qt
-CONFIG += cmdline
-
-SOURCES = main.cpp
-DESTDIR = ./
diff --git a/tests/benchmarks/corelib/io/qtemporaryfile/qtemporaryfile.pro b/tests/benchmarks/corelib/io/qtemporaryfile/qtemporaryfile.pro
deleted file mode 100644
index b6064e1f91..0000000000
--- a/tests/benchmarks/corelib/io/qtemporaryfile/qtemporaryfile.pro
+++ /dev/null
@@ -1,6 +0,0 @@
-TEMPLATE = app
-CONFIG += benchmark
-QT = core testlib
-
-TARGET = tst_bench_qtemporaryfile
-SOURCES += main.cpp
diff --git a/tests/benchmarks/corelib/io/qtextstream/qtextstream.pro b/tests/benchmarks/corelib/io/qtextstream/qtextstream.pro
deleted file mode 100644
index fb45d05bc9..0000000000
--- a/tests/benchmarks/corelib/io/qtextstream/qtextstream.pro
+++ /dev/null
@@ -1,6 +0,0 @@
-TEMPLATE = app
-CONFIG += benchmark
-QT = core testlib
-
-TARGET = tst_bench_qtextstream
-SOURCES += main.cpp
diff --git a/tests/benchmarks/corelib/io/qurl/qurl.pro b/tests/benchmarks/corelib/io/qurl/qurl.pro
deleted file mode 100644
index 0e10e32a22..0000000000
--- a/tests/benchmarks/corelib/io/qurl/qurl.pro
+++ /dev/null
@@ -1,7 +0,0 @@
-TEMPLATE = app
-CONFIG += benchmark
-QT = core testlib
-win32: DEFINES+= _CRT_SECURE_NO_WARNINGS
-
-TARGET = tst_qurl
-SOURCES += main.cpp