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