Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / v8 / tools / testrunner / local / utils.py
index 707fa24..7bc21b1 100644 (file)
@@ -36,9 +36,7 @@ import urllib2
 
 
 def GetSuitePaths(test_root):
-  def IsSuite(path):
-    return isdir(path) and exists(join(path, 'testcfg.py'))
-  return [ f for f in os.listdir(test_root) if IsSuite(join(test_root, f)) ]
+  return [ f for f in os.listdir(test_root) if isdir(join(test_root, f)) ]
 
 
 # Reads a file into an array of strings