Fix a small typo in a comment and pretty it up a bit.
[Samba/gebeck_regimport.git] / source3 / aparser / harness.awk
blob6c4c35c40f291607fa6fbc06bad9d2df009cc668
1 function produce_harness(f,
2 LOCAL, v, struct_num, i)
4 struct_num=structs[test];
6 v["MODULE"]=module;
8 print_template(f, "harness_start.tpl", v);
10 for (i=0;i<num_structs;i++) {
11 v["TEST"] = structs[i, "name"];
12 print_template(f, "harness.tpl", v);
15 print_template(f, "harness_end.tpl", v);