cc98c9fd5c
Unit test code is in test-xbzrle.c, and benchmark code is in xbzrle-bench.c for performance benchmarking. we have modified xbzrle-bench.c to address CI problem. Signed-off-by: ling xu <ling1.xu@intel.com> Co-authored-by: Zhou Zhao <zhou.zhao@intel.com> Co-authored-by: Jun Jin <jun.i.jin@intel.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
42 lines
1.1 KiB
Meson
42 lines
1.1 KiB
Meson
|
|
qht_bench = executable('qht-bench',
|
|
sources: 'qht-bench.c',
|
|
dependencies: [qemuutil])
|
|
|
|
if have_system
|
|
xbzrle_bench = executable('xbzrle-bench',
|
|
sources: 'xbzrle-bench.c',
|
|
dependencies: [qemuutil,migration])
|
|
endif
|
|
|
|
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)
|
|
|
|
benchs = {}
|
|
|
|
if have_block
|
|
benchs += {
|
|
'benchmark-crypto-hash': [crypto],
|
|
'benchmark-crypto-hmac': [crypto],
|
|
'benchmark-crypto-cipher': [crypto],
|
|
'benchmark-crypto-akcipher': [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
|