From 19f2bf9b38dc2dbc047d430c43dcb94aaf6a5be6 Mon Sep 17 00:00:00 2001 From: tangxifan Date: Wed, 4 Nov 2020 16:35:51 -0700 Subject: [PATCH] [Test] deploy new test cases to CI --- .travis/basic_reg_test.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.travis/basic_reg_test.sh b/.travis/basic_reg_test.sh index eac3b3e48..f0782fec6 100755 --- a/.travis/basic_reg_test.sh +++ b/.travis/basic_reg_test.sh @@ -98,4 +98,12 @@ python3 openfpga_flow/scripts/run_fpga_task.py basic_tests/k4_series/k4n4_frac_m echo -e "Testing K4N5 with pattern based local routing"; python3 openfpga_flow/scripts/run_fpga_task.py basic_tests/k4_series/k4n5_pattern_local_routing --debug --show_thread_logs +echo -e "Testing different tile organizations"; +echo -e "Testing tiles with pins only on top and left sides"; +python3 openfpga_flow/scripts/run_fpga_task.py basic_tests/tile_organization/top_left_custom_pins --debug --show_thread_logs +echo -e "Testing tiles with pins only on top and right sides"; +python3 openfpga_flow/scripts/run_fpga_task.py basic_tests/tile_organization/top_right_custom_pins --debug --show_thread_logs +echo -e "Testing tiles with pins only on bottom and right sides"; +python3 openfpga_flow/scripts/run_fpga_task.py basic_tests/tile_organization/bottom_right_custom_pins --debug --show_thread_logs + end_section "OpenFPGA.TaskTun"