[Pysys-commits] SF.net SVN: pysys:[1029] branches/post-1.3.0
Brought to you by:
ben-spiller,
moraygrieve
From: <ben...@us...> - 2018-09-14 17:45:37
|
Revision: 1029 http://sourceforge.net/p/pysys/code/1029 Author: ben-spiller Date: 2018-09-14 17:45:25 +0000 (Fri, 14 Sep 2018) Log Message: ----------- fix race condition/bug in which symbols defined in one run.py could leak into another and introduce a dependency such that tests behave differently when run on their own (as a resut of all run.py modules having the same qualified name, "run") - to fix this, just use the standard exec() built-in (which is also a bit simpler) rather than the custom module importer which doesn't have any namespacing capability Modified Paths: -------------- branches/post-1.3.0/pysys/baserunner.py branches/post-1.3.0/pysys-dist/pysys-release.txt Added Paths: ----------- branches/post-1.3.0/pysys-examples/internal/testcases/PySys_internal_087/ branches/post-1.3.0/pysys-examples/internal/testcases/PySys_internal_087/Input/ branches/post-1.3.0/pysys-examples/internal/testcases/PySys_internal_087/Input/Test1/ branches/post-1.3.0/pysys-examples/internal/testcases/PySys_internal_087/Input/Test1/pysystest.xml branches/post-1.3.0/pysys-examples/internal/testcases/PySys_internal_087/Input/Test1/run.py branches/post-1.3.0/pysys-examples/internal/testcases/PySys_internal_087/Input/Test2/ branches/post-1.3.0/pysys-examples/internal/testcases/PySys_internal_087/Input/Test2/pysystest.xml branches/post-1.3.0/pysys-examples/internal/testcases/PySys_internal_087/Input/Test2/run.py branches/post-1.3.0/pysys-examples/internal/testcases/PySys_internal_087/Input/pysysproject.xml branches/post-1.3.0/pysys-examples/internal/testcases/PySys_internal_087/Reference/ branches/post-1.3.0/pysys-examples/internal/testcases/PySys_internal_087/Reference/pysys.out branches/post-1.3.0/pysys-examples/internal/testcases/PySys_internal_087/pysystest.xml branches/post-1.3.0/pysys-examples/internal/testcases/PySys_internal_087/run.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |