Changeset 77777 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Mar 19, 2019 10:00:28 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129442
- Location:
- trunk/src/VBox/ValidationKit/tests/api
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/api/tdApi1.py
r76553 r77777 79 79 if __name__ == '__main__': 80 80 sys.path.append(os.path.dirname(os.path.abspath(__file__))) 81 from tdPython1 import SubTstDrvPython1; # pylint: disable=relative-import 82 from tdAppliance1 import SubTstDrvAppliance1; # pylint: disable=relative-import 83 from tdMoveMedium1 import SubTstDrvMoveMedium1; # pylint: disable=relative-import 84 from tdTreeDepth1 import SubTstDrvTreeDepth1; # pylint: disable=relative-import 85 from tdMoveVM1 import SubTstDrvMoveVM1; # pylint: disable=relative-import 81 from tdPython1 import SubTstDrvPython1; # pylint: disable=relative-import 82 from tdAppliance1 import SubTstDrvAppliance1; # pylint: disable=relative-import 83 from tdMoveMedium1 import SubTstDrvMoveMedium1; # pylint: disable=relative-import 84 from tdTreeDepth1 import SubTstDrvTreeDepth1; # pylint: disable=relative-import 85 from tdMoveVM1 import SubTstDrvMoveVM1; # pylint: disable=relative-import 86 from tdOCIExport1 import SubTstOCIExportVM1; # pylint: disable=relative-import 86 87 sys.exit(tdApi1([SubTstDrvPython1, SubTstDrvAppliance1, SubTstDrvMoveMedium1, 87 SubTstDrvTreeDepth1, SubTstDrvMoveVM1 ]).main(sys.argv))88 SubTstDrvTreeDepth1, SubTstDrvMoveVM1, SubTstOCIExportVM1]).main(sys.argv)) 88 89 -
trunk/src/VBox/ValidationKit/tests/api/tdAppliance1.py
r76553 r77777 202 202 203 203 if __name__ == '__main__': 204 sys.path.append(os.path.dirname(os.path.abspath(__file__))) 204 205 from tests.api.tdApi1 import tdApi1; 205 206 sys.exit(tdApi1([SubTstDrvAppliance1]).main(sys.argv)); -
trunk/src/VBox/ValidationKit/tests/api/tdMoveVM1.py
r76553 r77777 560 560 561 561 fSupported = self.checkAPIVersion() 562 reporter.log('ValidationKit folder is "%s"' % (g_ksValidationKitDir,)) 562 563 563 564 if fSupported is False:
Note:
See TracChangeset
for help on using the changeset viewer.