etc/services - sync with NetBSD-8
[minix.git] / external / bsd / llvm / dist / clang / test / Lexer / cross-windows-on-linux.cpp
blob810e1d6ea966fad7e2742f1ed85106851241262c
1 // RUN: not %clang_cc1 -fsyntax-only -triple i686-win32 %s 2>&1 | FileCheck %s
3 #include "Inputs\success.h"
5 // CHECK: error: 'Inputs\success.h' file not found
6 // CHECK: #include "Inputs\success.h"
7 // CHECK: ^
9 // expected to fail on windows as the inclusion would succeed and the
10 // compilation will fail due to the '#error success'.
11 // XFAIL: win32
13 // This test may or may not fail since 'Inputs\success.h' is passed
14 // to Win32 APIs on Windows.
15 // REQUIRES: disabled