Megatest

Check-in [ed8e811a06]
Login
Overview
Comment:Fixed typo in ffcall download
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: ed8e811a06b4c537f4fd4bb577c41e24cb915a08
User & Date: fdktest on 2013-07-24 05:52:55
Other Links: branch diff | manifest | tags
Context
2013-07-24
06:34
Added check for iup functionality to installall.sh check-in: 7ce7d62a0a user: fdktest tags: dev
05:52
Fixed typo in ffcall download check-in: ed8e811a06 user: fdktest tags: dev
2013-07-23
11:13
Split installall target up into various vars. Removed dependency on realpath check-in: f7b7ff7d31 user: mrwellan tags: dev
Changes

tests/installall/config/megatest.config.dat became a regular file with contents [736a5da885].

tests/installall/config/runconfigs.config.dat became a regular file with contents [3b8f260acb].

Modified tests/installall/megatest.config from [99683f3b8c] to [495217020e].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[fields]
CHICKEN_VERSION TEXT
MEGATEST_VERSION TEXT
IUPMODE TEXT
BUILD_TAG TEXT

[setup]
max_concurrent_jobs 50
linktree #{getenv MT_RUN_AREA_HOME}/links

[jobtools]
useshell yes
launcher nbfind

[env-override]







|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[fields]
CHICKEN_VERSION TEXT
MEGATEST_VERSION TEXT
IUPMODE TEXT
BUILD_TAG TEXT

[setup]
max_concurrent_jobs 4
linktree #{getenv MT_RUN_AREA_HOME}/links

[jobtools]
useshell yes
launcher nbfind

[env-override]

Modified tests/installall/tests/ffcall/download.sh from [6f292815bb] to [4f613a1743].

1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

# Run your step here

source $PREFIX/buildsetup.sh

if ! [[ -e i${DOWNLOADS}/ffcall.tar.gz ]] ; then
    (cd ${DOWNLOADS};wget http://www.kiatoa.com/matt/iup/ffcall.tar.gz )
fi

tar xfvz ${DOWNLOADS}/ffcall.tar.gz

ls -l ffcall






|






1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

# Run your step here

source $PREFIX/buildsetup.sh

if ! [[ -e ${DOWNLOADS}/ffcall.tar.gz ]] ; then
    (cd ${DOWNLOADS};wget http://www.kiatoa.com/matt/iup/ffcall.tar.gz )
fi

tar xfvz ${DOWNLOADS}/ffcall.tar.gz

ls -l ffcall