| 1 |
schorsch |
1.1 |
# -*- coding: latin-1 -*-
|
| 2 |
schorsch |
1.3 |
from __future__ import division, print_function, unicode_literals
|
| 3 |
|
|
|
| 4 |
schorsch |
1.1 |
import os
|
| 5 |
|
|
import sys
|
| 6 |
schorsch |
1.3 |
|
| 7 |
|
|
import run_tests
|
| 8 |
schorsch |
1.1 |
|
| 9 |
|
|
Import('env')
|
| 10 |
|
|
|
| 11 |
schorsch |
1.4 |
def do_run_tests(target=None,source=None,env=None):
|
| 12 |
schorsch |
1.3 |
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 |
schorsch |
1.1 |
|
| 16 |
schorsch |
1.4 |
env.Command(None,'run_tests.py',action=Action(do_run_tests))
|