rchitect-of-info
rchitect-of-info

Reputation: 1596

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

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

Upvotes: 1

Views: 39

Answers (1)

Ginty
Ginty

Reputation: 3501

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.

Upvotes: 1

Related Questions