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: CPP_UNIT_TESTS += [ michael@0: 'TestAtomics.cpp', michael@0: 'TestBinarySearch.cpp', michael@0: 'TestBloomFilter.cpp', michael@0: 'TestCasting.cpp', michael@0: 'TestCeilingFloor.cpp', michael@0: 'TestCheckedInt.cpp', michael@0: 'TestCountPopulation.cpp', michael@0: 'TestCountZeroes.cpp', michael@0: 'TestEndian.cpp', michael@0: 'TestEnumSet.cpp', michael@0: 'TestFloatingPoint.cpp', michael@0: 'TestIntegerPrintfMacros.cpp', michael@0: 'TestMacroArgs.cpp', michael@0: 'TestMacroForEach.cpp', michael@0: 'TestRollingMean.cpp', michael@0: 'TestSHA1.cpp', michael@0: 'TestTypedEnum.cpp', michael@0: 'TestTypeTraits.cpp', michael@0: 'TestWeakPtr.cpp', michael@0: ] michael@0: michael@0: if not CONFIG['MOZ_ASAN']: michael@0: CPP_UNIT_TESTS += [ michael@0: 'TestPoisonArea.cpp', michael@0: ] michael@0: michael@0: # Since we link directly with MFBT object files, define IMPL_MFBT michael@0: DEFINES['IMPL_MFBT'] = True michael@0: michael@0: DISABLE_STL_WRAPPING = True