Changeset 66393 in vbox
- Timestamp:
- Apr 3, 2017 6:09:51 AM (8 years ago)
- Location:
- trunk/src/VBox/HostServices/SharedOpenGL
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/Makefile.kmk
r66170 r66393 408 408 ifneq ($(KBUILD_TARGET),darwin) 409 409 VBoxOGLTest_SOURCES = OpenGLTest/OpenGLTest.cpp 410 ifneq ($(KBUILD_TARGET),win)411 VBoxOGLTest_DEFS += $(if $(VBOX_WITH_GCC_SANITIZER),VBOX_WITH_GCC_SANITIZER,)412 endif413 410 endif 414 411 VBoxOGLTest_SOURCES.darwin = OpenGLTest/OpenGLTestDarwin.cpp -
trunk/src/VBox/HostServices/SharedOpenGL/OpenGLTest/OpenGLTest.cpp
r66170 r66393 45 45 uint64_t StartTS; 46 46 47 #ifdef VBOX_WITH_GCC_SANITIZER47 #ifdef __SANITIZE_ADDRESS__ 48 48 /* The OpenGL test tool contains a number of memory leaks which cause it to 49 49 * return failure when run with ASAN unless we disable the leak detector. */ … … 62 62 AssertRCReturn(rc, false); 63 63 64 #ifndef VBOX_WITH_GCC_SANITIZER64 #ifndef __SANITIZE_ADDRESS__ 65 65 rc = RTProcCreate(pszVBoxPath, papszArgs, RTENV_DEFAULT, 0, &Process); 66 66 #else
Note:
See TracChangeset
for help on using the changeset viewer.