- Timestamp:
- Mar 24, 2020 2:42:41 PM (5 years ago)
- Location:
- trunk/src/VBox/ValidationKit/testmanager
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/config.py
r82968 r83381 67 67 g_ksTestManagerDir = os.path.dirname(os.path.abspath(__file__)); 68 68 ## The Validation Kit directory. 69 g_ksValidationKitDir 69 g_ksValidationKitDir = os.path.dirname(g_ksTestManagerDir); 70 70 ## The TestManager htdoc directory. 71 71 g_ksTmHtDocDir = os.path.join(g_ksTestManagerDir, 'htdocs'); … … 159 159 ## Timestamp and pid prefix the glue debug output. 160 160 g_kfSrvGlueDebugTS = True; 161 ## Whether to dumping CGI environment variables. 162 g_kfSrvGlueCgiDumpEnv = False; 163 ## Whether to dumping CGI script arguments. 164 g_kfSrvGlueCgiDumpArgs = False; 161 165 ## Enables task scheduler debug output to g_ksSrcGlueDebugLogDst. 162 166 g_kfSrvGlueDebugScheduler = False; -
trunk/src/VBox/ValidationKit/testmanager/core/webservergluebase.py
r82968 r83381 72 72 if config.g_ksSrcGlueDebugLogDst is not None and config.g_kfSrvGlueDebug is True: 73 73 self._oDbgFile = open(config.g_ksSrcGlueDebugLogDst, 'a'); 74 if config.g_kfSrvGlueCgiDumpArgs: 75 self._oDbgFile.write('Arguments: %s\nEnvironment:\n' % (sys.argv,)); 76 if config.g_kfSrvGlueCgiDumpEnv: 77 for sVar in sorted(os.environ): 78 self._oDbgFile.write(' %s=\'%s\' \\\n' % (sVar, os.environ[sVar],)); 79 74 80 self._afnDebugInfo = []; 75 81
Note:
See TracChangeset
for help on using the changeset viewer.