Mercurial > hg > CbC > CbC_llvm
view clang/test/Frontend/absolute-paths-symlinks.c @ 222:81f6424ef0e3 llvm-original
LLVM original branch
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 18 Jul 2021 22:10:01 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: rm -rf %t // RUN: mkdir %t // RUN: cd %t // RUN: cp %s test.c // RUN: ln -sf test.c link.c // RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-absolute-paths link.c 2>&1 | FileCheck %s // Verify that -fdiagnostics-absolute-paths resolve symbolic links in // diagnostics messages. // CHECK: test.c // CHECK-SAME: error: unknown type name This do not compile // REQUIRES: shell // Don't make symlinks on Windows. // UNSUPPORTED: system-windows