Update of /cvsroot/pygccxml/source/pygccxml/unittests
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15004/pygccxml/unittests
Modified Files:
test_all.py
Log Message:
adding new unit test that should reproduce Matthias problem with different order of enums
does not reproduce :-(
Index: test_all.py
===================================================================
RCS file: /cvsroot/pygccxml/source/pygccxml/unittests/test_all.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** test_all.py 2 Mar 2006 05:53:14 -0000 1.16
--- test_all.py 5 Mar 2006 05:44:14 -0000 1.17
***************
*** 30,33 ****
--- 30,34 ----
import calldef_matcher_tester
import filters_tester
+ import cache_enums_tester
def create_suite():
***************
*** 58,61 ****
--- 59,63 ----
, calldef_matcher_tester
, filters_tester
+ , cache_enums_tester
]
|