mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 10:08:34 +05:00
47 lines
962 B
Python
47 lines
962 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
"""Tests de blocFissure ; en standalone
|
||
|
|
||
|
Cas tests basés sur les matériels :
|
||
|
. vis
|
||
|
. tube
|
||
|
|
||
|
Copyright 2021 EDF
|
||
|
Gérald NICOLAS
|
||
|
+33.1.78.19.43.52
|
||
|
"""
|
||
|
|
||
|
__revision__ = "V02.03"
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
# Lancement des cas-tests
|
||
|
import salome
|
||
|
salome.standalone()
|
||
|
salome.salome_init()
|
||
|
|
||
|
from blocFissure.CasTests.blocFissureTest import blocFissureTest
|
||
|
BLOCFISSURE_TEST = blocFissureTest(["vis"])
|
||
|
#BLOCFISSURE_TEST = blocFissureTest(["vis", "tube"])
|
||
|
MESSAGE_ERREUR = BLOCFISSURE_TEST.lancement()
|
||
|
#sys.stdout.write(MESSAGE_ERREUR)
|
||
|
del BLOCFISSURE_TEST
|
||
|
|
||
|
# Diagnostic
|
||
|
if MESSAGE_ERREUR:
|
||
|
if ( "NOOK" in MESSAGE_ERREUR ):
|
||
|
LAUX = MESSAGE_ERREUR.split()
|
||
|
ERREUR = int(LAUX[LAUX.index("NOOK")+2])
|
||
|
else:
|
||
|
ERREUR = 0
|
||
|
else:
|
||
|
MESSAGE_ERREUR = "Impossible de trouver le diagnostic de la procédure de tests."
|
||
|
ERREUR = -1
|
||
|
|
||
|
if ERREUR:
|
||
|
sys.stderr.write(MESSAGE_ERREUR)
|
||
|
#raise Exception(MESSAGE_ERREUR)
|
||
|
assert(False)
|
||
|
|