From 8d61086856231047a4adc00b67760f84469c5e71 Mon Sep 17 00:00:00 2001 From: Wunkolo Date: Mon, 11 Mar 2024 16:18:43 -0700 Subject: [PATCH] Rename `dynapica` TU to `shader` These unit-tests in particular only actually test the shader-interpreter and not any of the JITs. --- CMakeLists.txt | 2 +- tests/{dynapica.cpp => shader.cpp} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/{dynapica.cpp => shader.cpp} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 629601ab..fe9a8584 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -534,7 +534,7 @@ if(ENABLE_TESTS) target_include_directories(nihstro-headers SYSTEM INTERFACE ./third_party/nihstro/include) add_executable(AlberTests - tests/dynapica.cpp + tests/shader.cpp ) target_link_libraries( AlberTests diff --git a/tests/dynapica.cpp b/tests/shader.cpp similarity index 100% rename from tests/dynapica.cpp rename to tests/shader.cpp