diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2014-07-27 02:08:18 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2014-07-27 02:08:18 +0000 |
commit | de341d14c98c3407530422681bcb4cb6d7a24529 (patch) | |
tree | 526107ea6198f98bec2b97b22c0b6b5722809f30 /chapter06/e2fsprogs.xml | |
parent | 241831ef9470e98fe4301a2620c2ceea651b4e31 (diff) |
Run coreutils tests in a cleaner way
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10656 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/e2fsprogs.xml')
-rw-r--r-- | chapter06/e2fsprogs.xml | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/chapter06/e2fsprogs.xml b/chapter06/e2fsprogs.xml index 7212860f1..b1fed57f9 100644 --- a/chapter06/e2fsprogs.xml +++ b/chapter06/e2fsprogs.xml @@ -44,11 +44,6 @@ <sect2 role="installation"> <title>Installation of E2fsprogs</title> - <para>First fix a problem with running regression tests in the LFS chroot - environment:</para> - -<screen><userinput remap="pre">sed -i -e 's|^LD_LIBRARY_PATH.*|&:/tools/lib|' tests/test_config</userinput></screen> - <para>The E2fsprogs documentation recommends that the package be built in a subdirectory of the source tree: </para> @@ -121,13 +116,12 @@ PKG_CONFIG_PATH=/tools/lib/pkgconfig \ <screen><userinput remap="make">make</userinput></screen> - <para>To set up the test suite we need to temporarily copy - a library from /tools/lib so the test programs can find it. + <para>To set up and run the test suite we need to first link some + libraries from /tools/lib to a location where the test programs look. To run the tests, issue:</para> -<screen><userinput remap="test">cp -v /tools/lib/libblkid.so.1 /lib -make check -rm -v /lib/libblkid.so.1</userinput></screen> +<screen><userinput remap="test">ln -sfv /tools/lib/lib{blk,uu}id.so.1 lib +make LD_LIBRARY_PATH=/tools/lib check</userinput></screen> <para>One of the E2fsprogs tests will attempt to allocate 256 MB of memory. If you do not have significantly more RAM than this, be sure to enable |