Ignore:
Timestamp:
Apr 27, 2006, 10:40:32 PM (18 years ago)
Author:
rainer
Message:

Release candidate 3 for version 2.2.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/testtimesrv.sh

    r27 r30  
    3030prep_testdata ()
    3131{
    32     chmod -R 0700 "${BASE}" || {
    33         [ -z "$quiet" ] &&   log_msg_fail "chmod -R 0700 ${BASE}";
    34         return 1;
    35     }
     32    if test -d "$BASE"; then
     33        chmod -R 0700 "${BASE}" || {
     34            [ -z "$quiet" ] &&   log_msg_fail "chmod -R 0700 ${BASE}";
     35            return 1;
     36        }
     37    fi
    3638
    3739    rm -rf "${BASE}" || {
     
    140142        # standalone compilation
    141143        #
    142         [ -z "$verbose" ] || { echo; echo "${S}Building standalone agent w/timeserver${E}"; echo; }
     144        [ -z "$verbose" ] || { echo; echo "${S}Building standalone agent${E}"; echo; }
    143145        #
    144146        if test -r "Makefile"; then
     
    150152        if test x$? = x0; then
    151153                [ -z "$verbose" ] ||     log_msg_ok "configure...";
    152                 $MAKE  > /dev/null
     154                $MAKE  > /dev/null 2>>test_log
    153155                if test x$? = x0; then
    154156                    [ -z "$verbose" ] || log_msg_ok "make...";
Note: See TracChangeset for help on using the changeset viewer.