Changeset 98651 in vbox for trunk/src/VBox/ValidationKit/testdriver
- Timestamp:
- Feb 20, 2023 1:10:54 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 155951
- Location:
- trunk/src/VBox/ValidationKit/testdriver
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/base.py
r98103 r98651 65 65 66 66 # Figure where we are. 67 try: __file__ 67 try: __file__ # pylint: disable=used-before-assignment 68 68 except: __file__ = sys.argv[0]; 69 69 g_ksValidationKitDir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))); -
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r98269 r98651 53 53 54 54 # Figure out where the validation kit lives and make sure it's in the path. 55 try: __file__ 55 try: __file__ # pylint: disable=used-before-assignment 56 56 except: __file__ = sys.argv[0]; 57 57 g_ksValidationKitDir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))); -
trunk/src/VBox/ValidationKit/testdriver/vboxinstaller.py
r98103 r98651 53 53 54 54 # Only the main script needs to modify the path. 55 try: __file__ 55 try: __file__ # pylint: disable=used-before-assignment 56 56 except: __file__ = sys.argv[0]; 57 57 g_ksValidationKitDir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)));
Note:
See TracChangeset
for help on using the changeset viewer.