From 4c9c2a88929221a1f105f85b29f8c0670c123df0 Mon Sep 17 00:00:00 2001 From: Thomas Wilshaw Date: Sat, 24 Apr 2021 11:28:03 +0100 Subject: [PATCH] Update standard test name to improve usability in Visual Studio. --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 926af5116..e96591e7a 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -62,7 +62,7 @@ function(olive_add_test GROUP NAME SOURCE) PRIVATE ${OLIVE_COMPILE_OPTIONS} ) - add_test(${NAME} ${NAME}) + add_test("OliveLib.Tests.${NAME}" ${NAME}) endfunction() add_subdirectory(compositing)