Skip to content
Snippets Groups Projects
Commit 8e082c32 authored by Clark Coleman's avatar Clark Coleman
Browse files

Stop running STARS baseline on test binaries, to prepare for removing the test...

Stop running STARS baseline on test binaries, to prepare for removing the test binaries from the repo.
parent 6951453a
No related branches found
No related tags found
No related merge requests found
...@@ -152,11 +152,15 @@ if int(argenv['build_ida']) == 1 or int(argenv['build_ida7']) == 1: ...@@ -152,11 +152,15 @@ if int(argenv['build_ida']) == 1 or int(argenv['build_ida7']) == 1:
print "Build IDA 7.0+ Plugin" print "Build IDA 7.0+ Plugin"
idalib=SConscript('SConscript.ida7', variant_dir='build_ida') idalib=SConscript('SConscript.ida7', variant_dir='build_ida')
print "Done build IDA Plugin" print "Done build IDA Plugin"
test=argenv.Command(target="./test.log", source=idalib, action="IDAROOT=$IDAROOT SMPSA_HOME=$SMPSA_HOME $SMPSA_HOME/tests/scripts/make_baseline.sh 2>&1 |tee ./test.log")
argenv.Depends(test,idalib) # Prepare to remove test binaries from repo by not running STARS on them
ab=argenv.AlwaysBuild(test) # test=argenv.Command(target="./test.log", source=idalib, action="IDAROOT=$IDAROOT SMPSA_HOME=$SMPSA_HOME $SMPSA_HOME/tests/scripts/make_baseline.sh 2>&1 |tee ./test.log")
argenv.Default(ab) # argenv.Depends(test,idalib)
installers=installers+ab # ab=argenv.AlwaysBuild(test)
# argenv.Default(ab)
# installers=installers+ab
Default(idalib) Default(idalib)
argenv.Depends(idalib, libehp) argenv.Depends(idalib, libehp)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment