Flow generation option that will create separate flow files per sub-flow?

39 views Asked by At

I use sub-flows extensively and would like to have an option to generate a separate ATE flow file per sub-flow (e.g. on V93K a separate .tf file). Is this possible? Perhaps something like this, wih the default being the current behavior:

import :my_subflow, generate_standalone: true

The reason this is valuable is that we use a test program assembler that can merge multiple flow files together given a sequence of flow files. This saves on test program load time for debug sessions.

thx

1

There are 1 answers

2
Ginty On BEST ANSWER

There is no switch like that currently, but note that you can generate sub-flows directly:

origen p program/_my_subflow.rb

The leading "_" in the name means that they will be not be generated as standalone flows if you point the program generator to the directory (origen p program/), but if you explicitly ask it to generate that file then it will.