Searched refs:testlist (Results 1 - 23 of 23) sorted by relevance

/external/linux-kselftest/tools/testing/selftests/tc-testing/
H A Dtdc_helper.py31 def list_test_cases(testlist):
33 for curcase in testlist:
37 def list_categories(testlist):
39 categories = set(map(lambda x: x['category'], testlist))
68 def show_test_case_by_id(testlist, caseID):
70 if not any(d.get('id', None) == caseID for d in testlist):
74 print_test_case(next((d for d in testlist if d['id'] == caseID)))
H A Dtdc.py101 testlist = filtered_tests
102 tcount = len(testlist)
106 for tidx in testlist:
188 testlist = json.load(test_data, object_pairs_hook=OrderedDict)
191 testlist = list()
193 idlist = get_id_list(testlist)
195 for k in testlist:
197 return testlist
293 testlist = []
298 testlist
[all...]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_settime/
H A D13-1.c36 static int testlist[NUMTESTS][4] = { variable
76 its.it_value.tv_sec = testlist[i][0];
77 its.it_value.tv_nsec = testlist[i][1];
78 its.it_interval.tv_sec = testlist[i][2];
79 its.it_interval.tv_nsec = testlist[i][3];
/external/python/cpython2/Lib/lib2to3/fixes/
H A Dfix_isinstance.py31 testlist = results["args"]
32 args = testlist.children
47 atom = testlist.parent
/external/python/cpython3/Lib/lib2to3/fixes/
H A Dfix_isinstance.py31 testlist = results["args"]
32 args = testlist.children
47 atom = testlist.parent
/external/autotest/tko/
H A Dtest.cgi53 testlist = [test for test in tests
60 if testlist and testlist[0]:
61 link = testlist[0].url
62 box = display.status_count_box(db, testlist, link=link)
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
H A DPython.g87 : (NEWLINE)* testlist (NEWLINE)*
144 : testlist
145 ( augassign testlist
146 | (ASSIGN testlist)+
167 ( testlist
168 | RIGHTSHIFT testlist
191 return_stmt: 'return' (testlist)?
194 yield_stmt: 'yield' testlist
240 for_stmt: 'for' exprlist 'in' testlist COLON suite ('else' COLON suite)?
314 atom: LPAREN (testlist)
[all...]
/external/autotest/client/tests/qemu_iotests/
H A Dqemu_iotests.py40 def run_once(self, options='', testlist=''):
44 # Usage: $0 [options] [testlist]
59 # testlist options
67 @param testlist: List of tests that will be executed (by default, all
77 if testlist:
78 cmd += " " + testlist
/external/ltp/tools/pounder21/
H A Dpounder79 ALREADY_EXCLUDED=`grep -w "$BASENAME" $POUNDER_TESTS/excluded/testlist | cut -d " " -f1`
86 echo "$BASENAME" "$FULL_PATH" >> "$POUNDER_TESTS"/excluded/testlist
107 ORIG_FILE=`grep -w "$i" $POUNDER_EXCLUDED/testlist | cut -d " " -f2`
112 sed "/$i /d" $POUNDER_EXCLUDED/testlist > $POUNDER_EXCLUDED/tempfile
113 mv $POUNDER_EXCLUDED/tempfile $POUNDER_EXCLUDED/testlist
147 EXCLUDED_TESTS=`grep -v "#" $POUNDER_HOME/tests/excluded/testlist`
162 elif [ ! -e $TESTS_EXCLUDED/testlist ]; then
163 cp $REPO_EXCLUDED/testlist $TESTS_EXCLUDED/testlist
/external/python/cpython2/Include/
H A Dgraminit.h74 #define testlist 327 macro
/external/python/cpython2/Lib/
H A Dsymbol.py84 testlist = 327 variable
/external/python/cpython3/Include/
H A Dgraminit.h78 #define testlist 331 macro
/external/python/cpython3/Lib/
H A Dsymbol.py88 testlist = 331 variable
/external/python/cpython2/Lib/test/
H A Dtest_genericpath.py64 testlist = ['', 'abc', 'Xbcd', 'Xb', 'XY', 'abcd',
66 for s1 in testlist:
67 for s2 in testlist:
/external/python/cpython2/Demo/parser/
H A Dexample.py173 (symbol.testlist,
/external/python/cpython3/Lib/test/
H A Dtest_genericpath.py87 testlist = ['', 'abc', 'Xbcd', 'Xb', 'XY', 'abcd',
89 for s1 in testlist:
90 for s2 in testlist:
H A Dtest_float.py122 testlist = ('\xbd', '123\xbd', ' 123 456 ')
123 for s in testlist:
/external/python/cpython2/Lib/compiler/
H A Dtransformer.py295 # classdef: 'class' NAME ['(' [testlist] ')'] ':' suite
363 # augassign testlist | testlist ('=' testlist)*
412 # return: [testlist]
574 def testlist(self, nodelist): member in class:Transformer
575 # testlist: expr (',' expr)* [',']
580 testlist_safe = testlist # XXX
581 testlist1 = testlist
582 exprlist = testlist
[all...]
/external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/
H A DDeqpTestRunner.java1024 Reader testlist, String configName, String screenRotation, String surfaceType,
1030 BufferedReader testlistReader = new BufferedReader(testlist);
1982 File testlist = new File(mBuildHelper.getTestsDir(), mCaselistFile);
1983 if (!testlist.isFile()) {
1986 reader = new FileReader(testlist);
1023 generateTestInstances( Reader testlist, String configName, String screenRotation, String surfaceType, boolean required) argument
/external/deqp/android/cts/runner/tests/src/com/drawelements/deqp/runner/
H A DDeqpTestRunnerTest.java124 StringWriter testlist = new StringWriter();
126 testlist.write(test.getClassName() + "." + test.getTestName() + "\n");
128 return buildGlesTestRunner(majorVersion, minorVersion, testlist.toString(), testsDir);
139 String testlist,
153 runner.setCaselistReader(new StringReader(testlist));
137 buildGlesTestRunner(int majorVersion, int minorVersion, String testlist, File testsDir) argument
/external/python/cpython2/Python/
H A Dast.c580 /* testlist: test (',' test)* [','] */
584 assert(TYPE(n) == testlist ||
1363 | '{' [dictmaker] '}' | '`' testlist '`' | NAME | NUMBER | STRING+
2117 /* testlist: test (',' test)* [','] */
2126 assert(TYPE(n) == testlist ||
2155 /* testlist: test (',' test)* [','] */
2157 REQ(n, testlist);
2177 /* expr_stmt: testlist (augassign (yield_expr|testlist)
2178 | ('=' (yield_expr|testlist))*)
[all...]
/external/python/cpython2/Modules/
H A Dparsermodule.c945 VALIDATER(testlist); VALIDATER(varargslist); variable
1056 * 'class' NAME ['(' testlist ')'] ':' suite
1191 return (validate_repeating_list(tree, testlist,
1192 validate_test, "testlist"));
1389 /* list_for: 'for' exprlist 'in' testlist [list_iter]
1774 /* yield_expr: 'yield' [testlist]
3230 case testlist:
/external/python/cpython3/Python/
H A Dast.c1205 /* testlist: test (',' test)* [',']
1211 assert(TYPE(n) == testlist || TYPE(n) == testlist_star_expr || TYPE(n) == testlist_comp);
2874 /* testlist: test (',' test)* [','] */
2881 assert(TYPE(n) == testlist ||
2898 /* expr_stmt: testlist_star_expr (annassign | augassign (yield_expr|testlist) |
2939 if (TYPE(ch) == testlist)
3107 return_stmt: 'return' [testlist]
3109 yield_expr: 'yield' testlist | 'yield' 'from' test
3695 /* for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite] */

Completed in 1918 milliseconds