Home | History | Annotate | Download | only in testcase
      1 # TODO(ninja): This test is only for ckati. ninja: fix $(sort $(shell $(1)))
      2 # go: implement generic builtin find
      3 # ninja: $(sort $(shell "find .")) becomes "$( .) find"
      4 
      5 define run_find
      6 @echo $$ '$(strip $(1))'
      7 @echo $(sort $(shell $(1)))
      8 endef
      9 
     10 test1:
     11 	$(call run_find, find .)
     12