Home
last modified time | relevance | path

Searched refs:t (Results 1 – 25 of 97) sorted by relevance

1234

/tools/treble/hacksaw/client/
Dcommand_test.go29 func TestHelpCommand(t *testing.T) {
34 t.Error(err)
38 func TestNoCommand(t *testing.T) {
43 t.Error(err)
47 func TestBadCommand(t *testing.T) {
51 t.Errorf("Failed to handle bad command")
55 func TestEmptyCodebaseCommand(t *testing.T) {
59 t.Errorf("Allowed an empty codebase command")
63 func TestAddCodebase(t *testing.T) {
67 t.Error(err)
[all …]
Dclient_test.go25 func TestClientHelp(t *testing.T) {
28 t.Error(err)
34 t.Error(err)
/tools/treble/hacksaw/codebase/
Dcodebase_test.go27 func TestAdd(t *testing.T) {
31 t.Error(err)
36 t.Error(err)
45 t.Errorf("Expected config %v different than output config %v",
51 t.Error(err)
55 t.Error(err)
65 t.Errorf("Expected config %v different than output config %v",
70 func TestAddDuplicate(t *testing.T) {
74 t.Error(err)
79 t.Error(err)
[all …]
/tools/treble/hacksaw/workspace/
Dcopier_test.go24 func TestCopy(t *testing.T) {
28 t.Error(err)
33 t.Error(err)
38 t.Error(err)
42 t.Error(err)
46 t.Error(err)
50 t.Error(err)
54 t.Error(err)
58 t.Error(err)
62 t.Error(err)
[all …]
Dcompose_test.go27 func TestBasicCompose(t *testing.T) {
31 t.Error(err)
36 t.Error(err)
40 t.Error(err)
45 t.Error(err)
49 t.Error(err)
54 t.Error(err)
60 t.Error(err)
67 t.Errorf("Expected a list of binds %v and got %v", expectedList, list)
71 t.Error(err)
[all …]
/tools/treble/hacksaw/bind/
Dremoteserver_test.go25 func TestServerBind(t *testing.T) {
28 t.Error(err)
34 t.Error(err)
38 t.Error(err)
46 t.Error(err)
49 t.Error(bindROReply.Err)
53 t.Error(err)
57 t.Error(err)
65 t.Error(err)
68 t.Error(bindRWReply.Err)
[all …]
/tools/test/connectivity/acts_tests/tests/google/fuchsia/wlan/functional/
DDownloadStressTest.py115 t = threading.Thread(target=self.download_thread, args=(url, ))
116 download_threads.append(t)
117 t.start()
120 for t in download_threads:
121 t.join(self.download_timeout_s)
126 for index, t in enumerate(download_threads):
127 if t.isAlive():
128 t = None
155 t = threading.Thread(target=self.download_thread,
157 download_threads.append(t)
[all …]
DPingStressTest.py141 t = threading.Thread(target=self.ping_thread, args=(url, ))
142 ping_threads.append(t)
143 t.start()
146 for t in ping_threads:
147 t.join(self.ping_thread_timeout_s)
152 for index, t in enumerate(ping_threads):
153 if t.isAlive():
154 t = None
/tools/treble/hacksaw/git/
Drepo_test.go25 func TestList(t *testing.T) {
28 t.Error(err)
31 t.Error(err)
39 t.Error(err)
44 t.Error(err)
53 t.Errorf("Got list %v but expected %v", projectList, expectedList)
/tools/treble/hacksaw/config/
Dconfig_test.go31 func TestWrite(t *testing.T) {
40 t.Error(err)
44 t.Errorf("Output %s is different that expected output %s",
57 func TestRead(t *testing.T) {
62 t.Error(err)
71 t.Errorf("Written config %v is different than read config %v",
/tools/acloud/
Drun_tests.sh58 for t in $all_tests;
62 if [[ "$t" =~ "$t_pattern" ]]; then
63 tests_to_run=("${tests_to_run[@]}" "$t")
69 for t in $tests_to_run;
71 if ! PYTHONPATH=$(get_python_path):$PYTHONPATH $run_cmd $t; then
73 echo -e "${RED}$t failed${NC}"
Drun_tests_py2.sh56 for t in $all_tests;
60 if [[ "$t" =~ "$t_pattern" ]]; then
61 tests_to_run=("${tests_to_run[@]}" "$t")
67 for t in $tests_to_run;
69 if ! PYTHONPATH=$(get_python_path):$PYTHONPATH $run_cmd $t; then
71 echo -e "${RED}$t failed${NC}"
/tools/treble/hacksaw/cmd/hacksaw/
Dmain_test.go23 func TestHelp(t *testing.T) {
26 t.Error(err)
30 t.Error(err)
37 t.Error(err)
/tools/asuite/aidegen/
Drun_tests.sh55 for t in $tests_to_run; do
56 echo "Testing" $t
57 … if ! PYTHONPATH=$(get_python_path) python3 -m coverage run --append --rcfile=$RC_FILE $t; then
59 echo -e "${RED}$t failed${NC}"
/tools/metalava/src/main/java/com/android/tools/metalava/
DProguardWriter.kt128 private fun getCleanTypeName(t: TypeItem?): String { in getCleanTypeName()
129 t ?: return "" in getCleanTypeName()
130 val cls = t.asClass() ?: return t.toCanonicalType() in getCleanTypeName()
133 for (i in 0 until t.arrayDimensions()) { in getCleanTypeName()
/tools/test/connectivity/acts_tests/tests/google/fuchsia/input/
DTouchTest.py64 '(%d, %d)' % (t['position_x'], t['position_y'])
65 for t in event['touch']['contacts']
/tools/test/connectivity/acts_tests/tests/google/wifi/
DWifiTetheringPowerTest.py134 t = threading.Thread(target = self._start_traffic_on_device,
136 t.start()
137 threads.append(t)
141 for t in threads:
142 t.join()
/tools/test/connectivity/acts_tests/tests/google/bt/
DBtMetricsTest.py102 t = pair_event.event_time_millis
103 asserts.assert_true(start_time <= t <= end_time,
105 (t, start_time, end_time))
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/utils/
DCachedSupplier.java105 public synchronized void precomputed(T t) { in precomputed() argument
106 cached = t; in precomputed()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/util/
DBuilders.kt21 private fun <T> noReset(t: T) = t in noReset()
/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/testtype/
DGameQualificationHostsideController.java259 for (PerformanceTest.Test t : PerformanceTest.Test.values()) { in run()
260 … TestDescription identifier = new TestDescription(CLASS, t.getName() + "[" + apk.getName() + "]"); in run()
261 if (t.isEnableCollectors()) { in run()
275 t.getMethod().run(test); in run()
284 if (t.isEnableCollectors()) { in run()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/importers/ftrace/
DFtraceImporter.kt40 } catch (t: Throwable) { in <lambda>()
42 t.printStackTrace() in <lambda>()
/tools/test/connectivity/acts/framework/acts/bin/
Dact.py79 t = test_runner.TestRunner(parsed_config, test_identifiers)
85 handler = config_parser.gen_term_signal_handler([t])
88 return t
/tools/metalava/src/main/java/com/android/tools/metalava/model/text/
DTextMethodItem.kt126 for (t in typeParameterList.typeParameters()) { in resolveParameter() method
127 if (t.simpleName() == variable) { in resolveParameter()
128 return t in resolveParameter()
/tools/test/connectivity/acts_tests/tests/google/ble/beacon_tests/
DBeaconSwarmTest.py124 for t in threads:
125 t.join()
154 for t in threads:
155 t.join()

1234