diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-02-05 01:55:39 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-02-05 01:55:39 +0100 |
commit | aa9da46807af24d906af371ba9c4ee9b7430f82c (patch) | |
tree | 419341de6dcf24a466a3569cd4c48d4c170c13b4 /tests/i2c_bench/run-test.sh | |
parent | 968ae31cac84816691e8b54c086a9e2b3d470440 (diff) | |
download | yosys-aa9da46807af24d906af371ba9c4ee9b7430f82c.tar.gz yosys-aa9da46807af24d906af371ba9c4ee9b7430f82c.tar.bz2 yosys-aa9da46807af24d906af371ba9c4ee9b7430f82c.zip |
Removed old unused files from tests/
Diffstat (limited to 'tests/i2c_bench/run-test.sh')
-rwxr-xr-x | tests/i2c_bench/run-test.sh | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/tests/i2c_bench/run-test.sh b/tests/i2c_bench/run-test.sh deleted file mode 100755 index 865f9ad38..000000000 --- a/tests/i2c_bench/run-test.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/bash - -set -e -make -C ../.. -../../yosys -l i2c_master_syn.log -o i2c_master_syn.v \ - -p hierarchy -p proc -p memory -p techmap -p opt -p abc -p opt \ - i2c_master_top.v i2c_master_bit_ctrl.v i2c_master_byte_ctrl.v -. /opt/Xilinx/13.4/ISE_DS/settings64.sh - -vlogcomp --work ref i2c_master_bit_ctrl.v -vlogcomp --work ref i2c_master_byte_ctrl.v -vlogcomp --work ref i2c_master_top.v -vlogcomp --work ref i2c_slave_model.v -vlogcomp --work ref spi_slave_model.v -vlogcomp --work ref tst_bench_top.v -vlogcomp --work ref wb_master_model.v -fuse --work ref -o testbench_ref --top tst_bench_top - -cat > testbench_ref.tcl << EOT -vcd dumpfile testbench_ref.vcd -vcd dumpvars -m tst_bench_top -l 0 -vcd dumpon -run 2 ms -exit -EOT - -./testbench_ref -tclbatch testbench_ref.tcl - -vlogcomp --work syn i2c_master_syn.v -vlogcomp --work syn ../../techlibs/common/simlib.v -vlogcomp --work syn ../../techlibs/common/simcells.v -vlogcomp --work syn i2c_slave_model.v -vlogcomp --work syn spi_slave_model.v -vlogcomp --work syn tst_bench_top.v -vlogcomp --work syn wb_master_model.v -fuse --work syn -o testbench_syn --top tst_bench_top - -cat > testbench_syn.tcl << EOT -vcd dumpfile testbench_syn.vcd -vcd dumpvars -m tst_bench_top -l 0 -vcd dumpon -run 2 ms -exit -EOT - -./testbench_syn -tclbatch testbench_syn.tcl - -perl ../tools/vcdcd.pl testbench_ref.vcd testbench_syn.vcd | tee testbench_diff.txt -echo READY. - |