[Lldb-commits] [lldb] r360624 - Disable TestEnvironment on Windows

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Mon May 13 15:02:09 PDT 2019


Author: jdevlieghere
Date: Mon May 13 15:02:09 2019
New Revision: 360624

URL: http://llvm.org/viewvc/llvm-project?rev=360624&view=rev
Log:
Disable TestEnvironment on Windows

The input source file seems to be triggering an error in the Visual
Studio headers.

> xstddef:338:2: error: ''auto' return without trailing return type;
> deduced return types are a C++14 extension

I tried converting the test to use the %build stuff Zachary added, but
that seems to be missing some Darwin support. Disabling the test on
Windows in the meantime.

Modified:
    lldb/trunk/lit/Process/TestEnvironment.test

Modified: lldb/trunk/lit/Process/TestEnvironment.test
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lit/Process/TestEnvironment.test?rev=360624&r1=360623&r2=360624&view=diff
==============================================================================
--- lldb/trunk/lit/Process/TestEnvironment.test (original)
+++ lldb/trunk/lit/Process/TestEnvironment.test Mon May 13 15:02:09 2019
@@ -1,3 +1,5 @@
+UNSUPPORTED: system-windows
+
 The double quotes around "BAR" ensure we don't match the command.
 
 RUN: %clangxx -std=c++11 %p/Inputs/env.cpp -o %t




More information about the lldb-commits mailing list