Changeset 76938 in vbox for trunk/src/VBox/ValidationKit/testdriver
- Timestamp:
- Jan 22, 2019 4:50:18 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 128315
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/base.py
r76553 r76938 831 831 if self.sHost == 'darwin': self.sResourcePath = "/Volumes/testrsrc/"; 832 832 elif self.sHost == 'freebsd': self.sResourcePath = "/mnt/testrsrc/"; 833 elif self.sHost == 'linux': self.sResourcePath = "/mnt/testrsrc/"; 833 elif self.sHost == 'linux': 834 self.sResourcePath = "/mnt/testrsrc/"; 835 if not os.path.isdir(self.sResourcePath) and utils.isRunningFromCheckout(): 836 self.sResourcePath = os.path.join(g_ksValidationKitDir, os.pardir, os.pardir, os.pardir, "testrsrc"); 834 837 elif self.sHost == 'os2': self.sResourcePath = "T:/"; 835 838 elif self.sHost == 'solaris': self.sResourcePath = "/mnt/testrsrc/"; 836 839 elif self.sHost == 'win': self.sResourcePath = "T:/"; 837 840 else: raise GenError('unknown host OS "%s"' % (self.sHost)); 841 assert os.path.isdir(self.sResourcePath), 'Resource path not found: self.sResourcePath="%s"' % (self.sResourcePath); 838 842 839 843 # PID file for the testdriver.
Note:
See TracChangeset
for help on using the changeset viewer.