Clang Project

clang_source_code/test/Driver/windows-wildcard-expansion.c
1// Clang does wildcard expansion on Windows. On other OSs, it's done by the shell.
2// REQUIRES: system-windows
3
4// RUN: %clang -c -### %S/Inputs/wildcard*.c 2>&1 | FileCheck %s
5// RUN: %clang -c -### %S/Inputs/wildcard?.c 2>&1 | FileCheck %s
6// CHECK: wildcard1.c
7// CHECK: wildcard2.c
8