ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/test/SConscript
(Generate patch)

Comparing ray/test/SConscript (file contents):
Revision 1.4 by schorsch, Mon Mar 28 17:56:34 2016 UTC vs.
Revision 1.5 by schorsch, Mon Jan 8 13:38:37 2018 UTC

# Line 1 | Line 1
1 # -*- coding: latin-1 -*-
1   from __future__ import division, print_function, unicode_literals
2  
3   import os
# Line 10 | Line 9 | Import('env')
9  
10   def do_run_tests(target=None,source=None,env=None):
11          bindir = Dir(env['RAD_BUILDBIN']).get_abspath()
12 <        radlib = Dir(env['RAD_BUILDRLIB']).get_abspath()
13 <        run_tests.RadianceTests(bindir=[bindir], radlib=[radlib], V=True)
12 >        radlib = [Dir(env['RAD_BUILDRLIB']).get_abspath(),
13 >                Dir('#/src/gen').get_abspath(),
14 >                Dir('#/src/rt').get_abspath(),
15 >        ]
16 >        run_tests.RadianceTests(bindir=[bindir], radlib=radlib, V=True)
17  
18   env.Command(None,'run_tests.py',action=Action(do_run_tests))
19 +
20 + # vim: set syntax=python:
21 + # vi: set ts=4 sw=4 :
22 +

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines