From: Jens Axboe Date: Tue, 3 Jan 2017 01:21:14 +0000 (-0700) Subject: t/stest: remove old test X-Git-Tag: fio-2.17~35 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=747311bd9cb82c02bfa4622054b5142a71a6c8ec;p=fio.git t/stest: remove old test Signed-off-by: Jens Axboe --- diff --git a/t/stest.c b/t/stest.c index 0e0d8b0b..04df60dc 100644 --- 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; }