michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: XPCSHELL_TESTS_MANIFESTS += ['unit/xpcshell.ini'] michael@0: michael@0: CPP_UNIT_TESTS += [ michael@0: 'test_AsXXX_helpers.cpp', michael@0: 'test_async_callbacks_with_spun_event_loops.cpp', michael@0: 'test_asyncStatementExecution_transaction.cpp', michael@0: 'test_binding_params.cpp', michael@0: 'test_file_perms.cpp', michael@0: 'test_mutex.cpp', michael@0: 'test_service_init_background_thread.cpp', michael@0: 'test_statement_scoper.cpp', michael@0: 'test_StatementCache.cpp', michael@0: 'test_transaction_helper.cpp', michael@0: 'test_true_async.cpp', michael@0: 'test_unlock_notify.cpp', michael@0: ] michael@0: michael@0: if CONFIG['MOZ_DEBUG'] and CONFIG['OS_ARCH'] not in ('WINNT', 'Darwin'): michael@0: # FIXME bug 523392: test_deadlock_detector doesn't like Windows michael@0: # FIXME bug 523378: also fails on OS X michael@0: CPP_UNIT_TESTS += [ michael@0: 'test_deadlock_detector.cpp', michael@0: ] michael@0: michael@0: LOCAL_INCLUDES += [ michael@0: '../src', michael@0: ] michael@0: michael@0: FAIL_ON_WARNINGS = True