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

__revision__ = "test/t0003.py __REVISION__ __DATE__ __DEVELOPER__"

import TestCmd

test = TestCmd.TestCmd(program = 'scons.py',
			workdir = '',
			interpreter = 'python')

test.write('SConstruct1', """
a ! int(2.0)
""")
test.run(chdir = '.', arguments='-f SConstruct1')
test.fail_test(test.stderr() != """  File "SConstruct1", line 2

    a ! int(2.0)

      ^

SyntaxError: invalid syntax

""")


test.write('SConstruct2', """
raise UserError, 'Depends() require both sources and targets.'
""")
test.run(chdir = '.', arguments='-f SConstruct2')
test.fail_test(test.stderr() != """
SCons error: Depends() require both sources and targets.
File "SConstruct2", line 2, in ?
""")


import os
import string
sconspath = os.path.join(os.getcwd(), 'scons.py')

# Since we're using regular expression matches below, escape any
# backslashes that ended up in the path name.  (Hello, Windows!)
sconspath = string.replace(sconspath, '\\', '\\\\')

test.write('SConstruct3', """
raise InternalError, 'error inside'
""")
test.run(chdir = '.', arguments='-f SConstruct3')
expect = r"""Traceback \((most recent call|innermost) last\):
  File "%s", line \d+, in \?
    main\(\)
  File "%s", line \d+, in main
    exec f
  File "SConstruct3", line \d+, in \?
    raise InternalError, 'error inside'
InternalError: error inside
""" % (sconspath, sconspath)
test.fail_test(not test.match_re(test.stderr(), expect))

test.pass_test()