dvb/frontend: set sec once
[enigma2.git] / mytest.py
index 2a7eb9a1fc5c6db26de8dbcb92b56f063b0099bb..ef2f6fb6388a8971ff74e3939fe015e1a7547cf8 100644 (file)
--- a/mytest.py
+++ b/mytest.py
@@ -13,6 +13,8 @@ from Navigation import Navigation
 
 from skin import readSkin, applyAllAttributes
 
+from Components.config import configfile
+
 had = dict()
 
 def dump(dir, p = ""):
@@ -88,7 +90,11 @@ class Session:
        
        def create(self, screen, arguments):
                # creates an instance of 'screen' (which is a class)
-               return screen(self, *arguments)
+               try:
+                       return screen(self, *arguments)
+               except TypeError, x:
+                       errstr = "Screen %s(%s): %s" % (str(screen), str(arguments), str(x))
+                       raise TypeError(errstr)
        
        def instantiateDialog(self, screen, *arguments):
                # create dialog
@@ -163,6 +169,8 @@ def runScreenTest():
        
        runMainloop()
        
+       configfile.save()
+       
        session.nav.shutdown()
        
        return 0
@@ -201,22 +209,3 @@ except:
        traceback.print_exc(file=sys.stdout)
        quitMainloop(5)
        print '-'*60
-
-# now, run the mainloop
-
-#pt = eDebugClassPtr()
-#eDebugClass.getDebug(pt, 12)
-#p = pt.__deref__()
-#print pt.x
-#print p.x
-#print "removing ptr..."
-#pt = 0
-#print "now"
-#print "p is " + str(p)
-#print p.x
-#p = 0
-#
-#bla = eDebugClass()
-#bla = eDebugClass(2)
-#
-