annotate clang/test/Frontend/absolute-paths-windows.test @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // REQUIRES: system-windows
anatofuz
parents:
diff changeset
2 // RUN: rm -rf %t.dir
anatofuz
parents:
diff changeset
3 // RUN: mkdir -p %t.dir\real
anatofuz
parents:
diff changeset
4 // RUN: cmd /c mklink /j %t.dir\junc %t.dir\real
anatofuz
parents:
diff changeset
5 // RUN: echo "wrong code" > %t.dir\real\foo.cpp
anatofuz
parents:
diff changeset
6 // RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-absolute-paths %t.dir\junc\foo.cpp 2>&1 | FileCheck %s
anatofuz
parents:
diff changeset
7
anatofuz
parents:
diff changeset
8 // CHECK-NOT: .dir\real\foo.cpp
anatofuz
parents:
diff changeset
9 // CHECK: .dir\junc\foo.cpp