Applied patch from Alexander Botero-Lowry to fix tests on fresh

checkout with git-svn.


git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@818 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 64f0dca2
......@@ -27,7 +27,7 @@
import test
import os
from os.path import join, dirname, exists, basename
from os.path import join, dirname, exists, basename, isdir
import re
FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)")
......@@ -93,7 +93,10 @@ class MessageTestConfiguration(test.TestConfiguration):
super(MessageTestConfiguration, self).__init__(context, root)
def Ls(self, path):
return [f[:-3] for f in os.listdir(path) if f.endswith('.js')]
if isdir(path):
return [f[:-3] for f in os.listdir(path) if f.endswith('.js')]
else:
return []
def ListTests(self, current_path, path, mode):
mjsunit = [current_path + [t] for t in self.Ls(self.root)]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment