SCons: integrated building vgsuppression into the test SConscript
This commit is contained in:
parent
bb8ad9fbd5
commit
7d19d19549
2 changed files with 4 additions and 14 deletions
|
|
@ -63,6 +63,10 @@ artifacts['testsuite'] = ts = ( [ testExecutable(env, dir) for dir in ['lib','co
|
|||
|
||||
|
||||
|
||||
# for creating a Valgrind-Suppression file
|
||||
vgsuppr = env.Program('#$BINDIR/vgsuppression','tool/vgsuppression.c', LIBS=core) ## for suppressing false valgrind alarms
|
||||
artifacts['tools'] += [vgsuppr]
|
||||
Depends(ts,vgsuppr)
|
||||
|
||||
|
||||
#
|
||||
|
|
|
|||
|
|
@ -1,14 +0,0 @@
|
|||
# -*- python -*-
|
||||
##
|
||||
## SConscript - SCons buildscript for tool subdirectory (called by SConstruct)
|
||||
##
|
||||
|
||||
Import('env','envGtk','artifacts','core')
|
||||
|
||||
support_lib = artifacts['support']
|
||||
|
||||
vgsuppr = env.Program('#$BINDIR/vgsuppression','vgsuppression.c', LIBS=core) ## for suppressing false valgrind alarms
|
||||
|
||||
# build additional test
|
||||
artifacts['tools'] = [vgsuppr]
|
||||
|
||||
Loading…
Reference in a new issue