#! /bin/bash
#
# @file         ¬timeout.bash
#               This test ensures that timeout cutout off works by setting up a passing test
#               and forcing it to fail by cutting it off. Then the pass gets inverted in the
#               top-level code because the test filename indicates an inverted test.
#
# @author       Eddie Roosenmaallen, eddie@kingds.network
# @date         Aug 2022
#
# peter-timeout: 1

echo "This will sleep 30 seconds then 'pass', but really it should be killed after 1"
sleep 30
exit 0
