summaryrefslogtreecommitdiffstats
path: root/test/Program.py
blob: 0d760dfd8ebf07eb8db6543ba4e13aeae8f97fd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#!/usr/bin/env python

__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"

import TestSCons
import os.path
import time

#XXX Future:  be able to interpolate

test = TestSCons.TestSCons()

test.write('SConstruct', """
env = Environment()
env.Program(target = 'foo1', source = 'f1.c')
env.Program(target = 'foo2', source = 'f2a.c f2b.c f2c.c')
#XXXenv.Program(target = 'foo3', source = ['f3a.c', 'f3b.c', 'f3c.c'])
""")

test.write('f1.c', """
int
main(int argc, char *argv[])
{
	argv[argc++] = "--";
	printf("f1.c\n");
	exit (0);
}
""")

test.write('f2a.c', """
void
f2a(void)
{
	printf("f2a.c\n");
}
""")

test.write('f2b.c', """
void
f2b(void)
{
	printf("f2b.c\n");
}
""")

test.write('f2c.c', """
extern void f2a(void);
extern void f2b(void);
int
main(int argc, char *argv[])
{
	argv[argc++] = "--";
	f2a();
	f2b();
	printf("f2c.c\n");
	exit (0);
}
""")

test.write('f3a.c', """
void
f3a(void)
{
	printf("f3a.c\n");
}
""")

test.write('f3b.c', """
void
f3b(void)
{
	printf("f3b.c\n");
}
""")

test.write('f3c.c', """
extern void f3a(void);
extern void f3b(void);
int
main(int argc, char *argv[])
{
	argv[argc++] = "--";
	f3a();
	f3b();
	printf("f3c.c\n");
	exit (0);
}
""")

#XXXtest.run(arguments = '.')
test.run(arguments = 'foo1 foo2')

test.run(program = test.workpath('foo1'), stdout = "f1.c\n")
test.run(program = test.workpath('foo2'), stdout = "f2a.c\nf2b.c\nf2c.c\n")
#XXXtest.run(program = test.workpath('foo3'), stdout = "f3a.c\nf3b.c\nf3c.c\n")

#XXXtest.up_to_date(arguments = '.')
test.up_to_date(arguments = 'foo1 foo2')

test.write('f1.c', """
int
main(int argc, char *argv[])
{
	argv[argc++] = "--";
	printf("f1.c X\n");
	exit (0);
}
""")

test.write('f3b.c', """
void
f3b(void)
{
	printf("f3b.c X\n");
}
""")

#XXXtest.run(arguments = '.')
test.run(arguments = 'foo1 foo2')

test.run(program = test.workpath('foo1'), stdout = "f1.c X\n")
test.run(program = test.workpath('foo2'), stdout = "f2a.c\nf2b.c\nf2c.c\n")
#XXXtest.run(program = test.workpath('foo3'), stdout = "f3a.c\nf3b.c X\nf3c.c\n")

#XXXtest.up_to_date(arguments = '.')
test.up_to_date(arguments = 'foo1 foo2')

# make sure the programs don't get rebuilt, because nothing changed:
oldtime1 = os.path.getmtime(test.workpath('foo1'))
oldtime2 = os.path.getmtime(test.workpath('foo2'))
time.sleep(1) # introduce a small delay, to make the test valid
test.run(arguments = 'foo1 foo2')
test.fail_test(not (oldtime1 == os.path.getmtime(test.workpath('foo1'))))
test.fail_test(not (oldtime2 == os.path.getmtime(test.workpath('foo2'))))

test.pass_test()