summaryrefslogtreecommitdiffstats
path: root/test/option-v.py
blob: ae682364cee6631eca364978962c56fc01fee840 (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
#!/usr/bin/env python

__revision__ = "test/option-v.py __REVISION__ __DATE__ __DEVELOPER__"

import TestSCons
import string
import sys

test = TestSCons.TestSCons()

test.write('SConstruct', "")

test.run(arguments = '-v')

expect = r"""SCons version \S+, by Steven Knight et al.
Copyright 2001 Steven Knight
"""

test.fail_test(not test.match_re(test.stdout(), expect))
test.fail_test(test.stderr() != "")

test.run(arguments = '--version')

test.fail_test(not test.match_re(test.stdout(), expect))
test.fail_test(test.stderr() != "")

test.pass_test()