Most of these tests do not actually have a shell requirement. The shell requirement ended up in the test either from cargo culting (from what I can tell) or because the test authors actually meant to mark Windows as unsupported. This prevents enablement of lit's internal shell within clang. Towards #102699. Reviewers: rnk, efriedma-quic, Sirraide, petrhosek, ilovepi Reviewed By: ilovepi Pull Request: https://github.com/llvm/llvm-project/pull/156905
8 lines
303 B
Mathematica
8 lines
303 B
Mathematica
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -F %S/Inputs %s -verify -DA
|
|
// FIXME: PR20299 - getCanonicalName() is not implemented on Windows.
|
|
// UNSUPPORTED: system-windows
|
|
|
|
@import MOdule; // expected-error{{module 'MOdule' not found}}
|
|
@import Module;
|