t/zbd/test-zbd-support: Set fio aux path and forbid file creation
[fio.git] / t / stest.c
index fb51989521ec951c308a578c205c77597d145d59..b95968f14dd073a3f52b4f8a0f133a248ead130c 100644 (file)
--- 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
@@ -17,7 +18,7 @@ struct elem {
        unsigned int magic2;
 };
 
-FLIST_HEAD(list);
+static FLIST_HEAD(list);
 
 static int do_rand_allocs(void)
 {
@@ -58,25 +59,14 @@ static int do_rand_allocs(void)
        return 0;
 }
 
-static int do_specific_alloc(unsigned long size)
-{
-       void *ptr;
-
-       ptr = smalloc(size);
-       sfree(ptr);
-       return 0;
-}
-
 int main(int argc, char *argv[])
 {
+       arch_init(argv);
        sinit();
        debug_init();
 
        do_rand_allocs();
 
-       /* smalloc bug, commit 271067a6 */
-       do_specific_alloc(671386584);
-
        scleanup();
        return 0;
 }