2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 01:05:31 +04:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2013-04-29 22:49:00 +04:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['unit/xpcshell.ini']
|
2013-07-24 11:23:06 +04:00
|
|
|
|
2014-10-30 07:06:12 +03:00
|
|
|
GeckoCppUnitTests([
|
2014-07-23 08:29:44 +04:00
|
|
|
'test_AsXXX_helpers',
|
|
|
|
'test_async_callbacks_with_spun_event_loops',
|
|
|
|
'test_asyncStatementExecution_transaction',
|
|
|
|
'test_binding_params',
|
|
|
|
'test_file_perms',
|
|
|
|
'test_mutex',
|
|
|
|
'test_service_init_background_thread',
|
|
|
|
'test_statement_scoper',
|
|
|
|
'test_StatementCache',
|
|
|
|
'test_transaction_helper',
|
|
|
|
'test_true_async',
|
|
|
|
'test_unlock_notify',
|
2014-09-03 09:10:54 +04:00
|
|
|
])
|
2013-07-24 11:23:06 +04:00
|
|
|
|
|
|
|
if CONFIG['MOZ_DEBUG'] and CONFIG['OS_ARCH'] not in ('WINNT', 'Darwin'):
|
|
|
|
# FIXME bug 523392: test_deadlock_detector doesn't like Windows
|
|
|
|
# FIXME bug 523378: also fails on OS X
|
2014-10-30 07:06:12 +03:00
|
|
|
GeckoCppUnitTests([
|
2014-07-23 08:29:44 +04:00
|
|
|
'test_deadlock_detector',
|
2014-09-03 09:10:54 +04:00
|
|
|
])
|
2013-12-31 13:06:11 +04:00
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
2015-05-19 20:47:33 +03:00
|
|
|
'..',
|
2013-12-31 13:06:11 +04:00
|
|
|
]
|
|
|
|
|
2014-07-23 08:30:52 +04:00
|
|
|
USE_LIBS += [
|
2014-08-07 09:21:03 +04:00
|
|
|
'sqlite',
|
2014-07-23 08:30:52 +04:00
|
|
|
]
|