Hi folks!

I am porting boost-1.37 to FreeBSD and have question on how to run "library status" tests. Basically, after fixing some things, it is possible to build libraries, I have working port. The main pont, however, is that I want to ensure that libraries work as expected by their developers. For this purpose I am following instructions from http://www.boost.org/doc/libs/1_37_0/tools/regression/doc/library_status.html "Running Tests for All Libraries": I am doing 'tools/regression/library_test_all' from the boost root directory after all libraries are successfully built.The result is like this:

$ tools/regression/src/library_test_all.sh variant=release link=static
accumulators
tools/regression/src/library_test_all.sh: ../../../tools/regression/library_test: not found
algorithm/minmax
tools/regression/src/library_test_all.sh: ../../../../tools/regression/library_test: not found

# the same for all other libraries

xpressive
tools/regression/src/library_test_all.sh: ../../../tools/regression/library_test: not found
xpressive/proto
tools/regression/src/library_test_all.sh: ../../../../tools/regression/library_test: not found

What's wrong?


Alexander Churanov