forked from OSchip/llvm-project
Fix clang/test/Modules/empty.modulemap by increasing limit.
This fixes a buildbot failure on Builder llvm-clang-win-x-aarch64. The size of the module increased to just over 30kb due to new Decl TypeDefs being added to the module after D81459 that adds new ACLE types.
This commit is contained in:
parent
51e4aa87e0
commit
a06b2cb0f5
|
@ -13,8 +13,8 @@
|
||||||
// The module file should be identical each time we produce it.
|
// The module file should be identical each time we produce it.
|
||||||
// RUN: diff %t/base.pcm %t/check.pcm
|
// RUN: diff %t/base.pcm %t/check.pcm
|
||||||
//
|
//
|
||||||
// We expect an empty module to be less than 30KB (and at least 10K, for now).
|
// We expect an empty module to be less than 40KB (and at least 10K, for now).
|
||||||
// RUN: wc -c %t/base.pcm | FileCheck --check-prefix=CHECK-SIZE %s
|
// RUN: wc -c %t/base.pcm | FileCheck --check-prefix=CHECK-SIZE %s
|
||||||
// CHECK-SIZE: {{(^|[^0-9])[12][0-9][0-9][0-9][0-9]($|[^0-9])}}
|
// CHECK-SIZE: {{(^|[^0-9])[123][0-9][0-9][0-9][0-9]($|[^0-9])}}
|
||||||
|
|
||||||
module empty { header "Inputs/empty.h" export * }
|
module empty { header "Inputs/empty.h" export * }
|
||||||
|
|
Loading…
Reference in New Issue