我似乎无法从文档http://origen-sdk.org/origen/guides/program/flowapi/中找到答案
从 SmartTest 7.1.3 及更高版本的 Advantest 开始,我们可以选择设置 Group 节点测试流组件的“Group Bypass”属性。
{
run_and_branch(TestA)
then
{
}
else
{
if @Alarm then
{
binout;
}
else
{
}
}
run_and_branch(TestB)
then
{
}
else
{
if @Alarm then
{
binout;
}
else
{
}
}
}, groupbypass, open,"DataCollectionTests", ""
我尝试在我的组定义中使用 if_flag:、continue: 和 if_enable 属性,但我得到了一个
if @GROUPBYPASS == 1 then
{
.
.
.
}, open,"DataCollectionTests", ""
而是在流程中。连接到这个属性的正确方法是什么?