block: don't put spaces around :
[ironout.git] / tests / test-files
blob1728d8bc602ee26f90dc3d81b031727cacee5586
1 : # two separate files
2 ----------------------
3 : write test1.c
4 int var;
5 : write test2.c
6 int var;
7 : ironout find test1.c 4
8 test1.c 4 7
9 : ironout find test2.c 4
10 test2.c 4 7
11 : # using extern
12 ----------------
13 : write test1.c
14 void f()
17 : write test2.c
18 void g()
20         f();
22 : ironout find test1.c 5
23 test1.c 5 6
24 test2.c 12 13
25 : ironout find test2.c 12
26 test1.c 5 6
27 test2.c 12 13