From d93d431fdb9264cf96561adfcb4e9527ce04c6b0 Mon Sep 17 00:00:00 2001
From: bdr7fv <bdr7fv@git.zephyr-software.com>
Date: Thu, 4 Apr 2013 01:55:38 +0000
Subject: [PATCH] do_p1transform.sh: Accidentally had the p1_threshold set at 0
 after the last commit. Changing back to .5

Former-commit-id: cdf941de1431b4e2ce9904c9093d9b768c7b9bd9
---
 tools/do_p1transform.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/do_p1transform.sh b/tools/do_p1transform.sh
index 9f48f4b21..9b0aa4313 100755
--- a/tools/do_p1transform.sh
+++ b/tools/do_p1transform.sh
@@ -31,7 +31,7 @@ EXECUTED_ADDRESSES_FINAL=final.coverage.txt
 LIBC_FILTER=$PEASOUP_HOME/tools/libc_functions.txt
 BLACK_LIST=$P1_DIR/p1.filtered_out        # list of functions to blacklist
 COVERAGE_FILE=$P1_DIR/p1.coverage
-P1THRESHOLD=0.0
+P1THRESHOLD=0.5
 
 
 PN_BINARY=$SECURITY_TRANSFORMS_HOME/tools/transforms/p1transform.exe
@@ -227,6 +227,6 @@ touch $COVERAGE_FILE
 
 #execute_pn $CLONE_ID $BED_SCRIPT $LIBC_FILTER $COVERAGE_FILE $P1THRESHOLD $DO_CANARIES
 
-echo "$PN_BINARY --variant_id=$CLONE_ID --bed_script=$BED_SCRIPT --coverage_file=$COVERAGE_FILE --pn_threshold=$P1THRESHOLD --canaries=$DO_CANARIES --blacklist=$LIBC_FILTER"
+echo "$PN_BINARY --variant_id=$CLONE_ID --bed_script=$BED_SCRIPT --coverage_file=$COVERAGE_FILE --pn_threshold=$P1THRESHOLD --canaries=$DO_CANARIES --blacklist=$LIBC_FILTER --no_p1_validate"
 
 $PN_BINARY --variant_id=$CLONE_ID --bed_script=$BED_SCRIPT --coverage_file=$COVERAGE_FILE --pn_threshold=$P1THRESHOLD --canaries=$DO_CANARIES --blacklist=$LIBC_FILTER --no_p1_validate
-- 
GitLab