[pygccxml-commit] SF.net SVN: pygccxml: [1157] pyplusplus_dev
Brought to you by:
mbaas,
roman_yakovenko
From: <rom...@us...> - 2007-11-15 15:37:15
|
Revision: 1157 http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1157&view=rev Author: roman_yakovenko Date: 2007-11-15 07:37:20 -0800 (Thu, 15 Nov 2007) Log Message: ----------- integrating other tests Modified Paths: -------------- pyplusplus_dev/environment.py pyplusplus_dev/unittests/test_all.py Modified: pyplusplus_dev/environment.py =================================================================== --- pyplusplus_dev/environment.py 2007-11-15 15:23:34 UTC (rev 1156) +++ pyplusplus_dev/environment.py 2007-11-15 15:37:20 UTC (rev 1157) @@ -17,9 +17,9 @@ gccxml_09_path = os.path.join( this_module_dir_path, '..', 'gccxml_bin', 'v09', sys.platform, 'bin' ) gccxml_path = gccxml_09_path - gccxml_version = '__GCCXML_07__' - if '0.9' in gccxml_version: - gccxml_version = '__GCCXML_09__' + gccxml_version = '__GCCXML_09__' + if '0.7' in gccxml_version: + gccxml_version = '__GCCXML_07__' executable = gccxml_path Modified: pyplusplus_dev/unittests/test_all.py =================================================================== --- pyplusplus_dev/unittests/test_all.py 2007-11-15 15:23:34 UTC (rev 1156) +++ pyplusplus_dev/unittests/test_all.py 2007-11-15 15:37:20 UTC (rev 1157) @@ -78,7 +78,25 @@ import non_overridable_tester import exposed_decls_db_tester import already_exposed_tester +import bpmodule_tester +import custom_smart_ptr_classes_tester +import custom_string_tester +import final_classes_tester +#gui_tester +#gui_wizard_tester +# +import mem_fun_with_exception_tester +import overriden_virtual_functions_bug_tester +import split_module_bug_tester +import tnfox_bugs_tester +import transfer_ownership_old_tester +import transfer_ownership_tester +import unicode_bug + + + + testers = [ algorithms_tester , module_body_tester @@ -146,6 +164,17 @@ , non_overridable_tester , exposed_decls_db_tester , already_exposed_tester + , bpmodule_tester + , custom_smart_ptr_classes_tester + , custom_string_tester + , final_classes_tester + , mem_fun_with_exception_tester + , overriden_virtual_functions_bug_tester + , split_module_bug_tester + , tnfox_bugs_tester + , transfer_ownership_old_tester + , transfer_ownership_tester + , unicode_bug ] class process_tester_runner_t( object ): @@ -199,7 +228,7 @@ test_file_name = module.__file__[:-1] if test_file_name.endswith( 'pyc' ): test_file_name = test_file_name[:-1] - command_line = ' '.join([ sys.executable, module.__file__[:-1] ]) #pyc -> py + command_line = ' '.join([ sys.executable, test_file_name ]) #pyc -> py input_, output = os.popen4( command_line ) input_.close() report = [] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |