2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 01:20:02 +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/.
|
|
|
|
|
2014-07-29 03:55:55 +04:00
|
|
|
TEST_DIRS += [
|
2013-02-26 01:20:02 +04:00
|
|
|
'external',
|
|
|
|
'component',
|
|
|
|
'bug656331_component',
|
|
|
|
'component_no_aslr',
|
2014-12-12 22:12:27 +03:00
|
|
|
'gtest',
|
2013-02-26 01:20:02 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
2014-07-29 03:55:55 +04:00
|
|
|
TEST_DIRS += ['windows']
|
2013-02-26 01:20:02 +04:00
|
|
|
|
2013-07-10 13:55:34 +04:00
|
|
|
EXPORTS.testing += [
|
|
|
|
'TestHarness.h',
|
|
|
|
]
|
|
|
|
|
2014-09-03 09:10:54 +04:00
|
|
|
SimplePrograms([
|
2013-10-24 03:05:43 +04:00
|
|
|
'nsIFileEnumerator',
|
2013-08-14 11:00:13 +04:00
|
|
|
'TestArguments',
|
|
|
|
'TestBlockingProcess',
|
|
|
|
'TestCallTemplates',
|
|
|
|
'TestINIParser',
|
|
|
|
'TestPRIntN',
|
|
|
|
'TestQuickReturn',
|
|
|
|
'TestRacingServiceManager',
|
|
|
|
'TestRegistrationOrder',
|
|
|
|
'TestThreadPoolListener',
|
|
|
|
'TestTimers',
|
|
|
|
'TestUnicodeArguments',
|
2014-09-03 09:10:54 +04:00
|
|
|
])
|
2013-08-14 11:00:13 +04:00
|
|
|
|
2013-04-24 01:54:15 +04:00
|
|
|
if CONFIG['OS_TARGET'] == 'WINNT':
|
2014-10-30 07:06:12 +03:00
|
|
|
GeckoSimplePrograms([
|
2013-08-14 11:00:13 +04:00
|
|
|
'TestBase64',
|
2014-09-03 09:10:54 +04:00
|
|
|
])
|
2013-04-24 01:54:15 +04:00
|
|
|
|
2014-07-03 19:56:16 +04:00
|
|
|
if CONFIG['WRAP_STL_INCLUDES'] and not CONFIG['CLANG_CL']:
|
2014-10-30 07:06:12 +03:00
|
|
|
GeckoSimplePrograms([
|
2013-08-14 11:00:13 +04:00
|
|
|
'TestSTLWrappers',
|
2014-09-03 09:10:54 +04:00
|
|
|
])
|
2013-04-24 01:54:15 +04:00
|
|
|
|
2013-04-29 22:49:00 +04:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['unit/xpcshell.ini']
|
2013-04-24 01:54:15 +04:00
|
|
|
|
2014-10-30 07:06:12 +03:00
|
|
|
GeckoCppUnitTests([
|
2014-07-23 08:29:44 +04:00
|
|
|
'ShowAlignments',
|
|
|
|
'TestAutoPtr',
|
|
|
|
'TestAutoRef',
|
|
|
|
'TestCOMArray',
|
|
|
|
'TestCOMPtr',
|
|
|
|
'TestCOMPtrEq',
|
|
|
|
'TestFile',
|
|
|
|
'TestHashtables',
|
|
|
|
'TestID',
|
2014-07-30 17:59:32 +04:00
|
|
|
'TestNsRefPtr',
|
2014-07-23 08:29:44 +04:00
|
|
|
'TestObserverArray',
|
|
|
|
'TestObserverService',
|
|
|
|
'TestPipe',
|
|
|
|
'TestStringAPI',
|
|
|
|
'TestTArray',
|
|
|
|
'TestTextFormatter',
|
|
|
|
'TestThreadUtils'
|
2014-09-03 09:10:54 +04:00
|
|
|
])
|
2013-07-24 11:23:06 +04:00
|
|
|
|
|
|
|
if CONFIG['MOZ_MEMORY']:
|
2014-10-30 07:06:12 +03:00
|
|
|
GeckoCppUnitTests([
|
2014-07-23 08:29:44 +04:00
|
|
|
'TestJemalloc',
|
2014-09-03 09:10:54 +04:00
|
|
|
])
|
2013-07-24 11:23:06 +04:00
|
|
|
|
|
|
|
# FIXME: bug 577500 TestStaticAtoms fails when run in dist/bin
|
|
|
|
#CPP_UNIT_TESTS += [
|
2014-07-23 08:29:44 +04:00
|
|
|
# 'TestStaticAtoms',
|
2013-07-24 11:23:06 +04:00
|
|
|
#]
|
|
|
|
|
2014-08-05 03:16:20 +04:00
|
|
|
if CONFIG['MOZ_DEBUG'] and CONFIG['OS_ARCH'] not in ('WINNT'):
|
2013-07-24 11:23:06 +04:00
|
|
|
# FIXME bug 523392: TestDeadlockDetector 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
|
|
|
'TestDeadlockDetector',
|
|
|
|
'TestDeadlockDetectorScalability',
|
2014-09-03 09:10:54 +04:00
|
|
|
])
|
2013-07-24 11:23:06 +04:00
|
|
|
|
2016-04-18 17:36:07 +03:00
|
|
|
TEST_HARNESS_FILES.xpcshell.xpcom.tests.unit += [
|
|
|
|
'!/dist/bin/components/xpcomtest.xpt',
|
|
|
|
]
|
|
|
|
|
2014-09-22 23:10:31 +04:00
|
|
|
XPIDL_MODULE = 'xpcomtest'
|
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'NotXPCOMTest.idl',
|
|
|
|
]
|
|
|
|
|
2015-02-13 16:11:57 +03:00
|
|
|
# Don't add our test-only .xpt files to the normal manifests
|
|
|
|
XPIDL_NO_MANIFEST = True
|
|
|
|
|
2013-12-31 13:06:11 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../ds',
|
|
|
|
]
|
|
|
|
|
2013-11-05 22:37:54 +04:00
|
|
|
RESOURCE_FILES += [
|
|
|
|
'test.properties',
|
|
|
|
]
|