make runtests.py --log-file handle relative pathnames. r=sayrer (no bug)

This commit is contained in:
Ted Mielczarek 2008-07-01 15:16:05 -04:00
Родитель c547ee4c57
Коммит 9a110f955e
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -77,6 +77,7 @@ SERVER_STARTUP_TIMEOUT = 45
INFINITY = 1.0e3000
oldcwd = os.getcwd()
SCRIPT_DIRECTORY = os.path.abspath(os.path.realpath(os.path.dirname(sys.argv[0])))
os.chdir(SCRIPT_DIRECTORY)
@ -338,7 +339,7 @@ Are you executing $objdir/_tests/testing/mochitest/runtests.py?"""
if options.closeWhenDone:
urlOpts.append("closeWhenDone=1")
if options.logFile:
urlOpts.append("logFile=" + encodeURIComponent(options.logFile))
urlOpts.append("logFile=" + encodeURIComponent(os.path.normpath(os.path.join(oldcwd, options.logFile))))
urlOpts.append("fileLevel=" + encodeURIComponent(options.fileLevel))
if options.consoleLevel:
urlOpts.append("consoleLevel=" + encodeURIComponent(options.consoleLevel))