
These tests aren't actually libc++-specific for the most part. They test the testsuite, so they aren't tied to any implementation. That means anybody using the testsuite should be able to run these tests successfully. The most notable changes are that - `test/libcxx/selftest/modules` moved to `test/libcxx/modules`, since the assumptions these tests check are libc++-specific - there is a new `lit.local.cfg` for `test/selftest` - `selftest/dsl/dsl.sh.py` was modified since the path to the monorepo root changed
19 lines
782 B
C++
19 lines
782 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// TODO: This test is currently written in a way that is specific to libc++, but it's really trying to test a property
|
|
// of the test framework, which isn't libc++ specific.
|
|
// REQUIRES: stdlib=libc++
|
|
|
|
// Make sure that the compile flags contain no module information.
|
|
|
|
// MODULE_DEPENDENCIES:
|
|
|
|
// RUN: echo "%{compile_flags}" | grep -v "std.pcm"
|
|
// RUN: echo "%{compile_flags}" | grep -v "std.compat.pcm"
|