t/stest: remove old test
authorJens Axboe <axboe@fb.com>
Tue, 3 Jan 2017 01:21:14 +0000 (18:21 -0700)
committerJens Axboe <axboe@fb.com>
Tue, 3 Jan 2017 01:21:14 +0000 (18:21 -0700)
Signed-off-by: Jens Axboe <axboe@fb.com>
t/stest.c

index 0e0d8b0b4785998546f437fb336a2038ec34ce41..04df60dc42fa77f6df9de923c452a4f86a58a81c 100644 (file)
--- a/t/stest.c
+++ b/t/stest.c
@@ -59,15 +59,6 @@ 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);
@@ -76,9 +67,6 @@ int main(int argc, char *argv[])
 
        do_rand_allocs();
 
-       /* smalloc bug, commit 271067a6 */
-       do_specific_alloc(671386584);
-
        scleanup();
        return 0;
 }