1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-26 08:41:47 -07:00

Correct pass_count to fail_count in testrun.bat.

locbwcss shouldn't fail if there are non-contiguous allocations. Those are perfectly legitimate (MVFF uses CBS, which needs to allocate nodes in its splay tree).

Copied from Perforce
 Change: 183047
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2013-07-15 17:09:39 +01:00
parent e5b2ee54cd
commit dfe11f4734
2 changed files with 1 additions and 3 deletions

View file

@ -178,8 +178,6 @@ static void testInArena(mps_arena_t arena)
if (lostat->max > histat->min) {
error("\nFOUND PROBLEM - low range overlaps high\n");
} else if (lostat->ncCount != 0 || histat->ncCount != 0) {
error("\nFOUND POSSIBLE PROBLEM - some non-contiguous allocations\n");
} else {
printf("\nNo problems detected.\n");
}

View file

@ -9,7 +9,7 @@ set VARIETY=%1
shift
set TEST_COUNT=0
set PASS_COUNT=0
set FAIL_COUNT=0
set SEPARATOR=----------------------------------------
set LOGDIR=%TMP%\mps-%VARIETY%-log
echo Logging test output to %LOGDIR%