abouttestsuites.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <sect1 id="prepare-abouttestsuites">
  2. <title>About the test suites</title>
  3. <para>Most packages provide a test suite. Running the test suite for a newly
  4. built package is generally a good idea, as it can provide a nice sanity check
  5. that everything compiled correctly. A test suite that passes its set of checks
  6. usually proves that the package is functioning as the developer intended. It
  7. does not, however, guarantee that the package is totally bug free.</para>
  8. <para>Some test suites are more important than others. For example, the test
  9. suites for the core toolchain packages -- GCC, Binutils, and Glibc -- are of
  10. the utmost importance due to their central role in a properly functioning
  11. system. But be warned, the test suites for GCC and Glibc can take a very long
  12. time to complete, especially on slower hardware.</para>
  13. <note><para>Experience has shown us that there is little to be gained from running
  14. the test suites in <xref linkend="chapter-temporary-tools"/>. There can be no
  15. escaping the fact that the host system always exerts some influence on the
  16. tests in that chapter, often causing weird and inexplicable failures. Not only
  17. that, the tools built in <xref linkend="chapter-temporary-tools"/> are
  18. temporary and eventually discarded. For the average reader of this book we
  19. recommend <emphasis>not</emphasis> to run the test suites in <xref
  20. linkend="chapter-temporary-tools"/>. The instructions for running those test
  21. suites are still provided for the benefit of testers and developers, but they
  22. are strictly optional for everyone else.</para></note>
  23. <para>A common problem when running the test suites for Binutils and GCC is
  24. running out of pseudo terminals (PTYs for short). The symptom is a very high
  25. number of failing tests. This can happen for several reasons, but the most
  26. likely cause is that the host system doesn't have the
  27. <emphasis>devpts</emphasis> file system set up correctly. We'll discuss this in
  28. more detail later on in <xref linkend="chapter-temporary-tools"/>.</para>
  29. <para>Sometimes package test suites will give false failures. You can
  30. consult the LFS Wiki at <ulink url="&wiki-root;"/> to verify that these
  31. failures are normal. This applies to all tests throughout the book.</para>
  32. </sect1>