1:: bus-test wrapper
2@echo off
3
4:: session bus address
5set DBUS_STARTER_BUS=tcp:host=localhost,port=1234
6
7if NOT "%1" == "" (
8	SET DATADIR=%1
9) else (
10	SET DATADIR=test\data
11)
12
13bin\bus-test.exe test\data
14
15