File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ addons:
39
39
- libxml++2.6-dev
40
40
- perl
41
41
- python
42
+ - python-lxml
42
43
- texinfo
43
44
- time
44
45
- valgrind
@@ -97,26 +98,31 @@ jobs:
97
98
name : " C++ Unit Tests"
98
99
script :
99
100
- ./.github/travis/build.sh
101
+ - ./dev/upgrade_vtr_archs.sh
100
102
- ./.github/travis/unittest.sh
101
103
- stage : Test
102
104
name : " Basic Regression Tests"
103
105
script :
104
106
- ./.github/travis/build.sh
107
+ - ./dev/upgrade_vtr_archs.sh
105
108
- ./run_reg_test.pl vtr_reg_basic -show_failures -j2
106
109
- stage : Test
107
110
name : " Strong Regression Tests"
108
111
script :
109
112
- ./.github/travis/build.sh
113
+ - ./dev/upgrade_vtr_archs.sh
110
114
- travis_wait 30 ./run_reg_test.pl vtr_reg_strong -show_failures -j2
111
115
- stage : Test
112
116
name : " Basic Valgrind Memory Tests"
113
117
script :
114
118
- ./.github/travis/build.sh
119
+ - ./dev/upgrade_vtr_archs.sh
115
120
- ./run_reg_test.pl vtr_reg_valgrind_small -show_failures -j2
116
121
- stage : Test
117
122
name : " ODIN-II Micro Tests"
118
123
script :
119
124
- ./.github/travis/build.sh
125
+ - ./dev/upgrade_vtr_archs.sh
120
126
- ./run_reg_test.pl odin_reg_micro -show_failures -j2
121
127
122
128
- stage : Test
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- find vpr libs/libarchfpga ODIN_II vtr_flow/arch -name ' *.xml' | xargs -n 1 python2 ./vtr_flow/scripts/upgrade_arch.py
3
+ find vpr libs/libarchfpga ODIN_II vtr_flow/arch utils/fasm/test -name ' *.xml' | xargs -n 1 ./vtr_flow/scripts/upgrade_arch.py
Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ def main():
69
69
arch = root_tags [0 ]
70
70
71
71
if arch .tag != "architecture" :
72
- print "Not an architecture file, exiting..."
73
- sys .exit (1 )
72
+ print "Warning! Not an architecture file, exiting..."
73
+ sys .exit (0 )
74
74
75
75
modified = False
76
76
if "add_model_timing" in args .features :
You can’t perform that action at this time.
0 commit comments