source: waflib/Tools/waf_unit_test.py @ 50d56cc

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 50d56cc was 0fa325b, checked in by Paul Brossier <piem@piem.org>, 11 years ago

waf: unpack

  • Property mode set to 100644
File size: 3.3 KB
Line 
1#! /usr/bin/env python
2# encoding: utf-8
3# WARNING! Do not edit! http://waf.googlecode.com/git/docs/wafbook/single.html#_obtaining_the_waf_file
4
5import os,sys
6from waflib.TaskGen import feature,after_method
7from waflib import Utils,Task,Logs,Options
8testlock=Utils.threading.Lock()
9@feature('test')
10@after_method('apply_link')
11def make_test(self):
12        if getattr(self,'link_task',None):
13                self.create_task('utest',self.link_task.outputs)
14class utest(Task.Task):
15        color='PINK'
16        after=['vnum','inst']
17        vars=[]
18        def runnable_status(self):
19                if getattr(Options.options,'no_tests',False):
20                        return Task.SKIP_ME
21                ret=super(utest,self).runnable_status()
22                if ret==Task.SKIP_ME:
23                        if getattr(Options.options,'all_tests',False):
24                                return Task.RUN_ME
25                return ret
26        def run(self):
27                filename=self.inputs[0].abspath()
28                self.ut_exec=getattr(self.generator,'ut_exec',[filename])
29                if getattr(self.generator,'ut_fun',None):
30                        self.generator.ut_fun(self)
31                try:
32                        fu=getattr(self.generator.bld,'all_test_paths')
33                except AttributeError:
34                        fu=os.environ.copy()
35                        lst=[]
36                        for g in self.generator.bld.groups:
37                                for tg in g:
38                                        if getattr(tg,'link_task',None):
39                                                lst.append(tg.link_task.outputs[0].parent.abspath())
40                        def add_path(dct,path,var):
41                                dct[var]=os.pathsep.join(Utils.to_list(path)+[os.environ.get(var,'')])
42                        if Utils.is_win32:
43                                add_path(fu,lst,'PATH')
44                        elif Utils.unversioned_sys_platform()=='darwin':
45                                add_path(fu,lst,'DYLD_LIBRARY_PATH')
46                                add_path(fu,lst,'LD_LIBRARY_PATH')
47                        else:
48                                add_path(fu,lst,'LD_LIBRARY_PATH')
49                        self.generator.bld.all_test_paths=fu
50                cwd=getattr(self.generator,'ut_cwd','')or self.inputs[0].parent.abspath()
51                testcmd=getattr(Options.options,'testcmd',False)
52                if testcmd:
53                        self.ut_exec=(testcmd%self.ut_exec[0]).split(' ')
54                proc=Utils.subprocess.Popen(self.ut_exec,cwd=cwd,env=fu,stderr=Utils.subprocess.PIPE,stdout=Utils.subprocess.PIPE)
55                (stdout,stderr)=proc.communicate()
56                tup=(filename,proc.returncode,stdout,stderr)
57                self.generator.utest_result=tup
58                testlock.acquire()
59                try:
60                        bld=self.generator.bld
61                        Logs.debug("ut: %r",tup)
62                        try:
63                                bld.utest_results.append(tup)
64                        except AttributeError:
65                                bld.utest_results=[tup]
66                finally:
67                        testlock.release()
68def summary(bld):
69        lst=getattr(bld,'utest_results',[])
70        if lst:
71                Logs.pprint('CYAN','execution summary')
72                total=len(lst)
73                tfail=len([x for x in lst if x[1]])
74                Logs.pprint('CYAN','  tests that pass %d/%d'%(total-tfail,total))
75                for(f,code,out,err)in lst:
76                        if not code:
77                                Logs.pprint('CYAN','    %s'%f)
78                Logs.pprint('CYAN','  tests that fail %d/%d'%(tfail,total))
79                for(f,code,out,err)in lst:
80                        if code:
81                                Logs.pprint('CYAN','    %s'%f)
82def set_exit_code(bld):
83        lst=getattr(bld,'utest_results',[])
84        for(f,code,out,err)in lst:
85                if code:
86                        msg=[]
87                        if out:
88                                msg.append('stdout:%s%s'%(os.linesep,out.decode('utf-8')))
89                        if err:
90                                msg.append('stderr:%s%s'%(os.linesep,err.decode('utf-8')))
91                        bld.fatal(os.linesep.join(msg))
92def options(opt):
93        opt.add_option('--notests',action='store_true',default=False,help='Exec no unit tests',dest='no_tests')
94        opt.add_option('--alltests',action='store_true',default=False,help='Exec all unit tests',dest='all_tests')
95        opt.add_option('--testcmd',action='store',default=False,help='Run the unit tests using the test-cmd string'' example "--test-cmd="valgrind --error-exitcode=1'' %s" to run under valgrind',dest='testcmd')
Note: See TracBrowser for help on using the repository browser.