2020-07-27 18:05:46 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
start_section "OpenFPGA.TaskTun" "${GREEN}..Running_Regression..${NC}"
|
|
|
|
cd ${TRAVIS_BUILD_DIR}
|
|
|
|
|
|
|
|
###############################################
|
|
|
|
# OpenFPGA Shell with VPR8
|
|
|
|
##############################################
|
|
|
|
echo -e "FPGA-Bitstream regression tests";
|
|
|
|
|
2020-07-28 13:41:58 -05:00
|
|
|
echo -e "Testing bitstream generation for an auto-sized device";
|
2020-07-28 13:38:42 -05:00
|
|
|
python3 openfpga_flow/scripts/run_fpga_task.py fpga_bitstream/generate_bitstream/device_auto --debug --show_thread_logs
|
2020-07-27 18:05:46 -05:00
|
|
|
|
2020-07-28 13:41:58 -05:00
|
|
|
|
|
|
|
echo -e "Testing bitstream generation for an 48x48 FPGA device";
|
|
|
|
python3 openfpga_flow/scripts/run_fpga_task.py fpga_bitstream/generate_bitstream/device_48x48 --debug --show_thread_logs
|
|
|
|
|
|
|
|
echo -e "Testing bitstream generation for an 96x96 FPGA device";
|
|
|
|
python3 openfpga_flow/scripts/run_fpga_task.py fpga_bitstream/generate_bitstream/device_96x96 --debug --show_thread_logs
|
|
|
|
|
2020-07-27 20:39:14 -05:00
|
|
|
echo -e "Testing loading architecture bitstream from an external file";
|
|
|
|
python3 openfpga_flow/scripts/run_fpga_task.py fpga_bitstream/load_external_architecture_bitstream --debug --show_thread_logs
|
|
|
|
|
2020-07-27 18:05:46 -05:00
|
|
|
end_section "OpenFPGA.TaskTun"
|