tests: create files that list the available tests
authorThomas Wood <thomas.wood@intel.com>
Wed, 2 Apr 2014 10:41:43 +0000 (11:41 +0100)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 2 Apr 2014 11:50:28 +0000 (13:50 +0200)
Add Makefile targets to create two text files containing the list of
available single and multi-test programs. This enables the tests to be
enumerated without requiring the build system.

Signed-off-by: Thomas Wood <thomas.wood@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
tests/.gitignore
tests/Makefile.am

index 8b94613..146bab0 100644 (file)
@@ -117,6 +117,7 @@ kms_pipe_crc_basic
 kms_plane
 kms_render
 kms_setmode
+multi-tests.txt
 pm_lpsp
 pm_pc8
 pm_psr
@@ -127,5 +128,6 @@ prime_nv_pcopy
 prime_nv_test
 prime_self_import
 prime_udl
+single-tests.txt
 template
 testdisplay
index ba05eac..c26a3d0 100644 (file)
@@ -5,6 +5,8 @@ if HAVE_NOUVEAU
 endif
 
 if BUILD_TESTS
+all-local: single-tests.txt multi-tests.txt
+
 list-single-tests:
        @echo TESTLIST
        @echo ${single_kernel_tests}
@@ -15,10 +17,20 @@ list-multi-tests:
        @echo ${multi_kernel_tests}
        @echo END TESTLIST
 
+single-tests.txt:
+       @echo TESTLIST > $@
+       @echo ${single_kernel_tests} >> $@
+       @echo END TESTLIST >> $@
+
+multi-tests.txt:
+       @echo TESTLIST > $@
+       @echo ${multi_kernel_tests} >> $@
+       @echo END TESTLIST >> $@
+
 EXTRA_PROGRAMS = $(TESTS_progs) $(TESTS_progs_M) $(HANG) $(TESTS_testsuite)
 EXTRA_DIST = $(TESTS_scripts) $(TESTS_scripts_M) $(scripts) $(IMAGES) $(common_files)
 
-CLEANFILES = $(EXTRA_PROGRAMS)
+CLEANFILES = $(EXTRA_PROGRAMS) single-tests.txt multi-tests.txt
 
 AM_CFLAGS = $(DRM_CFLAGS) $(CWARNFLAGS) \
        -I$(srcdir)/.. \