summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/corelib/thread
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/thread
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/thread')
-rw-r--r--tests/benchmarks/corelib/thread/qmutex/qmutex.pro6
-rw-r--r--tests/benchmarks/corelib/thread/qreadwritelock/qreadwritelock.pro8
-rw-r--r--tests/benchmarks/corelib/thread/qthreadpool/qthreadpool.pro6
-rw-r--r--tests/benchmarks/corelib/thread/qthreadstorage/qthreadstorage.pro6
-rw-r--r--tests/benchmarks/corelib/thread/qwaitcondition/qwaitcondition.pro6
-rw-r--r--tests/benchmarks/corelib/thread/thread.pro7
6 files changed, 0 insertions, 39 deletions
diff --git a/tests/benchmarks/corelib/thread/qmutex/qmutex.pro b/tests/benchmarks/corelib/thread/qmutex/qmutex.pro
deleted file mode 100644
index a0b2ddeaa9..0000000000
--- a/tests/benchmarks/corelib/thread/qmutex/qmutex.pro
+++ /dev/null
@@ -1,6 +0,0 @@
-TEMPLATE = app
-CONFIG += benchmark
-QT = core testlib
-
-TARGET = tst_bench_qmutex
-SOURCES += tst_qmutex.cpp
diff --git a/tests/benchmarks/corelib/thread/qreadwritelock/qreadwritelock.pro b/tests/benchmarks/corelib/thread/qreadwritelock/qreadwritelock.pro
deleted file mode 100644
index 7c36067cb7..0000000000
--- a/tests/benchmarks/corelib/thread/qreadwritelock/qreadwritelock.pro
+++ /dev/null
@@ -1,8 +0,0 @@
-TEMPLATE = app
-CONFIG += benchmark
-CONFIG += c++14 # for std::shared_timed_mutex
-CONFIG += c++1z # for std::shared_mutex
-QT = core-private testlib
-
-TARGET = tst_bench_qreadwritelock
-SOURCES += tst_qreadwritelock.cpp
diff --git a/tests/benchmarks/corelib/thread/qthreadpool/qthreadpool.pro b/tests/benchmarks/corelib/thread/qthreadpool/qthreadpool.pro
deleted file mode 100644
index 303b3cef69..0000000000
--- a/tests/benchmarks/corelib/thread/qthreadpool/qthreadpool.pro
+++ /dev/null
@@ -1,6 +0,0 @@
-TEMPLATE = app
-CONFIG += benchmark
-QT = core testlib
-
-TARGET = tst_bench_qthreadpool
-SOURCES += tst_qthreadpool.cpp
diff --git a/tests/benchmarks/corelib/thread/qthreadstorage/qthreadstorage.pro b/tests/benchmarks/corelib/thread/qthreadstorage/qthreadstorage.pro
deleted file mode 100644
index 3f62c4eb3c..0000000000
--- a/tests/benchmarks/corelib/thread/qthreadstorage/qthreadstorage.pro
+++ /dev/null
@@ -1,6 +0,0 @@
-TEMPLATE = app
-CONFIG += benchmark
-QT = core testlib
-
-TARGET = tst_bench_qthreadstorage
-SOURCES += tst_qthreadstorage.cpp
diff --git a/tests/benchmarks/corelib/thread/qwaitcondition/qwaitcondition.pro b/tests/benchmarks/corelib/thread/qwaitcondition/qwaitcondition.pro
deleted file mode 100644
index cc801bdc13..0000000000
--- a/tests/benchmarks/corelib/thread/qwaitcondition/qwaitcondition.pro
+++ /dev/null
@@ -1,6 +0,0 @@
-TEMPLATE = app
-CONFIG += benchmark
-QT = core testlib
-
-TARGET = tst_bench_qwaitcondition
-SOURCES += tst_qwaitcondition.cpp
diff --git a/tests/benchmarks/corelib/thread/thread.pro b/tests/benchmarks/corelib/thread/thread.pro
deleted file mode 100644
index 6b3009bd0c..0000000000
--- a/tests/benchmarks/corelib/thread/thread.pro
+++ /dev/null
@@ -1,7 +0,0 @@
-TEMPLATE = subdirs
-SUBDIRS = \
- qmutex \
- qreadwritelock \
- qthreadstorage \
- qthreadpool \
- qwaitcondition \