Showing with 2 additions and 2 deletions.
  1. +2 −2 test/runnable/test13117.d
4 changes: 2 additions & 2 deletions test/runnable/test13117.d
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ int main()
auto size = thisExePath.getSize();
writeln(size);
version (D_LP64)
enum limit = 1195096;
enum limit = 1328520;
else
enum limit = 1042973;
enum limit = 1253540;
return size > limit * 11 / 10;
}