summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-01-28 12:26:25 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-01-30 09:46:35 +0100
commitb015c0144367ba7fc88ff9831a0fee812fd6ed29 (patch)
treef42bcfbd9369118c4a3fa731b6aa021074847b70
parentrecord: Add enum value for each event (diff)
downloadrtems-b015c0144367ba7fc88ff9831a0fee812fd6ed29.tar.bz2
build: Do not install test programs
-rw-r--r--testsuites/aclocal/env-rtemsbsp.m42
-rw-r--r--testsuites/benchmarks/Makefile.am4
-rw-r--r--testsuites/fstests/Makefile.am4
-rw-r--r--testsuites/libtests/Makefile.am3
-rw-r--r--testsuites/mptests/Makefile.am4
-rw-r--r--testsuites/psxtests/Makefile.am4
-rw-r--r--testsuites/psxtmtests/Makefile.am3
-rw-r--r--testsuites/rhealstone/Makefile.am4
-rw-r--r--testsuites/samples/Makefile.am4
-rw-r--r--testsuites/smptests/Makefile.am4
-rw-r--r--testsuites/sptests/Makefile.am4
-rw-r--r--testsuites/tmtests/Makefile.am4
12 files changed, 11 insertions, 33 deletions
diff --git a/testsuites/aclocal/env-rtemsbsp.m4 b/testsuites/aclocal/env-rtemsbsp.m4
index 3f70348faf..1cca7d9f83 100644
--- a/testsuites/aclocal/env-rtemsbsp.m4
+++ b/testsuites/aclocal/env-rtemsbsp.m4
@@ -24,6 +24,4 @@ AC_SUBST(RTEMS_BSP)
AC_SUBST([PROJECT_INCLUDE],["\$(PROJECT_ROOT)/lib/include"])
AC_SUBST([PROJECT_LIB],["\$(PROJECT_ROOT)/lib"])
AC_SUBST([PROJECT_RELEASE],["\$(PROJECT_ROOT)"])
-
-AC_SUBST([rtems_testsdir],["\$(libdir)/rtems-][_RTEMS_API][/tests"])
])
diff --git a/testsuites/benchmarks/Makefile.am b/testsuites/benchmarks/Makefile.am
index f4a16417fb..8b49c40fa1 100644
--- a/testsuites/benchmarks/Makefile.am
+++ b/testsuites/benchmarks/Makefile.am
@@ -43,6 +43,4 @@ whetstone_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_whetstone) \
whetstone_LDADD = -lm $(LDADD)
endif
-rtems_tests_PROGRAMS = $(benchmarks)
-dist_rtems_tests_DATA = $(benchmark_screens) $(benchmark_docs)
-
+noinst_PROGRAMS = $(benchmarks)
diff --git a/testsuites/fstests/Makefile.am b/testsuites/fstests/Makefile.am
index 83d3ae82ff..3e787bc773 100644
--- a/testsuites/fstests/Makefile.am
+++ b/testsuites/fstests/Makefile.am
@@ -640,6 +640,4 @@ mrfs_fstime_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_mrfs_fstime) \
$(support_includes) $(test_includes) -I$(top_srcdir)/mrfs_support
endif
-rtems_tests_PROGRAMS = $(fs_tests)
-dist_rtems_tests_DATA = $(fs_screens) $(fs_docs)
-
+noinst_PROGRAMS = $(fs_tests)
diff --git a/testsuites/libtests/Makefile.am b/testsuites/libtests/Makefile.am
index 411c12ead1..dfeea3af6f 100644
--- a/testsuites/libtests/Makefile.am
+++ b/testsuites/libtests/Makefile.am
@@ -1414,5 +1414,4 @@ writev_norun_SOURCES = POSIX/writev.c
writev_norun_LDADD = $(RTEMS_ROOT)cpukit/librtemsdefaultconfig.a $(LDADD)
endif
-rtems_tests_PROGRAMS = $(lib_tests)
-dist_rtems_tests_DATA = $(lib_screens) $(lib_docs)
+noinst_PROGRAMS = $(lib_tests)
diff --git a/testsuites/mptests/Makefile.am b/testsuites/mptests/Makefile.am
index 3624642cba..7111e2d109 100644
--- a/testsuites/mptests/Makefile.am
+++ b/testsuites/mptests/Makefile.am
@@ -243,6 +243,4 @@ mp14_node2_CPPFLAGS = -DNODE_NUMBER=2 $(AM_CPPFLAGS) $(TEST_FLAGS_mp14) \
endif
endif
-rtems_tests_PROGRAMS = $(mp_tests)
-dist_rtems_tests_DATA = $(mp_screens) $(mp_docs)
-
+noinst_PROGRAMS = $(mp_tests)
diff --git a/testsuites/psxtests/Makefile.am b/testsuites/psxtests/Makefile.am
index 3b1c36338a..749258cc0c 100644
--- a/testsuites/psxtests/Makefile.am
+++ b/testsuites/psxtests/Makefile.am
@@ -1894,7 +1894,5 @@ lib_a_SOURCES = psxhdrs/devctl/posix_devctl.c \
## lib_a_SOURCES += psxhdrs/utmpx/pututxline.c See ticket #3661
endif
-rtems_tests_PROGRAMS = $(psx_tests)
+noinst_PROGRAMS = $(psx_tests)
noinst_LIBRARIES = $(psx_lib)
-dist_rtems_tests_DATA = $(psx_screens) $(psx_docs)
-
diff --git a/testsuites/psxtmtests/Makefile.am b/testsuites/psxtmtests/Makefile.am
index 2702e0b035..1f22850ebf 100644
--- a/testsuites/psxtmtests/Makefile.am
+++ b/testsuites/psxtmtests/Makefile.am
@@ -636,5 +636,4 @@ psxtmthreadattr01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxtmthreadattr01) \
-DOPERATION_COUNT=$(OPERATION_COUNT)
endif
-rtems_tests_PROGRAMS = $(psxtm_tests)
-dist_rtems_tests_DATA = $(psxtm_screens) $(psxtm_docs)
+noinst_PROGRAMS = $(psxtm_tests)
diff --git a/testsuites/rhealstone/Makefile.am b/testsuites/rhealstone/Makefile.am
index 574c9cf455..bb214357fc 100644
--- a/testsuites/rhealstone/Makefile.am
+++ b/testsuites/rhealstone/Makefile.am
@@ -67,6 +67,4 @@ rhtaskswitch_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_rhtaskswitch) \
$(support_includes) -I$(top_srcdir)/../tmtests/include
endif
-rtems_tests_PROGRAMS = $(rhealstones)
-dist_rtems_tests_DATA = $(rhealstone_screens) $(rhealstone_docs)
-
+noinst_PROGRAMS = $(rhealstones)
diff --git a/testsuites/samples/Makefile.am b/testsuites/samples/Makefile.am
index f78d75ea04..f05c9a3689 100644
--- a/testsuites/samples/Makefile.am
+++ b/testsuites/samples/Makefile.am
@@ -156,6 +156,4 @@ unlimited_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_unlimited) \
$(support_includes)
endif
-rtems_tests_PROGRAMS = $(samples)
-dist_rtems_tests_DATA = $(sample_screens) $(sample_docs)
-
+noinst_PROGRAMS = $(samples)
diff --git a/testsuites/smptests/Makefile.am b/testsuites/smptests/Makefile.am
index b5c2803d02..01076abaa9 100644
--- a/testsuites/smptests/Makefile.am
+++ b/testsuites/smptests/Makefile.am
@@ -659,6 +659,4 @@ smpwakeafter01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_smpwakeafter01) \
endif
endif
-rtems_tests_PROGRAMS = $(smp_tests)
-dist_rtems_tests_DATA = $(smp_screens) $(smp_docs)
-
+noinst_PROGRAMS = $(smp_tests)
diff --git a/testsuites/sptests/Makefile.am b/testsuites/sptests/Makefile.am
index 3648944d00..eae563051a 100644
--- a/testsuites/sptests/Makefile.am
+++ b/testsuites/sptests/Makefile.am
@@ -2062,7 +2062,5 @@ libsplinkersets01_a_SOURCES = splinkersets01/sets.c \
splinkersets01/items.c
endif
-rtems_tests_PROGRAMS = $(sp_tests)
+noinst_PROGRAMS = $(sp_tests)
noinst_LIBRARIES = $(sp_libs)
-dist_rtems_tests_DATA = $(sp_screens) $(sp_docs)
-
diff --git a/testsuites/tmtests/Makefile.am b/testsuites/tmtests/Makefile.am
index 0fe59d6480..08bad219cd 100644
--- a/testsuites/tmtests/Makefile.am
+++ b/testsuites/tmtests/Makefile.am
@@ -400,6 +400,4 @@ tmtimer01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tmtimer01) \
$(support_includes)
endif
-rtems_tests_PROGRAMS = $(tm_tests)
-dist_rtems_tests_DATA = $(tm_screens) $(tm_docs)
-
+noinst_PROGRAMS = $(tm_tests)