mirror of
https://github.com/yshui/picom.git
synced 2024-10-27 05:24:17 -04:00
6bc8cfc3ce
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
15 lines
314 B
Bash
Executable file
15 lines
314 B
Bash
Executable file
#!/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
|
|
|
|
|