Overview
Comment: | Added example area with one test and added example to training |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | development |
Files: | files | file ages | folders |
SHA1: |
e1b3da08cb12e4c92eb6baf0421ec121 |
User & Date: | mrwellan on 2013-03-25 09:43:06 |
Other Links: | branch diff | manifest | tags |
Context
2013-03-25
| ||
10:19 | Minor clean up to the manual intro section check-in: 464391157a user: mrwellan tags: development | |
09:43 | Added example area with one test and added example to training check-in: e1b3da08cb user: mrwellan tags: development | |
00:45 | Added pdf, minor changes to training doc check-in: f3f1f3af29 user: matt tags: development | |
Changes
Modified docs/megatest-training.odp from [a2a918067a] to [7d5738900a].
cannot compute difference between binary files
Added example/megatest.config version [f551a39ee6].
> > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | [fields] PLATFORM TEXT OS TEXT [setup] # Adjust max_concurrent_jobs to limit parallel jobs max_concurrent_jobs 50 # This is your link path, best to set it and then not change it linktree #{getenv PWD}/linktree # Job tools control how your jobs are launched [jobtools] useshell yes launcher nbfind # You can override environment variables for all your tests here [env-override] EXAMPLE_VAR example value # As you run more tests you may need to add additional disks # the names are arbitrary but must be unique [disks] disk0 #{getenv PWD}/runs |
Added example/runconfigs.config version [346ed47154].
> > > > > > | 1 2 3 4 5 6 | [default] ALLTESTS see this variable # Your variables here are grouped by targets [SYSTEM/RELEASE] [SYSTEM_val/RELEASE_val] ANOTHERVAR only defined if target is SYSTEM_val/RELEASE_val |
Added example/tests/checkspace/checkspace.sh version [d63bf48441].
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | #!/bin/bash -e diskpath=$1 spacereq=$2 freespace=`df -k $diskpath | grep $diskpath | awk '{print $4}'` if [[ $freespace -lt $spacereq ]];then echo "ERROR: insufficient space on $diskpath" exit 1 else echo "There is adequate space on $diskpath" fi |
Added example/tests/checkspace/testconfig version [10e3422ed2].
> > > > > > > > > | 1 2 3 4 5 6 7 8 9 | # Add steps here. Format is "stepname script" [ezsteps] checkspace checkspace.sh # Iteration for your tests are controlled by the items section [itemstable] DIRECTORY /tmp /opt REQUIRED 1000000 100000 |