Bug 584611 Improve test detection for mochitest r=jmaher a=NPOTB

This commit is contained in:
Clint Talbert 2010-09-30 16:51:07 -07:00
Родитель db0824c44e
Коммит 67a3b8660c
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -458,7 +458,12 @@ function isTest(filename, pattern)
if (pattern)
return pattern.test(filename);
return filename.indexOf("test_") > -1 &&
// File name is a URL style path to a test file, make sure that we check for
// tests that start with test_.
testPattern = /^test_/;
pathPieces = filename.split('/');
return testPattern.test(pathPieces[pathPieces.length - 1]) &&
filename.indexOf(".js") == -1 &&
filename.indexOf(".css") == -1 &&
!/\^headers\^$/.test(filename);