temporarily disable some tests

This commit is contained in:
YellowJacketLinux 2024-10-07 09:59:59 -07:00
parent 7754025227
commit 021f8f1461
3 changed files with 9 additions and 6 deletions

View File

@ -30,8 +30,9 @@ if [ $? -ne 0 ]; then
myfail "Failed building glibc"
fi
echo "running glibc make check, could take awhile..."
make check > ${GLSOURCES}/glibc.check.log 2>&1
# temporarily disable
#echo "running glibc make check, could take awhile..."
#make check > ${GLSOURCES}/glibc.check.log 2>&1
touch /etc/ld.so.conf

View File

@ -19,8 +19,9 @@ if [ $? -ne 0 ]; then
myfail "Failed building autoconf"
fi
echo "running autoconf make check"
make check > ${GLSOURCES}/autoconf.check 2>&1
# temporarily disable
#echo "running autoconf make check"
#make check > ${GLSOURCES}/autoconf.check 2>&1
make install
if [ $? -ne 0 ]; then

View File

@ -20,8 +20,9 @@ if [ $? -ne 0 ]; then
myfail "Failed building automake"
fi
echo "running automake make check"
make -j$(($(nproc)>4?$(nproc):4)) check > ${GLSOURCES}/automake.check 2>&1
# temporarily disable
#echo "running automake make check"
#make -j$(($(nproc)>4?$(nproc):4)) check > ${GLSOURCES}/automake.check 2>&1
make install
if [ $? -ne 0 ]; then