diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/virtual.conf | 36 |
2 files changed, 37 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index f51967bd..893fa7d9 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -44,5 +44,5 @@ vsync.avi: mkvsync.sh clean-vsync-avi: rm -rf vsync.avi .build.tmp -EXTRA_DIST = README mkvsync.sh tearing.mp4 +EXTRA_DIST = README mkvsync.sh tearing.mp4 virtual.conf clean-local: clean-vsync-avi diff --git a/test/virtual.conf b/test/virtual.conf new file mode 100644 index 00000000..f9d037f2 --- /dev/null +++ b/test/virtual.conf @@ -0,0 +1,36 @@ +Section "Device" + Identifier "Device0" + Driver "intel" + Option "ZaphodHeads" "LVDS1" + Option "VirtualHeads" "1" + BusID "PCI:0:2:0" + Screen 0 +EndSection + +Section "Device" + Identifier "Device1" + Driver "intel" + Option "ZaphodHeads" "HDMI1" + BusID "PCI:0:2:0" + Screen 1 +EndSection + +Section "Screen" + Identifier "Screen0" + Device "Device0" +EndSection + +Section "Screen" + Identifier "Screen1" + Device "Device1" +EndSection + +Section "ServerFlags" + Option "AutoAddGPU" "False" +EndSection + +Section "ServerLayout" + Identifier "ServerLayout0" + Screen 0 "Screen0" 0 0 + Screen 1 "Screen1" 0 0 +EndSection |