1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-14 19:24:43 +03:00
Andrew Tridgell 9b86339869 the vluke program now takes a structure name on the command line
(This used to be commit 6a3e7ba4f0716eb414daba4ab8aae974db4deba0)
2000-05-16 15:03:48 +00:00

18 lines
307 B
Awk

function produce_harness(f,
LOCAL, v, struct_num, i)
{
struct_num=structs[test];
v["MODULE"]=module;
print_template(f, "harness_start.tpl", v);
for (i=0;i<num_structs;i++) {
v["TEST"] = structs[i, "name"];
print_template(f, "harness.tpl", v);
}
print_template(f, "harness_end.tpl", v);
}