mirror of https://codeberg.org/topola/topola.git
fix(cli,tests): set routed_band_width to 100.0 where I forgot
This was making the CLI build and tests fail because my second previous
commit was botched.
For future reference, I fixed the *.cmd files by running the following
in Fish shell:
```
for f in tests/**.cmd
jq ".done?.[].Autoroute[1].router_options.routed_band_width |= 100.0" $f | sponge $f
end
```
This commit is contained in:
parent
7d75f918e7
commit
2ef645bbaf
|
|
@ -34,6 +34,7 @@ fn main() -> Result<(), std::io::Error> {
|
|||
router_options: RouterOptions {
|
||||
wrap_around_bands: true,
|
||||
squeeze_through_under_bands: false,
|
||||
routed_band_width: 100.0,
|
||||
},
|
||||
},
|
||||
));
|
||||
|
|
|
|||
|
|
@ -18,7 +18,8 @@
|
|||
"presort_by_pairwise_detours": false,
|
||||
"router_options": {
|
||||
"wrap_around_bands": true,
|
||||
"squeeze_through_under_bands": true
|
||||
"squeeze_through_under_bands": true,
|
||||
"routed_band_width": 100.0
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
@ -41,7 +42,8 @@
|
|||
"presort_by_pairwise_detours": false,
|
||||
"router_options": {
|
||||
"wrap_around_bands": true,
|
||||
"squeeze_through_under_bands": true
|
||||
"squeeze_through_under_bands": true,
|
||||
"routed_band_width": 100.0
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -54,7 +54,8 @@
|
|||
"presort_by_pairwise_detours": false,
|
||||
"router_options": {
|
||||
"wrap_around_bands": true,
|
||||
"squeeze_through_under_bands": true
|
||||
"squeeze_through_under_bands": true,
|
||||
"routed_band_width": 100.0
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
@ -113,7 +114,8 @@
|
|||
"presort_by_pairwise_detours": false,
|
||||
"router_options": {
|
||||
"wrap_around_bands": true,
|
||||
"squeeze_through_under_bands": true
|
||||
"squeeze_through_under_bands": true,
|
||||
"routed_band_width": 100.0
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
@ -172,7 +174,8 @@
|
|||
"presort_by_pairwise_detours": false,
|
||||
"router_options": {
|
||||
"wrap_around_bands": true,
|
||||
"squeeze_through_under_bands": true
|
||||
"squeeze_through_under_bands": true,
|
||||
"routed_band_width": 100.0
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
@ -231,7 +234,8 @@
|
|||
"presort_by_pairwise_detours": false,
|
||||
"router_options": {
|
||||
"wrap_around_bands": true,
|
||||
"squeeze_through_under_bands": true
|
||||
"squeeze_through_under_bands": true,
|
||||
"routed_band_width": 100.0
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -34,7 +34,8 @@
|
|||
"presort_by_pairwise_detours": false,
|
||||
"router_options": {
|
||||
"wrap_around_bands": true,
|
||||
"squeeze_through_under_bands": true
|
||||
"squeeze_through_under_bands": true,
|
||||
"routed_band_width": 100.0
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -54,7 +54,8 @@
|
|||
"presort_by_pairwise_detours": false,
|
||||
"router_options": {
|
||||
"wrap_around_bands": true,
|
||||
"squeeze_through_under_bands": true
|
||||
"squeeze_through_under_bands": true,
|
||||
"routed_band_width": 100.0
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
@ -77,7 +78,8 @@
|
|||
"presort_by_pairwise_detours": false,
|
||||
"router_options": {
|
||||
"wrap_around_bands": true,
|
||||
"squeeze_through_under_bands": true
|
||||
"squeeze_through_under_bands": true,
|
||||
"routed_band_width": 100.0
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in New Issue