Ignore:
Timestamp:
Aug 18, 2008, 12:08:41 PM (17 years ago)
Author:
Frederik Heber <heber@…>
Children:
2c536c
Parents:
2b19bb
Message:

replaced inlined 'script' by the function itself to avoid path confusions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • util/src/dynamicANOVA.sh.in

    r2b19bb r7d6f65  
    1313PREPARER="/mount/bespin/heber/tmp/mpqc/convertresults.sh"
    1414
    15 . /mount/bespin/heber/scripts/check
     15function check()
     16{
     17        #1 MESSAGE
     18        if [ $? -eq 0 ]; then
     19                if [ -z $1 ]; then
     20                        echo "ok."
     21                else
     22                        echo "ok: $1."
     23                fi
     24        else
     25                if [ -z $1 ]; then
     26                        echo "failed."
     27                else
     28                        echo "failed: $1."
     29                fi
     30                exit 1
     31        fi
     32}
    1633
    1734function RunSim {
Note: See TracChangeset for help on using the changeset viewer.