From d9ac0fa6d7becf3a9f671a794cb2135d059c9037 Mon Sep 17 00:00:00 2001
From: Florian Schmaus <flow@cs.fau.de>
Date: Mon, 16 Nov 2020 11:50:58 +0100
Subject: [PATCH] [test] Use test_name as test name, not the description

This allows to run indiviual tests using the meson runner, e.g.

meson --repeat 100 SimpleActorTest
---
 tests/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/meson.build b/tests/meson.build
index 60b881dd..b45b091d 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -58,7 +58,7 @@ foreach source, test_dict : tests
 						link_with: [emper, emper_c],
 					   )
 
-  test(test_dict.get('description', ''),
+  test(test_name,
 	   test_exe,
 	   is_parallel: test_dict.get('is_parallel', true),
 	   suite: test_dict.get('test_suite', 'all'),
-- 
GitLab