storage/test/moz.build

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/storage/test/moz.build	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,35 @@
     1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
     1.5 +# vim: set filetype=python:
     1.6 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.9 +
    1.10 +XPCSHELL_TESTS_MANIFESTS += ['unit/xpcshell.ini']
    1.11 +
    1.12 +CPP_UNIT_TESTS += [
    1.13 +    'test_AsXXX_helpers.cpp',
    1.14 +    'test_async_callbacks_with_spun_event_loops.cpp',
    1.15 +    'test_asyncStatementExecution_transaction.cpp',
    1.16 +    'test_binding_params.cpp',
    1.17 +    'test_file_perms.cpp',
    1.18 +    'test_mutex.cpp',
    1.19 +    'test_service_init_background_thread.cpp',
    1.20 +    'test_statement_scoper.cpp',
    1.21 +    'test_StatementCache.cpp',
    1.22 +    'test_transaction_helper.cpp',
    1.23 +    'test_true_async.cpp',
    1.24 +    'test_unlock_notify.cpp',
    1.25 +]
    1.26 +
    1.27 +if CONFIG['MOZ_DEBUG'] and CONFIG['OS_ARCH'] not in ('WINNT', 'Darwin'):
    1.28 +    # FIXME bug 523392: test_deadlock_detector doesn't like Windows
    1.29 +    # FIXME bug 523378: also fails on OS X
    1.30 +    CPP_UNIT_TESTS += [
    1.31 +        'test_deadlock_detector.cpp',
    1.32 +    ]
    1.33 +
    1.34 +LOCAL_INCLUDES += [
    1.35 +    '../src',
    1.36 +]
    1.37 +
    1.38 +FAIL_ON_WARNINGS = True

mercurial