2008-09-09 20:08:45 +00:00
|
|
|
# Copyright 2008 the V8 project authors. All rights reserved.
|
2008-08-22 13:33:59 +00:00
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are
|
|
|
|
# met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above
|
|
|
|
# copyright notice, this list of conditions and the following
|
|
|
|
# disclaimer in the documentation and/or other materials provided
|
|
|
|
# with the distribution.
|
|
|
|
# * Neither the name of Google Inc. nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
import sys
|
|
|
|
from os.path import join, dirname, abspath
|
|
|
|
root_dir = dirname(File('SConstruct').rfile().abspath)
|
|
|
|
sys.path.append(join(root_dir, 'tools'))
|
|
|
|
Import('context object_files')
|
|
|
|
|
|
|
|
|
|
|
|
SOURCES = {
|
|
|
|
'all': [
|
2010-05-05 13:51:27 +00:00
|
|
|
'gay-fixed.cc',
|
2010-03-19 12:15:24 +00:00
|
|
|
'gay-shortest.cc',
|
2009-11-04 08:51:48 +00:00
|
|
|
'test-accessors.cc',
|
2009-03-05 09:39:19 +00:00
|
|
|
'test-alloc.cc',
|
|
|
|
'test-api.cc',
|
|
|
|
'test-ast.cc',
|
2010-03-17 13:15:42 +00:00
|
|
|
'test-circular-queue.cc',
|
2009-03-05 09:39:19 +00:00
|
|
|
'test-compiler.cc',
|
|
|
|
'test-conversions.cc',
|
2010-03-19 13:51:01 +00:00
|
|
|
'test-cpu-profiler.cc',
|
2010-03-02 10:43:46 +00:00
|
|
|
'test-dataflow.cc',
|
2009-03-05 09:39:19 +00:00
|
|
|
'test-debug.cc',
|
|
|
|
'test-decls.cc',
|
2010-03-19 12:15:24 +00:00
|
|
|
'test-diy-fp.cc',
|
2010-03-11 14:49:35 +00:00
|
|
|
'test-double.cc',
|
2010-03-18 13:19:59 +00:00
|
|
|
'test-fast-dtoa.cc',
|
2010-05-05 13:51:27 +00:00
|
|
|
'test-fixed-dtoa.cc',
|
2009-03-05 09:39:19 +00:00
|
|
|
'test-flags.cc',
|
2009-04-14 00:51:59 +00:00
|
|
|
'test-func-name-inference.cc',
|
2009-03-05 09:39:19 +00:00
|
|
|
'test-hashmap.cc',
|
|
|
|
'test-heap.cc',
|
2009-09-16 13:41:24 +00:00
|
|
|
'test-heap-profiler.cc',
|
2009-03-05 09:39:19 +00:00
|
|
|
'test-list.cc',
|
2010-04-19 16:08:26 +00:00
|
|
|
'test-liveedit.cc',
|
2009-03-05 09:39:19 +00:00
|
|
|
'test-lock.cc',
|
2009-05-05 15:57:47 +00:00
|
|
|
'test-log.cc',
|
2009-05-28 07:08:09 +00:00
|
|
|
'test-log-utils.cc',
|
2009-03-05 09:39:19 +00:00
|
|
|
'test-mark-compact.cc',
|
2009-11-05 10:11:38 +00:00
|
|
|
'test-parsing.cc',
|
2010-03-15 14:11:19 +00:00
|
|
|
'test-profile-generator.cc',
|
2009-03-05 09:39:19 +00:00
|
|
|
'test-regexp.cc',
|
|
|
|
'test-serialize.cc',
|
|
|
|
'test-sockets.cc',
|
|
|
|
'test-spaces.cc',
|
|
|
|
'test-strings.cc',
|
2009-08-19 15:14:11 +00:00
|
|
|
'test-thread-termination.cc',
|
2010-06-29 13:48:20 +00:00
|
|
|
'test-threads.cc',
|
|
|
|
'test-type-info.cc',
|
2010-05-22 05:27:19 +00:00
|
|
|
'test-unbound-queue.cc',
|
2009-04-30 09:29:15 +00:00
|
|
|
'test-utils.cc',
|
|
|
|
'test-version.cc'
|
2008-08-22 13:33:59 +00:00
|
|
|
],
|
2010-02-04 09:11:43 +00:00
|
|
|
'arch:arm': [
|
|
|
|
'test-assembler-arm.cc',
|
|
|
|
'test-disasm-arm.cc'
|
|
|
|
],
|
2009-03-05 09:39:19 +00:00
|
|
|
'arch:ia32': [
|
|
|
|
'test-assembler-ia32.cc',
|
|
|
|
'test-disasm-ia32.cc',
|
2009-07-31 11:07:05 +00:00
|
|
|
'test-log-stack-tracer.cc'
|
2009-03-05 09:39:19 +00:00
|
|
|
],
|
2009-10-08 12:36:12 +00:00
|
|
|
'arch:x64': ['test-assembler-x64.cc',
|
|
|
|
'test-macro-assembler-x64.cc',
|
|
|
|
'test-log-stack-tracer.cc'],
|
2010-03-23 15:04:45 +00:00
|
|
|
'arch:mips': ['test-assembler-mips.cc', 'test-mips.cc'],
|
2008-08-22 13:33:59 +00:00
|
|
|
'os:linux': ['test-platform-linux.cc'],
|
|
|
|
'os:macos': ['test-platform-macos.cc'],
|
|
|
|
'os:nullos': ['test-platform-nullos.cc'],
|
|
|
|
'os:win32': ['test-platform-win32.cc']
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def Build():
|
|
|
|
cctest_files = context.GetRelevantSources(SOURCES)
|
|
|
|
env = Environment()
|
|
|
|
env.Replace(**context.flags['cctest'])
|
2008-09-05 10:00:50 +00:00
|
|
|
context.ApplyEnvOverrides(env)
|
2008-08-22 13:33:59 +00:00
|
|
|
# There seems to be a glitch in the way scons decides where to put
|
|
|
|
# PDB files when compiling using MSVC so we specify it manually.
|
|
|
|
# This should not affect any other platforms.
|
|
|
|
return env.Program('cctest', ['cctest.cc', cctest_files, object_files],
|
|
|
|
PDB='cctest.exe.pdb')
|
|
|
|
|
|
|
|
|
|
|
|
program = Build()
|
|
|
|
Return('program')
|