Skip to content

Commit 15b17a3

Browse files
committed
Extra dist tests
1 parent fe4b48e commit 15b17a3

File tree

20 files changed

+104
-1
lines changed

20 files changed

+104
-1
lines changed

Makefile.am

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ SUBDIRS = \
44
data \
55
module \
66
po \
7-
sendto
7+
sendto \
8+
test
89

910
DIST_DOCS = \
1011
CHANGELOG.md \

configure.ac

+18
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,24 @@ data/configs/org.blueman.Mechanism.service
318318
module/Makefile
319319
po/Makefile.in
320320
sendto/Makefile
321+
test/Makefile
322+
test/apps/Makefile
323+
test/bluez/Makefile
324+
test/bluez/obex/Makefile
325+
test/gui/Makefile
326+
test/gui/applet/Makefile
327+
test/gui/manager/Makefile
328+
test/main/Makefile
329+
test/main/applet/Makefile
330+
test/main/indicators/Makefile
331+
test/module/Makefile
332+
test/plugins/Makefile
333+
test/plugins/applet/Makefile
334+
test/plugins/manager/Makefile
335+
test/plugins/mechanism/Makefile
336+
test/plugins/services/Makefile
337+
test/services/Makefile
338+
test/services/meta/Makefile
321339
])
322340

323341

test/Makefile.am

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
SUBDIRS = \
2+
apps \
3+
bluez \
4+
gui \
5+
main \
6+
module \
7+
plugins \
8+
services
9+
10+
EXTRA_DIST = \
11+
__init__.py \
12+
test_imports.py \
13+
test_gobject.py

test/apps/Makefile.am

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
EXTRA_DIST = \
2+
__init__.py

test/bluez/Makefile.am

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
SUBDIRS = \
2+
obex
3+
4+
EXTRA_DIST = \
5+
__init__.py \
6+
test_imports.py \
7+
test_manager.py

test/bluez/obex/Makefile.am

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
EXTRA_DIST = \
2+
__init__.py \
3+
test_imports.py \
4+
test_manager.py

test/gui/Makefile.am

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
SUBDIRS = \
2+
applet \
3+
manager
4+
5+
EXTRA_DIST = \
6+
__init__.py \
7+
test_imports.py

test/gui/applet/Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
EXTRA_DIST = \
2+
__init__.py \
3+
test_imports.py

test/gui/manager/Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
EXTRA_DIST = \
2+
__init__.py \
3+
test_imports.py

test/main/Makefile.am

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
SUBDIRS = \
2+
applet \
3+
indicators
4+
5+
EXTRA_DIST = \
6+
__init__.py \
7+
test_imports.py \
8+
test_dbus_proxies.py \
9+
test_pulseaudio_utils.py

test/main/applet/Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
EXTRA_DIST = \
2+
__init__.py \
3+
test_imports.py

test/main/indicators/Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
EXTRA_DIST = \
2+
__init__.py \
3+
test_imports.py

test/module/Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
EXTRA_DIST = \
2+
__init__.py \
3+
test_imports.py

test/plugins/Makefile.am

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
SUBDIRS = \
2+
applet \
3+
manager \
4+
mechanism \
5+
services
6+
7+
EXTRA_DIST = \
8+
__init__.py \
9+
test_imports.py

test/plugins/applet/Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
EXTRA_DIST = \
2+
__init__.py \
3+
test_imports.py

test/plugins/manager/Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
EXTRA_DIST = \
2+
__init__.py \
3+
test_imports.py

test/plugins/mechanism/Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
EXTRA_DIST = \
2+
__init__.py \
3+
test_imports.py

test/plugins/services/Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
EXTRA_DIST = \
2+
__init__.py \
3+
test_imports.py

test/services/Makefile.am

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
SUBDIRS = \
2+
meta
3+
4+
EXTRA_DIST = \
5+
__init__.py \
6+
test_imports.py

test/services/meta/Makefile.am

Whitespace-only changes.

0 commit comments

Comments
 (0)