Ejemplo n.º 1
0
def MAIN(argv=sys.argv):
    from mpx_test import destroy_testing_directories
    try:
        return _MAIN(argv)
    finally:
        destroy_testing_directories()
Ejemplo n.º 2
0
Boston, MA  02111-1307, USA.         
    
As a special exception, if other files instantiate classes, templates  
or use macros or inline functions from this project, or you compile         
this file and link it with other works to produce a work based         
on this file, this file does not by itself cause the resulting         
work to be covered by the GNU General Public License. However         
the source code for this file must still be made available in         
accordance with section (3) of the GNU General Public License.         
    
This exception does not invalidate any other reasons why a work         
based on this file might be covered by the GNU General Public         
License.
"""
#!/usr/bin/env python-mpx

from mpx_test import test

from mpx.lib import deprecated
deprecated("testing.test_manager.test has been moved to mpx_test.test")

if __name__ == "__main__":
    deprecated("testing/test_manager has been moved to tools/unittester")
    import sys
    from mpx_test import destroy_testing_directories
    from tools.unittester import MAIN
    try:
        result = MAIN(sys.argv)
    finally:
        destroy_testing_directories()
Ejemplo n.º 3
0
def MAIN(argv=sys.argv):
    from mpx_test import destroy_testing_directories
    try:
        return _MAIN(argv)
    finally:
        destroy_testing_directories()