#!/bin/bash sudo echo "Setup sudo authentication" test_type=${1:-until} wait_timeout=${2:-5} echo "Starting test to wait for $wait_timeout seconds" ./clock_changes --type $test_type --time $wait_timeout & echo "Adjusting time to 01:00:00" sudo date -s 01:00:00 echo "Waiting..." wait echo "Test complete, please check your system clock" date