File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
libcxxabi/test/vendor/llvm Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 66//
77// ===----------------------------------------------------------------------===//
88
9+ // REQUIRES: darwin
910// REQUIRES: stdlib=libc++ && !stdlib=apple-libc++
1011
1112// This file checks various properties of the installation of libc++abi when built under
12- // a vanilla upstream configuration.
13+ // a vanilla upstream configuration on Darwin platforms .
1314
1415// Make sure we install the libc++abi headers in the right location.
1516//
Original file line number Diff line number Diff line change 1+ // ===----------------------------------------------------------------------===//
2+ //
3+ // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4+ // See https://llvm.org/LICENSE.txt for license information.
5+ // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+ //
7+ // ===----------------------------------------------------------------------===//
8+
9+ // REQUIRES: linux
10+ // REQUIRES: stdlib=libc++ && !stdlib=apple-libc++
11+
12+ // This file checks various properties of the installation of libc++abi when built under
13+ // a vanilla upstream configuration on Linux platforms.
14+
15+ // Make sure we install the libc++abi headers in the right location.
16+ //
17+ // RUN: stat "%{include}/cxxabi.h"
18+
19+ // Make sure we install libc++abi.so.1.0 in the right location.
20+ //
21+ // RUN: stat "%{lib}/libc++abi.so.1.0"
22+
23+ // Make sure we install a symlink from libc++abi.so.1 to libc++abi.so.1.0.
24+ //
25+ // RUN: stat "%{lib}/libc++abi.so.1"
26+ // RUN: readlink "%{lib}/libc++abi.so.1" | grep "libc++abi.so.1.0"
27+
28+ // Make sure we install a symlink from libc++abi.so to libc++abi.so.1.
29+ //
30+ // RUN: stat "%{lib}/libc++abi.so"
31+ // RUN: readlink "%{lib}/libc++abi.so" | grep "libc++abi.so.1"
You can’t perform that action at this time.
0 commit comments