summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/oe-selftest2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-selftest b/scripts/oe-selftest
index bd903f9e68..c32c419e19 100755
--- a/scripts/oe-selftest
+++ b/scripts/oe-selftest
@@ -453,7 +453,7 @@ def main():
453 if isinstance(t, type(oeSelfTest)) and issubclass(t, oeSelfTest) and t!=oeSelfTest: 453 if isinstance(t, type(oeSelfTest)) and issubclass(t, oeSelfTest) and t!=oeSelfTest:
454 print " --", v 454 print " --", v
455 for method in dir(t): 455 for method in dir(t):
456 if method.startswith("test_"): 456 if method.startswith("test_") and callable(vars(t)[method]):
457 print " -- --", method 457 print " -- --", method
458 458
459 except (AttributeError, ImportError) as e: 459 except (AttributeError, ImportError) as e: