diff options
-rw-r--r-- | clang/test/Modules/empty.modulemap | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Modules/empty.modulemap b/clang/test/Modules/empty.modulemap index d451ad21547..0d1718409d5 100644 --- a/clang/test/Modules/empty.modulemap +++ b/clang/test/Modules/empty.modulemap @@ -13,9 +13,9 @@ // The module file should be identical each time we produce it. // RUN: diff %t/base.pcm %t/check.pcm // -// We expect an empty module to be less than 30KB. +// We expect an empty module to be less than 30KB (and at least 10K, for now). // REQUIRES: shell // RUN: wc -c %t/base.pcm | FileCheck --check-prefix=CHECK-SIZE %s -// CHECK-SIZE: {{^[12][0-9]{4} }} +// CHECK-SIZE: {{(^|[^0-9])[12][0-9][0-9][0-9][0-9]($|[^0-9])}} module empty { header "Inputs/empty.h" export * } |