diff --git a/.bldr.toml b/.bldr.toml index 6555ab2162..b1d531756b 100644 --- a/.bldr.toml +++ b/.bldr.toml @@ -73,3 +73,34 @@ plan_path = "test/fixtures/plans/simple-hooks" [test-probe] plan_path = "test-services/test-probe" + +[health-check-performance-00] +plan_path = "test/fixtures/health-check-performance/health-check-performance-00" +[health-check-performance-01] +plan_path = "test/fixtures/health-check-performance/health-check-performance-01" +[health-check-performance-02] +plan_path = "test/fixtures/health-check-performance/health-check-performance-02" +[health-check-performance-03] +plan_path = "test/fixtures/health-check-performance/health-check-performance-03" +[health-check-performance-04] +plan_path = "test/fixtures/health-check-performance/health-check-performance-04" +[health-check-performance-05] +plan_path = "test/fixtures/health-check-performance/health-check-performance-05" +[health-check-performance-06] +plan_path = "test/fixtures/health-check-performance/health-check-performance-06" +[health-check-performance-07] +plan_path = "test/fixtures/health-check-performance/health-check-performance-07" +[health-check-performance-08] +plan_path = "test/fixtures/health-check-performance/health-check-performance-08" +[health-check-performance-09] +plan_path = "test/fixtures/health-check-performance/health-check-performance-09" +[health-check-performance-10] +plan_path = "test/fixtures/health-check-performance/health-check-performance-10" +[health-check-performance-11] +plan_path = "test/fixtures/health-check-performance/health-check-performance-11" +[health-check-performance-12] +plan_path = "test/fixtures/health-check-performance/health-check-performance-12" +[health-check-performance-13] +plan_path = "test/fixtures/health-check-performance/health-check-performance-13" +[health-check-performance-14] +plan_path = "test/fixtures/health-check-performance/health-check-performance-14" diff --git a/test/fixtures/health-check-performance/health-check-performance-00/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-00/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-00/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-00/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-00/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-00/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-00/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-00/x86_64-linux/plan.sh new file mode 100644 index 0000000000..3d384d3d2d --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-00/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-00" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-00/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-00/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-00/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-00/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-00/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-00/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-00/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-00/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..1509121683 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-00/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-00" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0" diff --git a/test/fixtures/health-check-performance/health-check-performance-01/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-01/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-01/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-01/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-01/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-01/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-01/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-01/x86_64-linux/plan.sh new file mode 100644 index 0000000000..ec4b064cd2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-01/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-01" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-01/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-01/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-01/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-01/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-01/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-01/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-01/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-01/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..e35f45ebdd --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-01/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-01" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0" diff --git a/test/fixtures/health-check-performance/health-check-performance-02/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-02/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-02/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-02/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-02/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-02/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-02/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-02/x86_64-linux/plan.sh new file mode 100644 index 0000000000..157d4dbfa0 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-02/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-02" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-02/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-02/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-02/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-02/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-02/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-02/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-02/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-02/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..d05fe11c80 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-02/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-02" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0" diff --git a/test/fixtures/health-check-performance/health-check-performance-03/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-03/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-03/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-03/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-03/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-03/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-03/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-03/x86_64-linux/plan.sh new file mode 100644 index 0000000000..f35bd84927 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-03/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-03" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-03/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-03/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-03/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-03/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-03/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-03/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-03/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-03/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..9ec3af1dca --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-03/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-03" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0" diff --git a/test/fixtures/health-check-performance/health-check-performance-04/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-04/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-04/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-04/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-04/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-04/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-04/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-04/x86_64-linux/plan.sh new file mode 100644 index 0000000000..f227579566 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-04/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-04" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-04/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-04/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-04/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-04/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-04/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-04/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-04/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-04/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..9458ef0f55 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-04/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-04" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0" diff --git a/test/fixtures/health-check-performance/health-check-performance-05/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-05/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-05/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-05/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-05/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-05/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-05/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-05/x86_64-linux/plan.sh new file mode 100644 index 0000000000..dca8772258 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-05/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-05" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-05/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-05/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-05/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-05/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-05/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-05/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-05/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-05/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..52db0341bd --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-05/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-05" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0" diff --git a/test/fixtures/health-check-performance/health-check-performance-06/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-06/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-06/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-06/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-06/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-06/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-06/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-06/x86_64-linux/plan.sh new file mode 100644 index 0000000000..21dcbec676 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-06/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-06" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-06/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-06/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-06/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-06/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-06/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-06/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-06/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-06/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..6ee6c476e7 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-06/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-06" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0" diff --git a/test/fixtures/health-check-performance/health-check-performance-07/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-07/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-07/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-07/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-07/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-07/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-07/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-07/x86_64-linux/plan.sh new file mode 100644 index 0000000000..721d61e297 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-07/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-07" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-07/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-07/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-07/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-07/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-07/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-07/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-07/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-07/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..e238b3382e --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-07/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-07" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0" diff --git a/test/fixtures/health-check-performance/health-check-performance-08/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-08/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-08/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-08/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-08/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-08/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-08/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-08/x86_64-linux/plan.sh new file mode 100644 index 0000000000..8b74ea4575 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-08/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-08" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-08/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-08/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-08/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-08/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-08/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-08/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-08/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-08/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..e65dede9eb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-08/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-08" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0" diff --git a/test/fixtures/health-check-performance/health-check-performance-09/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-09/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-09/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-09/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-09/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-09/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-09/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-09/x86_64-linux/plan.sh new file mode 100644 index 0000000000..987b847c02 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-09/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-09" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-09/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-09/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-09/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-09/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-09/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-09/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-09/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-09/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..07fb7f152f --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-09/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-09" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0" diff --git a/test/fixtures/health-check-performance/health-check-performance-10/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-10/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-10/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-10/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-10/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-10/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-10/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-10/x86_64-linux/plan.sh new file mode 100644 index 0000000000..0ce329481a --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-10/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-10" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-10/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-10/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-10/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-10/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-10/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-10/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-10/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-10/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..7f6bf93e7e --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-10/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-10" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0" diff --git a/test/fixtures/health-check-performance/health-check-performance-11/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-11/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-11/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-11/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-11/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-11/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-11/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-11/x86_64-linux/plan.sh new file mode 100644 index 0000000000..706240419b --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-11/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-11" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-11/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-11/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-11/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-11/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-11/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-11/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-11/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-11/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..7122877539 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-11/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-11" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0" diff --git a/test/fixtures/health-check-performance/health-check-performance-12/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-12/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-12/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-12/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-12/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-12/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-12/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-12/x86_64-linux/plan.sh new file mode 100644 index 0000000000..3cf26739e2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-12/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-12" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-12/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-12/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-12/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-12/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-12/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-12/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-12/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-12/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..cdaebd28cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-12/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-12" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0" diff --git a/test/fixtures/health-check-performance/health-check-performance-13/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-13/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-13/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-13/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-13/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-13/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-13/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-13/x86_64-linux/plan.sh new file mode 100644 index 0000000000..3d86f2dde2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-13/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-13" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-13/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-13/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-13/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-13/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-13/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-13/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-13/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-13/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..0c72f0d01f --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-13/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-13" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0" diff --git a/test/fixtures/health-check-performance/health-check-performance-14/x86_64-linux/hooks/health-check.sh b/test/fixtures/health-check-performance/health-check-performance-14/x86_64-linux/hooks/health-check.sh new file mode 100644 index 0000000000..1f5ff3f3cb --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-14/x86_64-linux/hooks/health-check.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "health-check {{pkg.name}} {{pkg.version}} $$" diff --git a/test/fixtures/health-check-performance/health-check-performance-14/x86_64-linux/hooks/run.sh b/test/fixtures/health-check-performance/health-check-performance-14/x86_64-linux/hooks/run.sh new file mode 100644 index 0000000000..8256d3a599 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-14/x86_64-linux/hooks/run.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +while true +do + echo "run {{pkg.name}} {{pkg.version}} $$" + sleep 5 +done diff --git a/test/fixtures/health-check-performance/health-check-performance-14/x86_64-linux/plan.sh b/test/fixtures/health-check-performance/health-check-performance-14/x86_64-linux/plan.sh new file mode 100644 index 0000000000..a7d90b2700 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-14/x86_64-linux/plan.sh @@ -0,0 +1,7 @@ +pkg_name="health-check-performance-14" +pkg_origin="habitat-testing" +pkg_maintainer="The Habitat Maintainers " +pkg_version="0.0.0" + +do_build() { :; } +do_install() { :; } diff --git a/test/fixtures/health-check-performance/health-check-performance-14/x86_64-windows/hooks/health-check.ps1 b/test/fixtures/health-check-performance/health-check-performance-14/x86_64-windows/hooks/health-check.ps1 new file mode 100644 index 0000000000..d9270539f1 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-14/x86_64-windows/hooks/health-check.ps1 @@ -0,0 +1 @@ +Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" diff --git a/test/fixtures/health-check-performance/health-check-performance-14/x86_64-windows/hooks/run.ps1 b/test/fixtures/health-check-performance/health-check-performance-14/x86_64-windows/hooks/run.ps1 new file mode 100644 index 0000000000..667653cac2 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-14/x86_64-windows/hooks/run.ps1 @@ -0,0 +1,4 @@ +while ($true) { + Write-Output "RUN {{pkg.name}} {{pkg.version}} $PID" + Start-Sleep 5 +} diff --git a/test/fixtures/health-check-performance/health-check-performance-14/x86_64-windows/plan.ps1 b/test/fixtures/health-check-performance/health-check-performance-14/x86_64-windows/plan.ps1 new file mode 100644 index 0000000000..772c16eb80 --- /dev/null +++ b/test/fixtures/health-check-performance/health-check-performance-14/x86_64-windows/plan.ps1 @@ -0,0 +1,4 @@ +$pkg_name = "health-check-performance-14" +$pkg_origin = "habitat-testing" +$pkg_maintainer = "The Habitat Maintainers " +$pkg_version = "0.0.0"