Skip to content

Commit a11e12c

Browse files
committed
test: deltaDebug now uses results/delta_debug/ folder
this is covered by .gitignore The output is on the order of e.g. results/asap7/mock-array/ as it is a compressed version of that data with "make issue" $ du -hs results/delta-debug/ 110M results/delta-debug/ Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 3392bd1 commit a11e12c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

flow/test/test_delta_debug.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ make DESIGN_CONFIG=designs/asap7/$testname/config.mk global_place_issue
1313
latest_file=$(ls -t global_place_${testname}_asap7_base*.tar.gz | head -n1)
1414
echo "Testing $latest_file"
1515
. ../env.sh
16-
rm -rf test_delta_debug
17-
mkdir test_delta_debug
18-
cd test_delta_debug
19-
tar --strip-components=1 -xzf ../$latest_file
16+
rm -rf results/delta-debug/
17+
mkdir -p results/delta-debug/
18+
cd results/delta-debug/
19+
tar --strip-components=1 -xzf ../../$latest_file
2020
sed -i 's/openroad -no_init/openroad -exit -no_init/g' run-me-$testname-asap7-base.sh
21-
openroad -exit -python ../../tools/OpenROAD/etc/deltaDebug.py --persistence 3 --use_stdout --error_string "Iter: 100 " --base_db_path results/asap7/$testname/base/3_2_place_iop.odb --step ./run-me-$testname-asap7-base.sh --multiplier 2
21+
openroad -exit -python ../../../tools/OpenROAD/etc/deltaDebug.py --persistence 3 --use_stdout --error_string "Iter: 100 " --base_db_path results/asap7/$testname/base/3_2_place_iop.odb --step ./run-me-$testname-asap7-base.sh --multiplier 2

0 commit comments

Comments
 (0)