Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Frontend/absolute-paths-windows.test @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
rev | line source |
---|---|
150 | 1 // REQUIRES: system-windows |
2 // RUN: rm -rf %t.dir | |
3 // RUN: mkdir -p %t.dir\real | |
4 // RUN: cmd /c mklink /j %t.dir\junc %t.dir\real | |
5 // RUN: echo "wrong code" > %t.dir\real\foo.cpp | |
6 // RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-absolute-paths %t.dir\junc\foo.cpp 2>&1 | FileCheck %s | |
7 | |
8 // CHECK-NOT: .dir\real\foo.cpp | |
9 // CHECK: .dir\junc\foo.cpp |