@@ -28,14 +28,14 @@ hyper::test::remove_image() {
2828
2929hyper::test::exitcode () {
3030 echo " Pod exit code test"
31- res=$( sudo hyperctl run --rm busybox sh -c " exit 17" > /dev/null 2>&1 ; echo $? )
31+ res=$( sudo hyperctl run --rm hyperhq/ busybox sh -c " exit 17" > /dev/null 2>&1 ; echo $? )
3232 echo " should return 17, return: $res "
3333 test $res -eq 17
3434}
3535
3636hyper::test::exec () {
3737 echo " Pod exec and exit code test"
38- id=$( sudo hyperctl run -d busybox /bin/sh | sed -ne " s/POD id is \(.*\)/\1/p" )
38+ id=$( sudo hyperctl run -d hyperhq/ busybox /bin/sh | sed -ne " s/POD id is \(.*\)/\1/p" )
3939 echo " test pod ID is $id "
4040 res=$( sudo hyperctl exec $id sh -c " exit 37" > /dev/null 2>&1 ; echo $? )
4141 echo " should return 37, return: $res "
@@ -147,7 +147,7 @@ hyper::test::integration() {
147147
148148hyper::test::execvm () {
149149 echo " Pod execvm echo test"
150- id=$( sudo hyperctl run -d busybox /bin/sh | sed -ne " s/POD id is \(.*\)/\1/p" )
150+ id=$( sudo hyperctl run -d hyperhq/ busybox /bin/sh | sed -ne " s/POD id is \(.*\)/\1/p" )
151151 echo " test pod ID is $id "
152152 res=$( sudo hyperctl exec -m $id /sbin/busybox sh -c " echo aaa" )
153153 echo " should return aaa, actual: $res "
@@ -221,7 +221,7 @@ hyper::test::force_kill_container() {
221221# regression test for #577
222222hyper::test::container_logs_no_newline () {
223223 echo " Container logs without newlines"
224- id=$( sudo hyperctl run -d busybox echo -n foobar | sed -ne " s/POD id is \(.*\)/\1/p" )
224+ id=$( sudo hyperctl run -d hyperhq/ busybox echo -n foobar | sed -ne " s/POD id is \(.*\)/\1/p" )
225225 sleep 3 # sleep a bit to let logger kick in
226226 res=$( sudo hyperctl logs $id )
227227 sudo hyperctl rm $id
262262 else
263263 return 1
264264 fi
265- done < <( sudo hyperctl run -t --rm --publish 3000:1300 busybox:latest sh -c ' echo "start" ; nc -l -p 1300' )
265+ done < <( sudo hyperctl run -t --rm --publish 3000:1300 hyperhq/ busybox:latest sh -c ' echo "start" ; nc -l -p 1300' )
266266}
0 commit comments