mirror of
https://github.com/yshui/picom.git
synced 2024-10-27 05:24:17 -04:00
7e607bfe81
Experimental no longer. Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
19 lines
351 B
Bash
Executable file
19 lines
351 B
Bash
Executable file
#!/bin/sh
|
|
set -xe
|
|
if [ -z $DISPLAY ]; then
|
|
exec xvfb-run -s "+extension composite" -a $0 $1 $2 $3
|
|
fi
|
|
|
|
echo "Running test $2"
|
|
|
|
# TODO keep the log file, and parse it to see if test is successful
|
|
($1 --dbus --backend dummy --log-level=debug --log-file=$PWD/log --config=$2) &
|
|
main_pid=$!
|
|
$3
|
|
|
|
kill -INT $main_pid || true
|
|
cat log
|
|
rm log
|
|
wait $main_pid
|
|
|
|
|