]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
[ng] rename: am__check_cook_with_exeext -> am.test-suite.cook-with-exeext
authorStefano Lattarini <stefano.lattarini@gmail.com>
Mon, 30 Jul 2012 08:33:28 +0000 (10:33 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Mon, 30 Jul 2012 09:01:44 +0000 (11:01 +0200)
* lib/am/serial-tests.am: Here.  Also, rename 'am__check_cook_with_exeext_1'
as 'am.test-suite.cook-with-exeext.helper'.

Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
lib/am/serial-tests.am

index 7781fdaaa28e8a890781c9c2be6961548fae59b9..3170c2716abac596d42ecf8f56c239345b72821c 100644 (file)
 
 ifdef EXEEXT
 ## This is suboptimal, but we need to preserve the order of $(TESTS).
-am__check_cook_with_exeext_1 = \
+am.test-suite.cook-with-exeext.helper = \
     $(if $(filter $(am.all-progs), $1), $1$(EXEEXT), $1)
-am__check_cook_with_exeext = \
-    $(strip $(foreach t, $1, $(call $(0)_1, $t)))
+am.test-suite.cook-with-exeext = \
+    $(strip $(foreach t, $1, $(call $0.helper, $t)))
 else
-am__check_cook_with_exeext = $(strip $1)
+am.test-suite.cook-with-exeext = $(strip $1)
 endif
 
 # TESTS can contain compiled programs, in which case we might have
 # to account for $(EXEEXT) appending.  For matching purposes, we
 # need to adjust XFAIL_TESTS as well.
-am__cooked_tests = $(call am__check_cook_with_exeext, $(TESTS))
-am__cooked_xfail_tests = $(call am__check_cook_with_exeext, $(XFAIL_TESTS))
+am__cooked_tests = \
+  $(call am.test-suite.cook-with-exeext, $(TESTS))
+am__cooked_xfail_tests = \
+  $(call am.test-suite.cook-with-exeext, $(XFAIL_TESTS))
 
 .PHONY: check-TESTS
 check-TESTS: $(am__cooked_tests)