mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
12 lines
283 B
Makefile
12 lines
283 B
Makefile
unknown var = uval
|
|
|
|
all:
|
|
test "$(subst a,b,value)" = "vblue"
|
|
test "${subst a,b,va)lue}" = "vb)lue"
|
|
test "$(subst /,\,ab/c)" = "ab\c"
|
|
test '$(subst a,b,\\#)' = '\\#'
|
|
test "$( subst a,b,value)" = ""
|
|
test "$(Subst a,b,value)" = ""
|
|
test "$(unknown var)" = "uval"
|
|
@echo TEST-PASS
|