summaryrefslogtreecommitdiff
path: root/test/option-v.py
blob: d674aa4fc5227bc835af19833b562a3b4438b415 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python

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

import TestSCons
import string
import sys

test = TestSCons.TestSCons()

test.write('SConstruct', "")

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

test.run(arguments = '-v', stdout = expect)

test.run(arguments = '--version', stdout = expect)

test.pass_test()