Author: bugman
Date: Wed Feb 4 14:18:26 2015
New Revision: 27510
URL: http://svn.gna.org/viewcvs/relax?rev=27510&view=rev
Log:
Created a script for testing the memory management when calling the time GUI
user function.
Added:
trunk/devel_scripts/memory_management/GUI_uf_time.py
Added: trunk/devel_scripts/memory_management/GUI_uf_time.py
URL:
http://svn.gna.org/viewcvs/relax/trunk/devel_scripts/memory_management/GUI_uf_time.py?rev=27510&view=auto
==============================================================================
--- trunk/devel_scripts/memory_management/GUI_uf_time.py (added)
+++ trunk/devel_scripts/memory_management/GUI_uf_time.py Wed Feb 4
14:18:26 2015
@@ -0,0 +1,47 @@
+###############################################################################
+# #
+# Copyright (C) 2015 Edward d'Auvergne #
+# #
+# This file is part of the program relax (http://www.nmr-relax.com). #
+# #
+# This program is free software: you can redistribute it and/or modify #
+# it under the terms of the GNU General Public License as published by #
+# the Free Software Foundation, either version 3 of the License, or #
+# (at your option) any later version. #
+# #
+# This program is distributed in the hope that it will be useful, #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
+# GNU General Public License for more details. #
+# #
+# You should have received a copy of the GNU General Public License #
+# along with this program. If not, see <http://www.gnu.org/licenses/>. #
+# #
+###############################################################################
+
+"""Memory test of the time GUI user function."""
+
+# Python module imports.
+import wx
+
+# Base module imports.
+from GUI_base import Testing_frame
+
+
+class Frame(Testing_frame):
+ """Testing frame."""
+
+ def test(self):
+ """Run the test."""
+
+ # Repetitive calling of the time user function.
+ for i in self.muppy_loop():
+ self._execute_uf(uf_name='time')
+
+
+
+# Set up and execute the GUI.
+app = wx.App(False)
+frame = Frame(None, "GUI memory test")
+frame.Show(True)
+app.MainLoop()
_______________________________________________
relax (http://www.nmr-relax.com)
This is the relax-commits mailing list
[email protected]
To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits