Commit cca816e2 authored by Denis Bilenko's avatar Denis Bilenko

testrunner.py: always use database in the current directory by default instead of /tmp/

parent d486df1d
......@@ -11,8 +11,6 @@ in the database logged with the result 'TIMEOUT'.
The --db option, when provided, specifies sqlite3 database that holds the test results.
By default 'testresults.sqlite3' is used in the current directory.
If the a mercurial repository is detected and the current working copy is "dirty", that is,
has uncommited changes, then '/tmp/testresults.sqlite3' is used.
The results are stored in the following 2 tables:
......@@ -505,9 +503,6 @@ def main():
options.verbosity += options.verbose - options.quiet
if not options.db and sqlite3:
if get_changeset().endswith('+'):
options.db = get_tempnam()
else:
options.db = 'testresults.sqlite3'
print 'Using the database: %s' % options.db
elif options.db and not sqlite3:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment