Log of /branches/ROBW_XPLATFORM/finley/test/python
Directory Listing
Revision
676 -
Directory Listing
Modified
Sun Mar 26 10:13:34 2006 UTC
(15 years ago)
by
robwdcock
+ Modified test SConscript dependencies to remove redundant call to explicit dependency
+ Modified scon_extensions.py - run unit tests (py and C++) now use scons::Execute rather than python os.system. This ensures the development environment
is used rather than the users environment to run the tests
+ SConstruct file now sets up LD_LIBRARY_PATH and PYTHONPATH to point to the current builds pyinstall and libinstall paths as required.
IT IS NO LONGER NECESSARY TO SET LD_LIBRARY_PATH and PYTHONPATH to point at your build outputs. Much safer in the presence of multiple checked out builds.
Under these circumstances you are better of using scons to run the tests rather than doing so directly. Easiest way to do this is to build the test output target for the test you want:
e.g. scons build/posix/bruce/test/python/ImportTest.passed
or if you prefer
cd build/posix/bruce/test/python
scons -u ImportTest.passed
Revision
673 -
Directory Listing
Modified
Sun Mar 26 07:16:42 2006 UTC
(15 years ago)
by
robwdcock
+ Added some svn:ignore properties so .pyc files aren't reported during svn status and friends
+ Removed esys directory. Build system will create the pyinstall/esys target and touch the __init__.py file in it as part of the build process. This means you can now direct scons to perform an install of the python directly into your desired location rather than just in the root of the source tree.
Revision
661 -
Directory Listing
Modified
Fri Mar 24 09:13:00 2006 UTC
(15 years ago)
by
robwdcock
+py_tests now runs. Be patient, it is all of them!!
Revision
622 -
Directory Listing
Modified
Wed Mar 22 14:00:08 2006 UTC
(15 years ago)
by
robwdcock
Creating a private branch so I can test and verify cross-platform build
Revision
442 -
Directory Listing
Modified
Fri Jan 20 04:39:43 2006 UTC
(15 years, 2 months ago)
by
gross
Original Path:
trunk/finley/test/python
kronecker (and relatives) take now a FunctionSpace as argument and return a Data object in tthis functionspace
Revision
437 -
Directory Listing
Modified
Fri Jan 20 00:16:58 2006 UTC
(15 years, 2 months ago)
by
gross
Original Path:
trunk/finley/test/python
comprehensive testing for integrate function added. tests for grad will be added in the next check in. GradTest is obsolete now.
Revision
425 -
Directory Listing
Modified
Tue Jan 10 04:10:39 2006 UTC
(15 years, 3 months ago)
by
gross
Original Path:
trunk/finley/test/python
The sparse solver can be called by paso now.
the building has been change to reduce some code redundancy:
now all scons SCscripts are importing scons/esys_options.py which
imports platform specific settings.
Revision
152 -
Directory Listing
Modified
Fri Oct 21 08:32:21 2005 UTC
(15 years, 5 months ago)
by
phornby
Original Path:
trunk/esys2/finley/test/python
DataConstantTestCase.cpp, DataExpandedTestCase.cpp:
Replace
DataExpanded testData1(FunctionSpace(),....)
with
FunctionSpace tmp_fns;
DataExpanded testData1(tmp_fns,shape,data);
for GCC's sake.
Added some profiling to PoissonSolverTest.py.