compiler_render_tests: Turn on the compiler_render_tests build
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 11ccb50..2b156ea 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -69,6 +69,12 @@
    COMPILE_DEFINITIONS "GTEST_LINKED_AS_SHARED_LIBRARY=1")
 target_link_libraries(xgl_render_tests XGL gtest gtest_main ${TEST_LIBRARIES})
 
+add_executable(xgl_compiler_render_tests compiler_render_tests.cpp ${COMMON_CPP} displayengine.cpp)
+set_target_properties(xgl_compiler_render_tests
+   PROPERTIES
+   COMPILE_DEFINITIONS "GTEST_LINKED_AS_SHARED_LIBRARY=1")
+target_link_libraries(xgl_compiler_render_tests XGL gtest gtest_main ${TEST_LIBRARIES})
+
 add_executable(xgl_base_render_test base_render_test.cpp ${COMMON_CPP} displayengine.cpp)
 set_target_properties(xgl_base_render_test
    PROPERTIES
diff --git a/tests/compiler_render_tests.cpp b/tests/compiler_render_tests.cpp
index 7eab599..ce75ad8 100644
--- a/tests/compiler_render_tests.cpp
+++ b/tests/compiler_render_tests.cpp
@@ -181,7 +181,7 @@
 
         this->app_info.sType = XGL_STRUCTURE_TYPE_APPLICATION_INFO;
         this->app_info.pNext = NULL;
-        this->app_info.pAppName = (const XGL_CHAR *) "render_tests";
+        this->app_info.pAppName = (const XGL_CHAR *) "compiler render_tests";
         this->app_info.appVersion = 1;
         this->app_info.pEngineName = (const XGL_CHAR *) "unittest";
         this->app_info.engineVersion = 1;