From 3f7f63aa1be9d32d7b558fd903aa96e13f983619 Mon Sep 17 00:00:00 2001 From: Jonathan Woollett-Light Date: Tue, 12 Dec 2023 16:32:14 +0000 Subject: [PATCH] test: Update perf pipeline emojis The emojis where null characters due to not being supported in all fonts. This commit updates them to fix this. Signed-off-by: Jonathan Woollett-Light --- .buildkite/pipeline_perf.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.buildkite/pipeline_perf.py b/.buildkite/pipeline_perf.py index a21345d223c..b6ec4e6723b 100755 --- a/.buildkite/pipeline_perf.py +++ b/.buildkite/pipeline_perf.py @@ -14,23 +14,23 @@ # has to be the node associated with the NUMA node from which we picked CPUs. perf_test = { "virtio-block": { - "label": "🖴 Virtio Block Performance", + "label": "💿 Virtio Block Performance", "test_path": "integration_tests/performance/test_block_ab.py::test_block_performance", "devtool_opts": "-c 1-10 -m 0", }, "vhost-user-block": { - "label": "🖴 vhost-user Block Performance", + "label": "💿 vhost-user Block Performance", "test_path": "integration_tests/performance/test_block_ab.py::test_block_vhost_user_performance", "devtool_opts": "-c 1-10 -m 0", "ab_opts": "--noise-threshold 0.1", }, "network-latency": { - "label": "🖧 Network Latency", + "label": "📠 Network Latency", "test_path": "integration_tests/performance/test_network_ab.py::test_network_latency", "devtool_opts": "-c 1-10 -m 0", }, "network-throughput": { - "label": "🖧 Network TCP Throughput", + "label": "📠 Network TCP Throughput", "test_path": "integration_tests/performance/test_network_ab.py::test_network_tcp_throughput", "devtool_opts": "-c 1-10 -m 0", },