Skip to content

Commit

Permalink
update example generic IOC version
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Oct 4, 2024
1 parent b944b43 commit 08c1ab3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/sys-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ ioc_args=(
--name ${cont}
--entrypoint bash
-dit
ghcr.io/epics-containers/ioc-template-linux-developer:23.3.1
ghcr.io/epics-containers/ioc-template-example-developer:4.0.0
)
mounts=(
-v ${THIS_DIR}/samples/example-ibek-config:${config}
Expand All @@ -91,11 +91,11 @@ podman exec ${cont} pip install /ibek
podman exec -dit ${cont} bash -c "/epics/ioc/start.sh >> /ibek/start.log 2>&1"
# wait for ibek to get the IOC up and running.
for retry in {1..10} ; do
if check_pv 'test-ibek-ioc:EPICS_VERS' 'R7.0.7'; then break; fi
if check_pv 'test-ibek-ioc:EPICS_VERS' 'R7.0.8'; then break; fi
sleep 1
done
# output the log from the IOC
cat start.log
# verify expected PVs
check_pv 'test-ibek-ioc:EPICS_VERS' 'R7.0.7'
check_pv 'test-ibek-ioc:EPICS_VERS' 'R7.0.8'
check_ioc 'EXAMPLE:IBEK'

0 comments on commit 08c1ab3

Please sign in to comment.