| Revision: | 1.4 |
| Committed: | Mon Mar 28 17:56:34 2016 UTC (9 years, 7 months ago) by schorsch |
| Branch: | MAIN |
| CVS Tags: | rad5R1 |
| Changes since 1.3: | +2 -2 lines |
| Log Message: | name conflict |
| # | Content |
|---|---|
| 1 | # -*- coding: latin-1 -*- |
| 2 | from __future__ import division, print_function, unicode_literals |
| 3 | |
| 4 | import os |
| 5 | import sys |
| 6 | |
| 7 | import run_tests |
| 8 | |
| 9 | Import('env') |
| 10 | |
| 11 | def do_run_tests(target=None,source=None,env=None): |
| 12 | bindir = Dir(env['RAD_BUILDBIN']).get_abspath() |
| 13 | radlib = Dir(env['RAD_BUILDRLIB']).get_abspath() |
| 14 | run_tests.RadianceTests(bindir=[bindir], radlib=[radlib], V=True) |
| 15 | |
| 16 | env.Command(None,'run_tests.py',action=Action(do_run_tests)) |