Israel Silberg wrote: > Hi all during the test with the command: > > su nobody -s /bin/bash \ > -c "PATH=$PATH make RUN_EXPENSIVE_TESTS=yes -k check || true" > > I get the following results:
> ============================================================================ > Testsuite summary for GNU coreutils 8.19 > ============================================================================ > # TOTAL: 315 > # PASS: 293 > # SKIP: 22 > # XFAIL: 0 > # FAIL: 0 > # XPASS: 0 > # ERROR: 0 > make[2]: Leaving directory `/sources/coreutils-8.19' > make[1]: *** [check-recursive] Error 1 > make[1]: Leaving directory `/sources/coreutils-8.19' > make: *** [check] Error 2 > > The numbers of the pass skip and xfail are identical to the results in the > results logs site but I get these two errors at the end that I don't know > if I can proceed with them. There is another summary earlier. You can capture the test results by adding 2>&1 | tee check.log to the command. Then search for FAIL. There is really only one Error 1 here but we don't know why. The Error 2 is cascaded from the Error 1. -- Bruce -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
