Home
last modified time | relevance | path

Searched refs:test_classes (Results 1 – 25 of 371) sorted by relevance

12345678910>>...15

/dports/www/chromium-legacy/chromium-88.0.4324.182/build/android/pylib/local/machine/
H A Dlocal_machine_junit_test_run_test.py42 test_classes = [1] * 50
44 test_classes, test_shards)
50 test_classes, test_shards)
54 test_classes = [1] * 100
57 test_classes, test_shards)
61 test_classes = [1] * 10
64 test_classes, test_shards)
68 test_classes = []
72 test_classes = ['dir/test.class'] * 5
76 test_classes = ['dir/test.class'] * 5
[all …]
H A Dlocal_machine_junit_test_run.py119 test_classes = []
122 test_classes = _GetTestClasses(wrapper_path)
125 group_test_list = GroupTestsForShard(shards, test_classes)
183 def ChooseNumOfShards(test_classes, shards): argument
190 shards = max(1, (len(test_classes) // _MIN_CLASSES_PER_SHARD))
194 shards = min(len(test_classes), shards)
199 def GroupTestsForShard(num_of_shards, test_classes): argument
213 for count, test_cls in enumerate(test_classes):
225 test_classes = []
239 test_classes += _GetTestClassesFromJar(test_jar_path)
[all …]
/dports/lang/v8/v8-9.6.180.12/build/android/pylib/local/machine/
H A Dlocal_machine_junit_test_run_test.py43 test_classes = [1] * 50
45 test_classes, test_shards)
51 test_classes, test_shards)
55 test_classes = [1] * 20
58 test_classes, test_shards)
62 test_classes = []
63 results = local_machine_junit_test_run.GroupTestsForShard(1, test_classes)
66 test_classes = ['dir/test.class'] * 5
67 results = local_machine_junit_test_run.GroupTestsForShard(1, test_classes)
70 test_classes = ['dir/test.class'] * 5
[all …]
H A Dlocal_machine_junit_test_run.py129 test_classes = []
132 test_classes = _GetTestClasses(wrapper_path)
136 group_test_list = GroupTestsForShard(shards, test_classes)
197 def ChooseNumOfShards(test_classes, shards): argument
204 shards = max(1, (len(test_classes) // _MIN_CLASSES_PER_SHARD))
212 shards = min(len(test_classes), shards)
217 def GroupTestsForShard(num_of_shards, test_classes): argument
231 for count, test_cls in enumerate(test_classes):
275 test_classes = []
282 test_classes += _GetTestClassesFromJar(test_jar_path)
[all …]
/dports/databases/py-sqlite3/Python-3.8.12/Lib/test/
H A Dtest_datetime.py26 test_classes = [] variable
31 test_classes.append(cls)
34 test_classes.extend(type(test) for test in suit)
35 test_classes = sorted(set(test_classes), key=lambda cls: cls.__qualname__) variable
36 for cls in test_classes:
51 all_test_classes.extend(test_classes)
/dports/databases/py-gdbm/Python-3.8.12/Lib/test/
H A Dtest_datetime.py26 test_classes = [] variable
31 test_classes.append(cls)
34 test_classes.extend(type(test) for test in suit)
35 test_classes = sorted(set(test_classes), key=lambda cls: cls.__qualname__) variable
36 for cls in test_classes:
51 all_test_classes.extend(test_classes)
/dports/lang/python37/Python-3.7.12/Lib/test/
H A Dtest_datetime.py26 test_classes = [] variable
31 test_classes.append(cls)
34 test_classes.extend(type(test) for test in suit)
35 test_classes = sorted(set(test_classes), key=lambda cls: cls.__qualname__) variable
36 for cls in test_classes:
51 all_test_classes.extend(test_classes)
/dports/lang/python-tools/Python-3.8.12/Lib/test/
H A Dtest_datetime.py26 test_classes = [] variable
31 test_classes.append(cls)
34 test_classes.extend(type(test) for test in suit)
35 test_classes = sorted(set(test_classes), key=lambda cls: cls.__qualname__) variable
36 for cls in test_classes:
51 all_test_classes.extend(test_classes)
/dports/lang/python38/Python-3.8.12/Lib/test/
H A Dtest_datetime.py26 test_classes = [] variable
31 test_classes.append(cls)
34 test_classes.extend(type(test) for test in suit)
35 test_classes = sorted(set(test_classes), key=lambda cls: cls.__qualname__) variable
36 for cls in test_classes:
51 all_test_classes.extend(test_classes)
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Lib/test/
H A Dtest_datetime.py26 test_classes = [] variable
31 test_classes.append(cls)
34 test_classes.extend(type(test) for test in suit)
35 test_classes = sorted(set(test_classes), key=lambda cls: cls.__qualname__) variable
36 for cls in test_classes:
51 all_test_classes.extend(test_classes)
/dports/lang/python310/Python-3.10.1/Lib/test/
H A Dtest_datetime.py27 test_classes = []
32 test_classes.append(cls)
35 test_classes.extend(type(test) for test in suit)
36 test_classes = sorted(set(test_classes), key=lambda cls: cls.__qualname__)
37 for cls in test_classes:
/dports/lang/python39/Python-3.9.9/Lib/test/
H A Dtest_datetime.py27 test_classes = []
32 test_classes.append(cls)
35 test_classes.extend(type(test) for test in suit)
36 test_classes = sorted(set(test_classes), key=lambda cls: cls.__qualname__)
37 for cls in test_classes:
/dports/lang/python311/Python-3.11.0a3/Lib/test/
H A Dtest_datetime.py27 test_classes = []
32 test_classes.append(cls)
35 test_classes.extend(type(test) for test in suit)
36 test_classes = sorted(set(test_classes), key=lambda cls: cls.__qualname__)
37 for cls in test_classes:
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/langtools/tools/javac/api/6420409/
H A DT6420409.java47 static final File test_classes = new File(System.getProperty("test.classes")); field in T6420409
52 fm.setLocation(SOURCE_PATH, Arrays.asList(test_classes)); // switcheroo !!! in main()
54 fm.setLocation(CLASS_OUTPUT, Arrays.asList(test_classes)); in main()
64 test(fm.getLocation(SOURCE_PATH), test_classes, SOURCE_PATH); in main() local
65 test(fm.getLocation(CLASS_OUTPUT), test_classes, CLASS_OUTPUT); in main() local
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/langtools/tools/javac/api/6420409/
H A DT6420409.java47 static final File test_classes = new File(System.getProperty("test.classes")); field in T6420409
52 fm.setLocation(SOURCE_PATH, Arrays.asList(test_classes)); // switcheroo !!! in main()
54 fm.setLocation(CLASS_OUTPUT, Arrays.asList(test_classes)); in main()
64 test(fm.getLocation(SOURCE_PATH), test_classes, SOURCE_PATH); in main() local
65 test(fm.getLocation(CLASS_OUTPUT), test_classes, CLASS_OUTPUT); in main() local
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/langtools/tools/javac/api/6420409/
H A DT6420409.java47 static final File test_classes = new File(System.getProperty("test.classes")); field in T6420409
52 fm.setLocation(SOURCE_PATH, Arrays.asList(test_classes)); // switcheroo !!! in main()
54 fm.setLocation(CLASS_OUTPUT, Arrays.asList(test_classes)); in main()
64 test(fm.getLocation(SOURCE_PATH), test_classes, SOURCE_PATH); in main() local
65 test(fm.getLocation(CLASS_OUTPUT), test_classes, CLASS_OUTPUT); in main() local
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/langtools/tools/javac/api/6420409/
H A DT6420409.java47 static final File test_classes = new File(System.getProperty("test.classes")); field in T6420409
52 fm.setLocation(SOURCE_PATH, Arrays.asList(test_classes)); // switcheroo !!! in main()
54 fm.setLocation(CLASS_OUTPUT, Arrays.asList(test_classes)); in main()
64 test(fm.getLocation(SOURCE_PATH), test_classes, SOURCE_PATH); in main() local
65 test(fm.getLocation(CLASS_OUTPUT), test_classes, CLASS_OUTPUT); in main() local
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/langtools/tools/javac/api/6420409/
H A DT6420409.java47 static final File test_classes = new File(System.getProperty("test.classes")); field in T6420409
52 fm.setLocation(SOURCE_PATH, Arrays.asList(test_classes)); // switcheroo !!! in main()
54 fm.setLocation(CLASS_OUTPUT, Arrays.asList(test_classes)); in main()
64 test(fm.getLocation(SOURCE_PATH), test_classes, SOURCE_PATH); in main() local
65 test(fm.getLocation(CLASS_OUTPUT), test_classes, CLASS_OUTPUT); in main() local
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/langtools/tools/javac/api/6420409/
H A DT6420409.java47 static final File test_classes = new File(System.getProperty("test.classes")); field in T6420409
52 fm.setLocation(SOURCE_PATH, Arrays.asList(test_classes)); // switcheroo !!! in main()
54 fm.setLocation(CLASS_OUTPUT, Arrays.asList(test_classes)); in main()
64 test(fm.getLocation(SOURCE_PATH), test_classes, SOURCE_PATH); in main() local
65 test(fm.getLocation(CLASS_OUTPUT), test_classes, CLASS_OUTPUT); in main() local
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/langtools/tools/javac/api/6420409/
H A DT6420409.java47 static final File test_classes = new File(System.getProperty("test.classes")); field in T6420409
52 fm.setLocation(SOURCE_PATH, Arrays.asList(test_classes)); // switcheroo !!! in main()
54 fm.setLocation(CLASS_OUTPUT, Arrays.asList(test_classes)); in main()
64 test(fm.getLocation(SOURCE_PATH), test_classes, SOURCE_PATH); in main() local
65 test(fm.getLocation(CLASS_OUTPUT), test_classes, CLASS_OUTPUT); in main() local
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/langtools/tools/javac/api/6420409/
H A DT6420409.java47 static final File test_classes = new File(System.getProperty("test.classes")); field in T6420409
52 fm.setLocation(SOURCE_PATH, Arrays.asList(test_classes)); // switcheroo !!! in main()
54 fm.setLocation(CLASS_OUTPUT, Arrays.asList(test_classes)); in main()
64 test(fm.getLocation(SOURCE_PATH), test_classes, SOURCE_PATH); in main() local
65 test(fm.getLocation(CLASS_OUTPUT), test_classes, CLASS_OUTPUT); in main() local
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/langtools/test/tools/javac/api/6420409/
H A DT6420409.java45 static final File test_classes = new File(System.getProperty("test.classes")); field in T6420409
50 fm.setLocation(SOURCE_PATH, Arrays.asList(test_classes)); // switcheroo !!! in main()
52 fm.setLocation(CLASS_OUTPUT, Arrays.asList(test_classes)); in main()
62 test(fm.getLocation(SOURCE_PATH), test_classes, SOURCE_PATH); in main() local
63 test(fm.getLocation(CLASS_OUTPUT), test_classes, CLASS_OUTPUT); in main() local
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/langtools/test/tools/javac/api/6420409/
H A DT6420409.java45 static final File test_classes = new File(System.getProperty("test.classes")); field in T6420409
50 fm.setLocation(SOURCE_PATH, Arrays.asList(test_classes)); // switcheroo !!! in main()
52 fm.setLocation(CLASS_OUTPUT, Arrays.asList(test_classes)); in main()
62 test(fm.getLocation(SOURCE_PATH), test_classes, SOURCE_PATH); in main() local
63 test(fm.getLocation(CLASS_OUTPUT), test_classes, CLASS_OUTPUT); in main() local
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/javax/imageio/metadata/IIOMetadataFormat/
H A DrunMetadataFormatThreadTest.sh199 if [ -d ./test_classes ] ; then
203 mkdir ./test_classes
206 mv ./UserPluginMetadataFormatTest*.class ./test_classes
209 MetadataFormatThreadTest test_classes UserPluginMetadataFormatTest
H A DrunMetadataFormatTest.sh198 if [ -d ./test_classes ] ; then
202 mkdir ./test_classes
205 mv ./UserPluginMetadataFormatTest*.class ./test_classes
208 MetadataFormatTest test_classes UserPluginMetadataFormatTest

12345678910>>...15