Skip to content

Commit ffda11d

Browse files
committed
- moved testcase
1 parent f221daf commit ffda11d

File tree

6 files changed

+23
-1
lines changed

6 files changed

+23
-1
lines changed

configure.ac

+1
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ AC_CONFIG_FILES([
213213
examples/c/Makefile
214214
examples/c++-lib/Makefile
215215
dbus/Makefile
216+
dbus/testsuite/Makefile
216217
server/Makefile
217218
client/Makefile
218219
client/utils/Makefile

dbus/Makefile.am

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
# Makefile.am for snapper/dbus
33
#
44

5+
SUBDIRS = . testsuite
6+
57
AM_CPPFLAGS = -I$(top_srcdir) $(DBUS_CFLAGS)
68

79
noinst_LTLIBRARIES = libdbus.la

dbus/testsuite/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.log
2+
*.o
3+
*.test
4+
*.trs
5+
test-suite.log

dbus/testsuite/Makefile.am

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#
2+
# Makefile.am for snapper/dbus/testsuite
3+
#
4+
5+
AM_CPPFLAGS = -I$(top_srcdir) $(DBUS_CFLAGS)
6+
7+
LDADD = ../../snapper/libsnapper.la ../libdbus.la -lboost_unit_test_framework
8+
9+
check_PROGRAMS = escape.test
10+
11+
TESTS = $(check_PROGRAMS)
12+
13+
AM_DEFAULT_SOURCE_EXT = .cc
14+
File renamed without changes.

testsuite/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ AM_CPPFLAGS = -I$(top_srcdir) $(DBUS_CFLAGS)
77
LDADD = ../snapper/libsnapper.la ../dbus/libdbus.la -lboost_unit_test_framework
88

99
check_PROGRAMS = sysconfig-get1.test dirname1.test basename1.test \
10-
equal-date.test dbus-escape.test cmp-lt.test humanstring.test uuid.test \
10+
equal-date.test cmp-lt.test humanstring.test uuid.test \
1111
table.test table-formatter.test csv-formatter.test json-formatter.test \
1212
getopts.test scan-datetime.test root-prefix.test range.test limit.test
1313

0 commit comments

Comments
 (0)