2020-11-24 10:58:23 -06:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
2021-01-26 17:40:45 -06:00
|
|
|
source openfpga.sh
|
|
|
|
PYTHON_EXEC=python3.8
|
2020-11-24 10:58:23 -06:00
|
|
|
###############################################
|
|
|
|
# OpenFPGA Shell with VPR8
|
|
|
|
##############################################
|
|
|
|
echo -e "FPGA-SDC regression tests";
|
|
|
|
|
|
|
|
echo -e "Testing SDC generation with time units";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_sdc/sdc_time_unit --debug --show_thread_logs
|
2021-02-07 23:11:04 -06:00
|
|
|
|
|
|
|
|
|
|
|
# Repgression test to test multi-user enviroment
|
|
|
|
# TODO : While restructuring regression test files
|
|
|
|
# move this to separate file
|
|
|
|
cp -r */*/fpga_sdc/sdc_time_unit /tmp/
|
|
|
|
cd /tmp/ && run-task sdc_time_unit
|