X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=t%2Fstest.c;h=0e0d8b0b4785998546f437fb336a2038ec34ce41;hb=bb7816439c44f6f98debd8afd167da14d612574c;hp=efb256efa92d106fe1902de36a5bcdfcf4e1adf7;hpb=9077ee4ae85d3a4519f99372b884ec7d9fd3e781;p=fio.git diff --git a/t/stest.c b/t/stest.c index efb256ef..0e0d8b0b 100644 --- a/t/stest.c +++ b/t/stest.c @@ -4,6 +4,7 @@ #include "../smalloc.h" #include "../flist.h" +#include "../arch/arch.h" #include "debug.h" #define MAGIC1 0xa9b1c8d2 @@ -30,7 +31,7 @@ static int do_rand_allocs(void) srand(MAGIC1); #endif nr = total = 0; - while (total < 128*1024*1024UL) { + while (total < 120*1024*1024UL) { size = 8 * sizeof(struct elem) + (int) (999.0 * (rand() / (RAND_MAX + 1.0))); e = smalloc(size); if (!e) { @@ -69,6 +70,7 @@ static int do_specific_alloc(unsigned long size) int main(int argc, char *argv[]) { + arch_init(argv); sinit(); debug_init();