Changeset 8419

Show
Ignore:
Timestamp:
06/29/10 14:54:49 (3 years ago)
Author:
bligon
Message:

Added more patch files (no-signalfd.h & unzip)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/Orange-Branch/test/automated/vfs-tests.d/ltp

    r8317 r8419  
    33LTPVER="20081130" 
    44THISDATE=`date +%F-%R` 
    5 DOWNLOAD="http://www-unix.mcs.anl.gov/~carns/nightly-download/ltp-full-${LTPVER}.tgz" 
     5#DOWNLOAD="http://www-unix.mcs.anl.gov/~carns/nightly-download/ltp-full-${LTPVER}.tgz" 
    66 
    77cd ${EXTRA_TESTS} 
    88 
    99# get rid of any old copies 
    10 sudo rm -rf ltp-full-${LTPVER} ltp-full-${LTPVER}.tgz  
     10sudo rm -rf ltp-full-${LTPVER}  
    1111 
    1212# download 
    13 echo Downloading LTP... 
    14 wget -q ${DOWNLOAD} > /dev/null 
    15 if [ "${?}" != 0 ] 
    16 then 
    17     echo "Error: failed to download ${DOWNLOAD}." 
    18     exit 1; 
    19 fi 
     13#echo Downloading LTP... 
     14#wget -q ${DOWNLOAD} > /dev/null 
     15#if [ "${?}" != 0 ] 
     16#then 
     17#    echo "Error: failed to download ${DOWNLOAD}." 
     18#    exit 1; 
     19#fi 
    2020 
    2121tar -xvzf ltp-full-${LTPVER}.tgz > /dev/null 
     
    3030for patch in \ 
    3131        ${VFS_SCRIPTS}/ltp-20080630-zoo-path.patch \ 
    32         ${VFS_SCRIPTS}/ltp-20080630-accept4-wrapper.patch; do 
     32        ${VFS_SCRIPTS}/ltp-20080630-accept4-wrapper.patch \ 
     33        ${VFS_SCRIPTS}/ltp-full-20081130-no-signalfd.patch \ 
     34        ${VFS_SCRIPTS}/ltp-full-20081130-unzip.patch; do 
    3335                patch -p1 < $patch 
    3436done