Fix clang/test/Modules/empty.modulemap by increasing limit.
authorSander de Smalen <sander.desmalen@arm.com>
Mon, 15 Jun 2020 08:47:49 +0000 (09:47 +0100)
committerSander de Smalen <sander.desmalen@arm.com>
Mon, 15 Jun 2020 11:27:25 +0000 (12:27 +0100)
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.

clang/test/Modules/empty.modulemap

index aa9eba6..3225d88 100644 (file)
@@ -13,8 +13,8 @@
 // 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 (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
-// 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 * }