Add very simple test cases
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
15
tests/run_one_test.sh
Executable file
15
tests/run_one_test.sh
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
if [ -z $DISPLAY ]; then
|
||||
exec xvfb-run -s "+extension composite" -a $0 $1 $2
|
||||
fi
|
||||
|
||||
echo "Running test $2"
|
||||
|
||||
# TODO keep the log file, and parse it to see if test is successful
|
||||
($1 --experimental-backends --backend dummy --log-level=debug --log-file=/dev/null) &
|
||||
compton_pid=$!
|
||||
$2
|
||||
|
||||
kill -INT $compton_pid
|
||||
|
||||
|
||||
Reference in New Issue
Block a user