From e8722856f925c1e69fcd614b0ec7b252d2184c49 Mon Sep 17 00:00:00 2001 From: "kjellander@webrtc.org" Date: Wed, 13 Nov 2013 15:51:49 +0000 Subject: [PATCH] Disable all vie_auto_tests on Linux for now (take 2) Turns out OS_LINUX is not working in this context (see http://review.webrtc.org/3539005/) WEBRTC_LINUX is the right define to use. TBR=mflodman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/3819004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5119 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/video_engine/test/auto_test/source/vie_autotest_main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/video_engine/test/auto_test/source/vie_autotest_main.cc b/webrtc/video_engine/test/auto_test/source/vie_autotest_main.cc index 23ca82b5c3..4502494115 100644 --- a/webrtc/video_engine/test/auto_test/source/vie_autotest_main.cc +++ b/webrtc/video_engine/test/auto_test/source/vie_autotest_main.cc @@ -49,7 +49,7 @@ int ViEAutoTestMain::RunTests(int argc, char** argv) { int result; if (FLAGS_automated) { // Run in automated mode. -#if defined(OS_LINUX) +#if defined(WEBRTC_LINUX) // All window-related tests are disabled on Linux for now. // See https://code.google.com/p/chromium/issues/detail?id=318760 return 0;