storage/test/moz.build

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
     2 # vim: set filetype=python:
     3 # This Source Code Form is subject to the terms of the Mozilla Public
     4 # License, v. 2.0. If a copy of the MPL was not distributed with this
     5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
     7 XPCSHELL_TESTS_MANIFESTS += ['unit/xpcshell.ini']
     9 CPP_UNIT_TESTS += [
    10     'test_AsXXX_helpers.cpp',
    11     'test_async_callbacks_with_spun_event_loops.cpp',
    12     'test_asyncStatementExecution_transaction.cpp',
    13     'test_binding_params.cpp',
    14     'test_file_perms.cpp',
    15     'test_mutex.cpp',
    16     'test_service_init_background_thread.cpp',
    17     'test_statement_scoper.cpp',
    18     'test_StatementCache.cpp',
    19     'test_transaction_helper.cpp',
    20     'test_true_async.cpp',
    21     'test_unlock_notify.cpp',
    22 ]
    24 if CONFIG['MOZ_DEBUG'] and CONFIG['OS_ARCH'] not in ('WINNT', 'Darwin'):
    25     # FIXME bug 523392: test_deadlock_detector doesn't like Windows
    26     # FIXME bug 523378: also fails on OS X
    27     CPP_UNIT_TESTS += [
    28         'test_deadlock_detector.cpp',
    29     ]
    31 LOCAL_INCLUDES += [
    32     '../src',
    33 ]
    35 FAIL_ON_WARNINGS = True

mercurial