Beispiel #1
0
def getDirsAndFiles(root):
  files = ["MANIFEST"]
  dirs, autotests, reftests, othertests, supportfiles = parseManifest.parseManifestFile(root + "/MANIFEST")
  files.extend(autotests)
  for r in reftests:
    files.extend([r[1], r[2]])
  files.extend(othertests)
  files.extend(supportfiles)
  return set(dirs), set(files)
Beispiel #2
0
def getDirsAndFiles(root):
    files = ["MANIFEST"]
    dirs, autotests, reftests, othertests, supportfiles = parseManifest.parseManifestFile(
        root + "/MANIFEST")
    files.extend(autotests)
    for r in reftests:
        files.extend([r[1], r[2]])
    files.extend(othertests)
    files.extend(supportfiles)
    return set(dirs), set(files)
def parseManifestFile(dest, dir):
    subdirs, mochitests, _, __, supportfiles = parseManifest.parseManifestFile(
        "hg-%s/%s/MANIFEST" % (dest, dir))
    return subdirs, mochitests, supportfiles
def parseManifestFile(dest, dir):
    subdirs, mochitests, _, __, supportfiles = parseManifest.parseManifestFile("hg-%s/%s/MANIFEST" % (dest, dir))
    return subdirs, mochitests, supportfiles
Beispiel #5
0
 def parseManifestFile(iden, path):
     pathstr = "hg-%s/%s/MANIFEST" % (iden, path)
     subdirs, mochitests, reftests, _, supportfiles = parseManifest.parseManifestFile(
         pathstr)
     return subdirs, mochitests, reftests, supportfiles
Beispiel #6
0
 def parseManifestFile(iden, path):
     pathstr = "hg-%s/%s/MANIFEST" % (iden, path)
     subdirs, mochitests, reftests, _, supportfiles = parseManifest.parseManifestFile(pathstr)
     return subdirs, mochitests, reftests, supportfiles