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-SDC regression tests";
|
|
|
|
|
|
|
|
echo -e "Testing SDC generation with time units";
|
2020-07-27 18:18:59 -05:00
|
|
|
python3 openfpga_flow/scripts/run_fpga_task.py fpga_sdc/sdc_time_unit --debug --show_thread_logs
|
2020-07-27 18:05:46 -05:00
|
|
|
|
|
|
|
end_section "OpenFPGA.TaskTun"
|