Skip to content

Commit ea04ad3

Browse files
committed
Added CI tests to build system
1 parent 2dc9665 commit ea04ad3

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

Diff for: Makefile.am

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
AUTOMAKE_OPTIONS = foreign no-dependencies
88

9-
SUBDIRS = src
9+
SUBDIRS = src tests
1010

1111
man_MANS = man/outguess.1 man/seek_script.1
1212

@@ -15,4 +15,4 @@ distclean-local:
1515
conf[a-zA-Z0-9][a-zA-Z0-9][a-zA-Z0-9][a-zA-Z0-9][a-zA-Z0-9][a-zA-Z0-9]
1616
rm -f aclocal.m4 compile config.* configure depcomp install-sh \
1717
Makefile.in missing src/Makefile.in src/jpeg-6b-steg/config.log \
18-
src/jpeg-6b-steg/config.status
18+
src/jpeg-6b-steg/config.status test-driver tests/Makefile.in

Diff for: autogen.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ if [ "$1" = "clean" -a ! -e Makefile ]
3535
then
3636
echo "Vanishing the code"
3737
rm -rf aclocal.m4 autom4te.cache compile confdefs.h config.* configure \
38-
depcomp install-sh Makefile.in missing src/Makefile.in
38+
depcomp install-sh Makefile.in missing src/Makefile.in test-driver \
39+
tests/Makefile.in
3940
exit 0
4041
fi
4142

Diff for: configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ if test $neederr = yes; then
6161
fi
6262
AM_CONDITIONAL([ERRMISS], [test x$ERRMISS = xtrue])
6363

64-
AC_CONFIG_FILES([Makefile src/Makefile])
64+
AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile])
6565
AC_OUTPUT

Diff for: tests/Makefile.am

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TESTS = test.sh

0 commit comments

Comments
 (0)