From ab0773040fea28636eebc5db4b0bd4a2edd7d279 Mon Sep 17 00:00:00 2001 From: "christian.plesner.hansen@gmail.com" Date: Fri, 21 Nov 2008 12:26:31 +0000 Subject: [PATCH] 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 --- test/message/testcfg.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/message/testcfg.py b/test/message/testcfg.py index 381ad5c..f259d37 100644 --- a/test/message/testcfg.py +++ b/test/message/testcfg.py @@ -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)] -- 2.7.4