From 9f8b9e93a93e8fd17bea6498294063ff5d8745d2 Mon Sep 17 00:00:00 2001 From: Sasha Goldshtein Date: Thu, 30 Mar 2017 05:08:09 -0400 Subject: [PATCH] funcslower: Add to smoke tests --- tests/python/test_tools_smoke.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/python/test_tools_smoke.py b/tests/python/test_tools_smoke.py index 258812d5b08a..d99ed8bcfdfe 100755 --- a/tests/python/test_tools_smoke.py +++ b/tests/python/test_tools_smoke.py @@ -164,6 +164,10 @@ def test_funccount(self): def test_funclatency(self): self.run_with_int("funclatency.py __kmalloc -i 1") + @skipUnless(kernel_version_ge(4,4), "requires kernel >= 4.4") + def test_funcslower(self): + self.run_with_int("funcslower.py __kmalloc") + @skipUnless(kernel_version_ge(4,4), "requires kernel >= 4.4") def test_gethostlatency(self): self.run_with_int("gethostlatency.py")