Changeset 74032 in vbox for trunk/src/VBox/ValidationKit/tests/api
- Timestamp:
- Sep 3, 2018 9:21:18 AM (6 years ago)
- Location:
- trunk/src/VBox/ValidationKit/tests/api
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/api/tdApi1.py
r72742 r74032 79 79 if __name__ == '__main__': 80 80 sys.path.append(os.path.dirname(os.path.abspath(__file__))) 81 from tdPython1 import SubTstDrvPython1; 82 from tdAppliance1 import SubTstDrvAppliance1; 83 from tdMoveMedium1 import SubTstDrvMoveMedium1; 84 from tdTreeDepth1 import SubTstDrvTreeDepth1; 85 from tdMoveVM1 import SubTstDrvMoveVM1; 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 86 sys.exit(tdApi1([SubTstDrvPython1, SubTstDrvAppliance1, SubTstDrvMoveMedium1, 87 87 SubTstDrvTreeDepth1, SubTstDrvMoveVM1]).main(sys.argv)) -
trunk/src/VBox/ValidationKit/tests/api/tdTreeDepth1.py
r70816 r74032 147 147 if __name__ == '__main__': 148 148 sys.path.append(os.path.dirname(os.path.abspath(__file__))) 149 from tdApi1 import tdApi1 149 from tdApi1 import tdApi1; # pylint: disable=relative-import 150 150 sys.exit(tdApi1([SubTstDrvTreeDepth1]).main(sys.argv)) 151 151
Note:
See TracChangeset
for help on using the changeset viewer.