X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=test%2Fdemo0.py;h=c02c5c8a48d6f40d7dc4381555e4b60e3484e8d4;hb=b895ff15be511bc902d4ee1ff5006cfc3b0d22ea;hp=23d2578e40275c97561686ad8ee328b61a613af8;hpb=4b015556d5938cc157ae97bdc018d08367c0729a;p=modules%2Fparavis.git diff --git a/test/demo0.py b/test/demo0.py index 23d2578e..c02c5c8a 100755 --- a/test/demo0.py +++ b/test/demo0.py @@ -1,4 +1,4 @@ -# Copyright (C) 2010-2014 CEA/DEN, EDF R&D +# Copyright (C) 2010-2015 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -24,7 +24,7 @@ rate achieved in triangles/sec. """ if not ('servermanager' in dir()): from pvsimple import * -import time, sys, os +import time, sys, os, inspect def render(ss, v, title, nframes): print '============================================================' @@ -151,8 +151,10 @@ def run(filesour, impth, nframes): print >>f, '"%s", %g, %g' % (i[0], i[1][1], i[2][1]) -testdir = os.getenv("TESTDIR") -pvdata = os.getenv("PVDATA") + +scriptdir = inspect.getframeinfo(inspect.currentframe())[0] +testdir = os.path.dirname( os.path.abspath(scriptdir) ) + if __name__ == "__main__": run(filesour=testdir + "/Pic/Information.txt", impth=testdir + "/Pic/", nframes=10)