~m-robinson/maus/evtvwr

« back to all changes in this revision

Viewing changes to site_scons/site_tools/qt4/test/moc/cpppath/specific/sconstest-specific-fails.py

  • Committer: Matt Robinson
  • Date: 2011-10-03 15:42:53 UTC
  • Revision ID: m.robinson@sheffield.ac.uk-20111003154253-n37l8x8970io32hm
for some reason I forgot to add these to bzr.
They allow building against qt4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
#
 
3
# Copyright (c) 2001-2010 The SCons Foundation
 
4
#
 
5
# Permission is hereby granted, free of charge, to any person obtaining
 
6
# a copy of this software and associated documentation files (the
 
7
# "Software"), to deal in the Software without restriction, including
 
8
# without limitation the rights to use, copy, modify, merge, publish,
 
9
# distribute, sublicense, and/or sell copies of the Software, and to
 
10
# permit persons to whom the Software is furnished to do so, subject to
 
11
# the following conditions:
 
12
#
 
13
# The above copyright notice and this permission notice shall be included
 
14
# in all copies or substantial portions of the Software.
 
15
#
 
16
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
 
17
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
 
18
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
19
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
20
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
21
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
22
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
23
#
 
24
 
 
25
"""
 
26
Explicitly sets the path list to scan for mocable files,
 
27
but to a wrong folder.
 
28
Although the correct CPPPATH is used, this lets the test
 
29
fail...and proves that the option QT4_AUTOMOC_CPPPATH
 
30
really has an effect.
 
31
"""
 
32
 
 
33
import TestSCons
 
34
 
 
35
test = TestSCons.TestSCons()
 
36
test.dir_fixture('image')
 
37
test.file_fixture('SConscript-fails','SConscript')
 
38
test.file_fixture('../../../qtenv.py')
 
39
test.file_fixture('../../../../__init__.py','site_scons/site_tools/qt4/__init__.py')
 
40
 
 
41
test.run(status=2, stderr=None)
 
42
 
 
43
test.pass_test()
 
44
 
 
45
# Local Variables:
 
46
# tab-width:4
 
47
# indent-tabs-mode:nil
 
48
# End:
 
49
# vim: set expandtab tabstop=4 shiftwidth=4: