/test/vts-testcase/kernel/ltp/shell_environment/definitions/base_definitions/ |
D | check_setup_cleanup.py | 44 self.note = None 47 def note(self): member in CheckSetupCleanup 50 @note.setter 51 def note(self, note): argument 52 self._note = note 74 self.note = "Error: Environment definition context not set" 99 if not self.note: 100 self.note = "Shell environment definition unsatisfied" 101 return "{}\nat: {}".format(self.note, self) 108 self.note = None [all …]
|
/test/vti/dashboard/src/main/java/com/android/vts/entity/ |
D | TestAcknowledgmentEntity.java | 75 private String note; field in TestAcknowledgmentEntity 102 Text note) { in TestAcknowledgmentEntity() argument 114 if (note != null) this.note = note.getValue(); in TestAcknowledgmentEntity() 115 else this.note = null; in TestAcknowledgmentEntity() 139 Text note) { in TestAcknowledgmentEntity() argument 140 this(null, -1, test, userObj, branches, devices, testCaseNames, note); in TestAcknowledgmentEntity() 170 if (this.note != null) ackEntity.setUnindexedProperty(NOTE, new Text(this.note)); in toEntity() 208 Text note = null; in fromEntity() local 209 if (e.hasProperty(NOTE)) note = (Text) e.getProperty(NOTE); in fromEntity() 211 e.getKey(), created, test, user, branches, devices, testCaseNames, note); in fromEntity() [all …]
|
/test/vts-testcase/kernel/ltp/testcase/tools/ |
D | test_case.py | 48 self.note = "" 54 def note(self): member in TestCase 58 @note.setter 59 def note(self, note): argument 61 self._note = note
|
D | ltp_test_cases.py | 209 testcase.note = "filtered" 231 testcase.note = "staging"
|
/test/vts-testcase/kernel/ltp/ |
D | test_case.py | 51 self.note = "" 57 def note(self): member in TestCase 61 @note.setter 62 def note(self, note): member in TestCase 64 self._note = note
|
D | KernelLtpTest.py | 215 def CheckResult(self, test_case, cmd_results, result=None, note=None): argument 234 result, note = self.Verify(test_case, cmd_results) 236 logging.info("note: %s", note) 238 asserts.skipIf(result == self._SKIP, note) 239 asserts.assertEqual(result, self._PASS, note) 406 (True, test_case.note)) 417 (True, test_case.note)) 432 result, note = self.Verify(test_case, cmd_results) 442 (test_case, cmd_results, result, note)) 474 asserts.skipIf(test_case.is_filtered, test_case.note) [all …]
|
D | environment_requirement_checker.py | 122 result, note = self._result_cache[requirement] 127 test_case.note = note 216 test_case.note = "Some executables not exist: {}".format( 219 "Reason: {}".format(test_case, test_case.note))
|
D | test_cases_parser.py | 128 testcase.note = "filtered" 147 testcase.note = "staging"
|
/test/vti/dashboard/src/test/java/com/android/vts/entity/ |
D | TestAcknowledgmentEntityTest.java | 64 Text note = new Text("note"); in testEntitySerialization() local 66 new TestAcknowledgmentEntity(key, user, branches, devices, testCaseNames, note); in testEntitySerialization() 81 Assert.assertEquals(note, e.getProperty(TestAcknowledgmentEntity.NOTE)); in testEntitySerialization() 90 Assert.assertEquals(note.getValue(), deserialized.getNote()); in testEntitySerialization() 131 Text note = new Text("note"); in testJsonSerialization() local 133 new TestAcknowledgmentEntity(key, user, branches, devices, testCaseNames, note); in testJsonSerialization() 145 Assert.assertEquals(note.getValue(), deserialized.getNote()); in testJsonSerialization()
|
/test/vti/dashboard/src/main/webapp/js/ |
D | test_acknowledgments.js | 154 function saveCallback(ack, modal, key, test, branchSet, deviceSet, testCaseSet, note) { argument 179 'note': note property 182 var newAck = createAcknowledgment(newKey, test, branches, devices, testCaseNames, note); 207 function showModal(ack, key, test, branches, devices, testCases, note) { argument 276 textArea.val(note); 326 function createAcknowledgment(key, test, branches, devices, testCases, note) { argument 334 showModal(wrapper, key, test, branches, devices, testCases, note); 431 ack.key, ack.testName, ack.branches, ack.devices, ack.testCaseNames, ack.note);
|
/test/vts/utils/python/library/elf/testing/ |
D | test-section-2.s | 18 .section test.dup,"",@note 28 .section .note.android.ident,"a",@note
|
/test/vts-testcase/kernel/ltp/shell_environment/definitions/ |
D | loop_device_support.py | 23 note = "Kernel does not have loop device support" variable in LoopDeviceSupport
|
D | bin_in_path.py | 71 self.note = "Some binary do not exist in path: %s" % self._failed_paths
|
D | directory_exists.py | 72 self.note = "Some directories do not exist: %s" % self._failed_paths
|
D | path_permission.py | 79 self.note = ("Some paths do not have desired "
|
/test/cts-root/tools/cts-root-tradefed/ |
D | README | 42 note: all connected devices must be running the same build
|
/test/mts/tools/mts-tradefed/ |
D | README | 41 note: all connected devices must be running the same build
|
/test/catbox/tools/catbox-tradefed/ |
D | README | 51 note: all connected devices must be running the same build
|
/test/vts/tools/vts-core-tradefed/ |
D | README | 58 note: all connected devices must be running the same build
|
/test/app_compat/csuite/ |
D | pylintrc | 160 # Python expression which should return a note less than 10 (10 is the highest 161 # note). You have access to the variables errors warning, statement which 299 # List of note tags to take in consideration, separated by a comma.
|
/test/vti/dashboard/src/main/webapp/css/ |
D | test_acknowledgments.css | 124 .acknowledgments-modal.modal .modal-content .input-field textarea.note-field:disabled {
|