Lines Matching refs:test
12 DIR="xinclude-test-suite"
14 LOG="check-xinclude-test-suite.log"
55 def runTest(test, basedir):
64 uri = test.prop('href')
65 id = test.prop('id')
66 type = test.prop('type')
88 output = test.xpathEval('string(output)')
151 print "Test %s: failed optional test" % (id)
157 content = string.strip(test.content)
166 log.write("diff from test %s:\n" %(id))
180 test = case.children
181 while test != None:
182 if test.name == 'testcase':
183 runTest(test, base)
184 if test.name == 'testcases':
185 runTestCases(test)
186 test = test.next