Skip to content

Commit 662cdb1

Browse files
committed
[ISSUE-10]: first tests in /tests (separated configure / build)
1 parent a37f8b9 commit 662cdb1

15 files changed

Lines changed: 2488 additions & 20 deletions

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ missing
77
/nbproject/
88
/dist/
99
**/Makefile.in
10-
/autom4te.cache/
10+
autom4te.cache/

configure.ac

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,6 @@ AC_ARG_WITH([binaries], AS_HELP_STRING([--without-binaries], [Do not generate .b
1212
AM_CONDITIONAL([WITH_BINARIES], [test x$with_binaries != xno])
1313
AM_COND_IF([WITH_BINARIES],[ AC_MSG_NOTICE([generate .bin images]) ])
1414

15-
AC_CONFIG_SUBDIRS([src])
16-
AC_CONFIG_SUBDIRS([modules])
17-
AC_CONFIG_SUBDIRS([examples])
18-
AC_CONFIG_SUBDIRS([examples/0blink])
19-
AC_CONFIG_SUBDIRS([examples/0hello])
20-
AC_CONFIG_SUBDIRS([examples/0ledctrl])
21-
AC_CONFIG_SUBDIRS([examples/0timgalarm])
22-
AC_CONFIG_SUBDIRS([examples/0uart])
23-
AC_CONFIG_SUBDIRS([examples/0udma])
24-
AC_CONFIG_SUBDIRS([examples/1i2cssd1306])
25-
AC_CONFIG_SUBDIRS([examples/1rmtblink])
26-
AC_CONFIG_SUBDIRS([examples/1rmtdht])
27-
AC_CONFIG_SUBDIRS([examples/1rmtmorse])
28-
AC_CONFIG_SUBDIRS([examples/1rmtmusic])
29-
AC_CONFIG_SUBDIRS([examples/1rmttm1637])
30-
AC_CONFIG_SUBDIRS([examples/1rmtws2812])
31-
AC_CONFIG_SUBDIRS([examples/3prog1])
32-
AC_CONFIG_SUBDIRS([ld])
33-
3415
AC_CONFIG_FILES([
3516
Makefile
3617
src/Makefile

tests/AUTHORS

Whitespace-only changes.

tests/COPYING

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

tests/ChangeLog

Whitespace-only changes.

tests/INSTALL

Lines changed: 368 additions & 0 deletions
Large diffs are not rendered by default.

tests/Makefile.am

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
TESTS= \
2+
bytegen_test \
3+
bitgen_test
4+
5+
check_PROGRAMS = $(TESTS)
6+
7+
AM_CPPFLAGS = -I${top_srcdir}/../src
8+
LDADD = gentest_common.o
9+
10+
bitgen_test_SOURCES = bitgen_test.c ${top_srcdir}/../src/utils/generators.c
11+
bytegen_test_SOURCES = bytegen_test.c ${top_srcdir}/../src/utils/generators.c

tests/NEWS

Whitespace-only changes.

tests/README

Whitespace-only changes.

0 commit comments

Comments
 (0)