mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-14 01:46:41 +00:00

@arichardson pointed out in post-commit review for https://reviews.llvm.org/D95583 (b714f73defc8e075) that `-verify` has an optional argument that works a lot like `FileCheck`'s `-check-prefix`. Use it to simplify the test for `-fno-implicit-modules-use-lock`!
24 lines
1.1 KiB
Matlab
24 lines
1.1 KiB
Matlab
// Confirm -fimplicit-modules-use-lock and -fno-implicit-modules-use-lock control
|
|
// whether building a module triggers -Rmodule-lock, indirectly checking whether
|
|
// a lock manager is being used.
|
|
//
|
|
// RUN: rm -rf %t.cache
|
|
// RUN: %clang_cc1 -fmodules -fimplicit-module-maps \
|
|
// RUN: -fimplicit-modules-use-lock -Rmodule-lock -Rmodule-build \
|
|
// RUN: -fmodules-cache-path=%t.cache -I%S/Inputs/system-out-of-date \
|
|
// RUN: -fsyntax-only %s -Wnon-modular-include-in-framework-module \
|
|
// RUN: -Werror=non-modular-include-in-framework-module \
|
|
// RUN: -verify=locks,build
|
|
//
|
|
// RUN: rm -rf %t.cache
|
|
// RUN: %clang_cc1 -fmodules -fimplicit-module-maps \
|
|
// RUN: -fno-implicit-modules-use-lock -Rmodule-lock -Rmodule-build \
|
|
// RUN: -fmodules-cache-path=%t.cache -I%S/Inputs/system-out-of-date \
|
|
// RUN: -fsyntax-only %s -Wnon-modular-include-in-framework-module \
|
|
// RUN: -Werror=non-modular-include-in-framework-module \
|
|
// RUN: -verify=build
|
|
|
|
@import X; // locks-remark-re {{locking '{{.*}}.pcm' to build module 'X'}} \
|
|
// build-remark {{building module 'X'}} \
|
|
// build-remark {{finished building module 'X'}}
|