# The project doesn't use SCons natively (yet), so we're
# timing a separate set of SConscript files that we lay
# on top of the vanilla unpacked project tarball.
arguments = ['project-1.2.tgz', 'project-SConscripts.tar']
# The subdirectory name contains the project version number,
# so tell scons-time to chdir there before building.
subdir = 'project-1.2'
# Set the prefix so output log files and profiles are named:
# project-000-[012].{log,prof}
# project-001-[012].{log,prof}
# etc.
prefix = 'project'
# The SConscript files being tested don't do any SConf
# configuration, so run their normal ./configure script
# before we invoke SCons.
initial_commands = [
'./configure',
]
# Only time building the bin/project executable.
targets = 'bin/project'
# Time against SCons revisions of the branches/core branch
subversion_url = '
ENVIRONMENT
The scons-time script uses the following
environment variables:
- PRESERVE
- If this value is set, the scons-time script will
not remove the temporary directory or directories in which
it builds the specified configuration or downloads a specific
version of SCons.
SEE ALSO
gnuplot(1),
scons(1)
AUTHORS
Steven Knight <knight at baldmt dot com>