summaryrefslogtreecommitdiff
path: root/t/internals.tap
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-07-21 14:31:20 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-07-21 14:46:46 +0200
commitd777738470269e890c1de8821ab0d8c9d8f5c81c (patch)
tree9cb1b0f272b70cdd4d88f8badc81c128cc6885a3 /t/internals.tap
parent8715fbef20aef483ed4c9607b0f8aa3a59e2cb09 (diff)
downloadautomake-d777738470269e890c1de8821ab0d8c9d8f5c81c.tar.gz
[ng] rename: am__tolower -> am.util.tolower
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't/internals.tap')
-rwxr-xr-xt/internals.tap30
1 files changed, 15 insertions, 15 deletions
diff --git a/t/internals.tap b/t/internals.tap
index b5085021b..256784cf0 100755
--- a/t/internals.tap
+++ b/t/internals.tap
@@ -131,20 +131,20 @@ test-toupper:
.PHONY: test-tolower
test-tolower:
- test '$(call am__tolower,A)' = a
- test '$(call am__tolower,a)' = a
- test '$(call am__tolower,ABA)' = aba
- test '$(call am__tolower,A B)' = 'a b'
- test '$(call am__tolower, A b)' = ' a b'
- test '$(call am__tolower,aB )' = 'ab '
- test '$(call am__tolower,a b C )' = 'a b c '
- test '$(call am__tolower,0)' = 0
- test '$(call am__tolower,0D)' = 0d
- test '$(call am__tolower,@:&/?-)' = '@:&/?-'
- test '$(call am__tolower,a@B)' = a@b
- test '$(call am__tolower,ZXZXZXzxzXZXZXZXZX)' = zxzxzxzxzxzxzxzxzx
- test '$(call am__tolower,$(upper))' = '$(lower)'
- test '$(call am__tolower,$(lower))' = '$(lower)'
+ test '$(call am.util.tolower,A)' = a
+ test '$(call am.util.tolower,a)' = a
+ test '$(call am.util.tolower,ABA)' = aba
+ test '$(call am.util.tolower,A B)' = 'a b'
+ test '$(call am.util.tolower, A b)' = ' a b'
+ test '$(call am.util.tolower,aB )' = 'ab '
+ test '$(call am.util.tolower,a b C )' = 'a b c '
+ test '$(call am.util.tolower,0)' = 0
+ test '$(call am.util.tolower,0D)' = 0d
+ test '$(call am.util.tolower,@:&/?-)' = '@:&/?-'
+ test '$(call am.util.tolower,a@B)' = a@b
+ test '$(call am.util.tolower,ZXZXZXzxzXZXZXZXZX)' = zxzxzxzxzxzxzxzxzx
+ test '$(call am.util.tolower,$(upper))' = '$(lower)'
+ test '$(call am.util.tolower,$(lower))' = '$(lower)'
.PHONY: test-canonicalize
test-canonicalize:
@@ -189,7 +189,7 @@ command_ok_ am.util.strip-first-word $MAKE test-strip-first-word
command_ok_ am.util.strip-last-word $MAKE test-strip-last-word
command_ok_ am.util.uniq $MAKE test-uniq
command_ok_ am.util.strip-suffixes $MAKE test-strip-suffixes
-command_ok_ am__tolower $MAKE test-tolower
+command_ok_ am.util.tolower $MAKE test-tolower
command_ok_ am__toupper $MAKE test-toupper
command_ok_ am__canon $MAKE test-canonicalize
command_ok_ "am__newline (1)" $MAKE test-newline-1