|
From: <sv...@va...> - 2005-09-26 00:00:33
|
Author: sewardj
Date: 2005-09-26 01:00:29 +0100 (Mon, 26 Sep 2005)
New Revision: 4775
Log:
Drop the amount of work in this by a factor of 20 so it runs in
reasonable time.
Modified:
branches/ASPACEM/none/tests/map_unmap.c
Modified: branches/ASPACEM/none/tests/map_unmap.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- branches/ASPACEM/none/tests/map_unmap.c 2005-09-25 21:40:22 UTC (rev =
4774)
+++ branches/ASPACEM/none/tests/map_unmap.c 2005-09-26 00:00:29 UTC (rev =
4775)
@@ -56,7 +56,7 @@
munmap(expect1, LEN);
munmap(expect2, LEN);
=20
- for(i =3D 0; i < 100; i++) {
+ for(i =3D 0; i < 5; i++) {
void *m1, *m2;
=20
m1 =3D domap();
|