Skip to content
Snippets Groups Projects
Commit 2f89b591 authored by bigbes's avatar bigbes
Browse files

Merge branch 'stable'

Conflicts:
	test/module/net_sql.common.lua
	test/module/net_sql.common.result
	test/module/net_sql.common.test
	test/module/net_sql.mysql.lua
	test/module/net_sql.mysql.result
	test/module/net_sql.mysql.skipcond
	test/module/net_sql.mysql.test
	test/module/net_sql.pg.lua
	test/module/net_sql.pg.result
	test/module/net_sql.pg.skipcond
	test/module/net_sql.pg.test
	test/test-run.py
parents 9b80c84f f31b2a38
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ import os.path
try:
(host, port, user, password, db) = os.getenv('MYSQL').split(':')
if not os.path.exists(os.path.join(server.builddir, 'src/module/mysql/mysql.so')):
if not os.path.exists(os.path.join(self.args.builddir, 'src/module/mysql/mysql.so')):
raise RuntimeError('No MySQL module found')
except (RuntimeError, TypeError, NameError, AttributeError, ValueError):
self.skip = 1
......@@ -3,7 +3,7 @@ import os.path
try:
(host, port, user, password, db) = os.getenv('PG').split(':')
if not os.path.exists(os.path.join(server.builddir, 'src/module/pg/pg.so')):
if not os.path.exists(os.path.join(self.args.builddir, 'src/module/pg/pg.so')):
raise RuntimeError('No PG module found')
except (RuntimeError, TypeError, NameError, AttributeError, ValueError):
self.skip = 1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment