Differences between revisions 1 and 7 (spanning 6 versions)
Revision 1 as of 2016-02-17 10:29:25
Size: 1997
Editor: BMittan
Comment:
Revision 7 as of 2016-02-17 13:51:06
Size: 2006
Editor: BMittan
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
= How to Test Directory Set-Up V0 =
Line 29: Line 29:
 * '''testID''' - Name of the F3 test directory (for example, ''F3E-Limbs'')
 * '''blockID''' - User-specified identifier for typescript textfile name (for example, ''Block-01-01-TestDirSetUp-Orig'')
 * '''testID''' - Name of the F3 test directory (for example, 'F3E-Limbs')
 * '''blockID''' - User-specified identifier for typescript textfile name (for example, 'Block-01-01-TestDirSetUp-Orig')
Line 34: Line 34:
The following procedure should be followed as given unless you have a justification for any variance. (./) Include an example here??

You can copy and paste the lines in the Unix terminal. Comment lines (##) will be ignored.
=== 1. Initial inputs ===
Line 42: Line 39:
}}}
Line 43: Line 41:
=== 2. Set-up ===
{{{
Line 49: Line 49:
}}}
Line 50: Line 51:
=== 3. Synchronize to base directory ===
{{{
Line 53: Line 56:
}}}
 (./) Not sure if this will be a step in general version. Need to fix numbering.
{{{
Line 58: Line 63:
}}}
Line 59: Line 65:
=== 4. Print details ===
{{{
Line 64: Line 72:
}}}
Line 65: Line 74:
=== 5. Complete procedure ===

{{{

How to Test Directory Set-Up - ORIG V0

Description

This block populates an F3 test directory from the F3-base directory. It clears and re-populates the working directory (ORIG) and updates the .DAT file directory (base/IMAGEFILES) in readiness for sensitivity testing.

Assumptions

  • You have invoked a Bourne-Again Shell (bash) on ormacsrv1.lpl.arizona.edu
  • You are a member of the group OREX\spc
  • You have set up a skeleton directory in the following format:

/SPC_Test/F3G-Nav/
                   ORex/
                            DATA/
                   base/
                            IMAGEFILES/
                            SHAPEFILES/
                   lsupport/
                   orig/
                   results/
                   test/

User inputs

  • testID - Name of the F3 test directory (for example, 'F3E-Limbs')

  • blockID - User-specified identifier for typescript textfile name (for example, 'Block-01-01-TestDirSetUp-Orig')

Procedure

1. Initial inputs

# User inputs:
testID=F3G-Nav
blockID=Block-01-01-TestDirSetUp-Orig

2. Set-up

# Set-Up
cd /SPC_Test/$testID
script
date
pwd
ls -l

3. Synchronize to base directory

# sync to F3-base directory
rsync --delete -ha ../F3-base/orig .
rsync -ha ../F3-base/base/IMAGEFILES base/
  • (./) Not sure if this will be a step in general version. Need to fix numbering.

## VARIANCE-F3G: 
rm orig/DATA
ln -s ../ORex/DATA orig/DATA
## END OF VARIANCE

4. Print details

# Print details
ls -l orig
cat orig/README
ls -l base/IMAGEFILES
cat base/IMAGEFILES/README

5. Complete procedure

# Block Complete
exit
# Save block log
if [ ! -d /SPC_Test/$testID/log ]; then
  mkdir /SPC_Test/$testID/log
fi
mv typescript /SPC_Test/$testID/log/log-typescript-${blockID}


(Compiled by DL)

CategoryHowTos

How to Test Directory Set-Up - ORIG V0 (last edited 2016-02-17 13:51:06 by BMittan)