You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

59 lines
897 B

#!/usr/bin/env bash
# create a function to be called everytime the process exit
abort () {
rm exp.log job.log
}
trap 'abort' EXIT
set -euo pipefail
IFS='
'
script_dirS=$(cd -P "$(dirname "$BASH_SOURCE")" &>/dev/null && pwd)
SUBMITTED='student/job-regist.sh'
EXPECTED='solutions/job-regist.sh'
wait_bg_jobs () {
while [ -n "$(jobs | grep -i running)" ]; do
echo -n "."
sleep 1
done
echo
}
# test cases
one_process () {
sleep 2 &
source $script_dirS/$1
}
two_processes () {
sleep 3 &
sleep 4 &
source $script_dirS/$1
}
one_process_and_kill () {
echo do something
}
one_process_and_suspend () {
echo do something
}
# end of test cases
challenge () {
echo "testing $1 case"
$1 $SUBMITTED &
$1 $EXPECTED &
wait_bg_jobs
diff <(cat exp.log) <(cat job.log)
}
challenge one_process
challenge two_processes