6743dfe08f
Adds tests according to the CI wiki [0] specifically the standard test interface in the spec [1]. [0]: https://fedoraproject.org/wiki/CI [1]: https://fedoraproject.org/wiki/Changes/InvokingTests
10 lines
111 B
Bash
10 lines
111 B
Bash
#!/bin/bash
|
|
|
|
if [ -s /tmp/run-job.lock ]; then
|
|
exit 0
|
|
fi
|
|
|
|
echo $PPID > /tmp/run-job.lock
|
|
sleep 1234567
|
|
exit 0
|