aboutsummaryrefslogtreecommitdiff
path: root/tests/meson.build
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2021-03-12 10:22:38 +0100
committerThomas Huth <thuth@redhat.com>2021-03-12 15:46:30 +0100
commit3b472e71d50fe33f2e0dfdd447dde5910ddf0761 (patch)
tree1cbbd713dcd7538794dbc569bd3f8c8309ad8ec0 /tests/meson.build
parentda668aa15b99150a8595c491aee00d5d2426aaf9 (diff)
downloadqemu-3b472e71d50fe33f2e0dfdd447dde5910ddf0761.zip
qemu-3b472e71d50fe33f2e0dfdd447dde5910ddf0761.tar.gz
qemu-3b472e71d50fe33f2e0dfdd447dde5910ddf0761.tar.bz2
tests: Move benchmarks into a separate folder
Make it clear that these files are related to benchmarks by moving them into a new folder called "bench". Message-Id: <20210312092238.79509-1-thuth@redhat.com> Acked-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/meson.build')
-rw-r--r--tests/meson.build34
1 files changed, 1 insertions, 33 deletions
diff --git a/tests/meson.build b/tests/meson.build
index af43fd1..55a7b08 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -1,18 +1,6 @@
py3 = import('python').find_installation()
-qht_bench = executable('qht-bench',
- sources: 'qht-bench.c',
- dependencies: [qemuutil])
-
-executable('atomic_add-bench',
- sources: files('atomic_add-bench.c'),
- dependencies: [qemuutil],
- build_by_default: false)
-
-executable('atomic64-bench',
- sources: files('atomic64-bench.c'),
- dependencies: [qemuutil],
- build_by_default: false)
+subdir('bench')
test_qapi_outputs = [
'qapi-builtin-types.c',
@@ -73,26 +61,6 @@ test_deps = {
'test-qht-par': qht_bench,
}
-benchs = {}
-
-if have_block
- benchs += {
- 'benchmark-crypto-hash': [crypto],
- 'benchmark-crypto-hmac': [crypto],
- 'benchmark-crypto-cipher': [crypto],
- }
-endif
-
-foreach bench_name, deps: benchs
- exe = executable(bench_name, bench_name + '.c',
- dependencies: [qemuutil] + deps)
- benchmark(bench_name, exe,
- args: ['--tap', '-k'],
- protocol: 'tap',
- timeout: 0,
- suite: ['speed'])
-endforeach
-
if have_tools and 'CONFIG_VHOST_USER' in config_host and 'CONFIG_LINUX' in config_host
executable('vhost-user-bridge',
sources: files('vhost-user-bridge.c'),