t/stest: shrink test size from 128MB
[fio.git] / t / stest.c
index 0da8f2cf8670aad2cef31de9b0abedd5e86f1f93..fb51989521ec951c308a578c205c77597d145d59 100644 (file)
--- a/t/stest.c
+++ b/t/stest.c
@@ -4,10 +4,7 @@
 
 #include "../smalloc.h"
 #include "../flist.h"
-
-FILE *f_err;
-struct timeval *fio_tv = NULL;
-unsigned int fio_debug = 0;
+#include "debug.h"
 
 #define MAGIC1 0xa9b1c8d2
 #define MAGIC2 0xf0a1e9b3
@@ -33,7 +30,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) {
@@ -72,9 +69,8 @@ static int do_specific_alloc(unsigned long size)
 
 int main(int argc, char *argv[])
 {
-       f_err = stderr;
-
        sinit();
+       debug_init();
 
        do_rand_allocs();
 
@@ -84,7 +80,3 @@ int main(int argc, char *argv[])
        scleanup();
        return 0;
 }
-
-void __dprint(int type, const char *str, ...)
-{
-}