We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8c4926 commit fdc375dCopy full SHA for fdc375d
test/orfs/mock-array/path_groups.tcl
@@ -10,7 +10,11 @@ if { [llength [find_timing_paths -from $from -to $to]] == 0 } {
10
exit 1
11
}
12
puts "Checking if we can create a group_path from $from to $to"
13
-group_path -name test_group -from $from -to $to
+
14
+# There is no guarantee that the first node in the
15
+# tcl path structure is an exception start point, so use -through
16
+# to ensure we capture a valid path for our testing purposes.
17
+group_path -name test_group -through $from -to $to
18
if { [llength [find_timing_paths -path_group test_group]] == 0 } {
19
puts "Error: find_timing_paths -path_group test_group failed"
20
0 commit comments