]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Fix bug 11063: Prevent running salome_test in a study with MED data.
authorjfa <jfa@opencascade.com>
Mon, 3 Apr 2006 10:41:56 +0000 (10:41 +0000)
committerjfa <jfa@opencascade.com>
Mon, 3 Apr 2006 10:41:56 +0000 (10:41 +0000)
src/KERNEL_PY/salome_test.py

index 2e203e5aa6442b37a670ecf9d81c302cc27c0112..ac552d50a29bf637e15da243b8a357629d062fa9 100755 (executable)
@@ -17,6 +17,19 @@ import os
 
 import SALOME_ModuleCatalog
 
+print "======================================================================"
+print "           Check, that there is no data of MED component in the Study "
+print "======================================================================"
+
+MedComp = salome.myStudy.FindComponent("MED")
+if MedComp is not None:
+       print ""
+       print "This script cannot work properly, because there are"
+       print "some MED component data already exists in the study."
+       print "Execution aborted."
+       print ""
+       raise RuntimeError, "Please, run this script only in a new empty study."
+
 print "======================================================================"
 print "           Get Catalog "
 print "======================================================================"