[pygccxml-commit] SF.net SVN: pygccxml:[1547]
Brought to you by:
mbaas,
roman_yakovenko
From: <rom...@us...> - 2009-01-07 18:54:14
|
Revision: 1547 http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1547&view=rev Author: roman_yakovenko Date: 2009-01-07 18:54:07 +0000 (Wed, 07 Jan 2009) Log Message: ----------- updating to gccxml revision 1.127 Revision Links: -------------- http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1&view=rev Modified Paths: -------------- gccxml_bin/v09/win32/bin/gccxml.exe gccxml_bin/v09/win32/bin/gccxml_cc1plus.exe gccxml_bin/v09/win32/bin/gccxml_vcconfig.exe gccxml_bin/v09/win32/share/gccxml-0.9/gccxml_config gccxml_bin/v09/win32/share/man/man1/gccxml.1 pygccxml_dev/unittests/type_traits_tester.py Modified: gccxml_bin/v09/win32/bin/gccxml.exe =================================================================== (Binary files differ) Modified: gccxml_bin/v09/win32/bin/gccxml_cc1plus.exe =================================================================== (Binary files differ) Modified: gccxml_bin/v09/win32/bin/gccxml_vcconfig.exe =================================================================== (Binary files differ) Modified: gccxml_bin/v09/win32/share/gccxml-0.9/gccxml_config =================================================================== --- gccxml_bin/v09/win32/share/gccxml-0.9/gccxml_config 2009-01-07 18:35:33 UTC (rev 1546) +++ gccxml_bin/v09/win32/share/gccxml-0.9/gccxml_config 2009-01-07 18:54:07 UTC (rev 1547) @@ -1,2 +1,2 @@ -GCCXML_COMPILER="msvc90" +GCCXML_COMPILER="cl" GCCXML_CXXFLAGS=" /DWIN32 /D_WINDOWS /W3 /Zm1000 /GX /GR" Modified: gccxml_bin/v09/win32/share/man/man1/gccxml.1 =================================================================== --- gccxml_bin/v09/win32/share/man/man1/gccxml.1 2009-01-07 18:35:33 UTC (rev 1546) +++ gccxml_bin/v09/win32/share/man/man1/gccxml.1 2009-01-07 18:54:07 UTC (rev 1547) @@ -1,4 +1,4 @@ -.TH GCC-XML 1 "December 22, 2008" "GCC-XML 0.9.0" +.TH GCC-XML 1 "January 05, 2009" "GCC-XML 0.9.0" .SH NAME .TP .B gccxml Modified: pygccxml_dev/unittests/type_traits_tester.py =================================================================== --- pygccxml_dev/unittests/type_traits_tester.py 2009-01-07 18:35:33 UTC (rev 1546) +++ pygccxml_dev/unittests/type_traits_tester.py 2009-01-07 18:54:07 UTC (rev 1547) @@ -253,8 +253,30 @@ self.failUnless( len( ci.declarations ) == 3 ) #copy constructor, destructor, variable +#~ class tester_diff_t( parser_test_case.parser_test_case_t ): + #~ COMPILATION_MODE = parser.COMPILATION_MODE.ALL_AT_ONCE + #~ declarations = None + #~ def __init__(self, *args ): + #~ parser_test_case.parser_test_case_t.__init__( self, *args ) + #~ self.header = 'type_traits.hpp' + #~ self.declarations = None + + #~ def setUp(self): + #~ if not tester_t.declarations: + #~ tester_t.declarations = parser.parse( [self.header], self.config ) + #~ self.declarations = tester_t.declarations + + #~ def test( self ): + #~ x = declarations.find_declaration( self.declarations + #~ , type=declarations.typedef_t + #~ , name="s2s_multimap_type" ) + #~ print declarations.is_noncopyable( x) + #~ declarations.print_declarations( [declarations.class_traits.get_declaration( x )] ) + + def create_suite(): suite = unittest.TestSuite() + #~ suite.addTest( unittest.makeSuite(tester_diff_t)) suite.addTest( unittest.makeSuite(tester_t)) suite.addTest( unittest.makeSuite(missing_decls_tester_t)) return suite This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |