Home | History | Annotate | Download | only in hdrtst

Lines Matching full:echo

41 	@echo Please read this Makefile for more information.
42 @echo run \'$(MAKE) check\' to run the test
55 @echo "All header tests have finished. If deprecation #errors appeared, "
56 @echo " add files to hdrtst/dfiles.txt"
57 @echo "#################################################################"
58 @echo
65 @echo "C++ test #######################################################"
67 @echo 'Testing all header files under C++'
68 @echo 'the number after the hyphen (-) refers to the exit code - should be zero!'
71 echo $(ECHO_N) "$(E_CXX) unicode/$$incfile.h - $(ECHO_C)" ; \
72 echo '#include "'unicode/$$incfile'.h"' > ht_$$incfile.cpp ; \
73 echo 'void junk(){}' >> ht_$$incfile.cpp ; \
75 echo $$? ; \
79 @echo "Layout test #######################################################"
81 @echo 'Testing all layout files under C++'
82 @echo 'the number after the hyphen (-) refers to the exit code - should be zero!'
85 echo $(ECHO_N) "$(E_CXX_L) layout/$$incfile.h - $(ECHO_C)" ; \
86 echo '#include "'layout/$$incfile'.h"' > ht_$$incfile.cpp ; \
87 echo 'void junk(){}' >> ht_$$incfile.cpp ; \
89 echo $$? ; \
94 @echo "Deprecation #######################################################"
95 @echo 'Should be 1 in each case if file is properly obsoleted.'
99 echo $(ECHO_N) "$(E_D) unicode/$$incfile.h - $(ECHO_C)" ; \
100 echo '#include "'unicode/$$incfile'.h"' > ht_$$incfile.cpp ; \
101 echo 'void junk(){}' >> ht_$$incfile.cpp ; \
102 echo > ht_dep.junk ; \
105 echo $$RES ; \
106 fgrep -q "$$incfile.h header is obsolete" ht_dep.junk || echo "** FAIL Header unicode/$$incfile.h is not obsoleted properly" ; \
109 @echo "$(E_D): Done. (It is possible there are no deprecated headers at the moment.)"
115 @echo "C Test #######################################################"
116 @echo " (if any C++ files show up here, stop the test and add them to hdrtst/cxxfiles.txt) "
118 @echo Building test harness for header files in ../../common and ../../i18n
119 @echo 'the number after the hyphen (-) refers to the exit code - should be zero!'
122 echo $(ECHO_N) "$(E_C) unicode/$$incfile.h - $(ECHO_C)" ; \
123 echo '#include "'unicode/$$incfile'.h"' > ht_$$incfile.c ; \
124 echo 'void junk(void);' >> ht_$$incfile.c ; \
125 echo 'void junk(){}' >> ht_$$incfile.c ; \
128 echo $$RES ; \
132 @echo "U_HIDE_DRAFT_API Test #######################################################"
134 @echo Building test harness for header files in ../../common and ../../i18n
135 @echo 'the number after the hyphen (-) refers to the exit code - should be zero!'
138 echo $(ECHO_N) "$(E_DRF) unicode/$$incfile.h - $(ECHO_C)" ; \
139 echo '#define U_HIDE_DRAFT_API' > hd_$$incfile.c; \
140 echo '#include "'unicode/$$incfile'.h"' >> ht_$$incfile.c ; \
141 echo 'void junk(void);' >> hd_$$incfile.c ; \
142 echo 'void junk(){}' >> hd_$$incfile.c ; \
145 echo $$RES ; \
149 @echo "U_HIDE_DEPRECATED_API Test #######################################################"
151 @echo Building test harness for header files in ../../common and ../../i18n
152 @echo 'the number after the hyphen (-) refers to the exit code - should be zero!'
155 echo $(ECHO_N) "$(E_DEP) unicode/$$incfile.h - $(ECHO_C)" ; \
156 echo '#define U_HIDE_DEPRECATED_API' > hdp_$$incfile.c; \
157 echo '#include "'unicode/$$incfile'.h"' >> hdp_$$incfile.c ; \
158 echo 'void junk(void);' >> hdp_$$incfile.c ; \
159 echo 'void junk(){}' >> hdp_$$incfile.c ; \
162 echo $$RES ; \
166 @echo "U_HIDE_INTERNAL_API Test #######################################################"
168 @echo Building test harness for header files in ../../common and ../../i18n
169 @echo 'the number after the hyphen (-) refers to the exit code - should be zero!'
172 echo $(ECHO_N) "$(E_INT) unicode/$$incfile.h - $(ECHO_C)" ; \
173 echo '#define U_HIDE_INTERNAL_API' > hin_$$incfile.c; \
174 echo '#include "'unicode/$$incfile'.h"' >> hin_$$incfile.c ; \
175 echo 'void junk(void);' >> hin_$$incfile.c ; \
176 echo 'void junk(){}' >> hin_$$incfile.c ; \
179 echo $$RES ; \
183 @echo "U_HIDE_OBSOLETE_API Test #######################################################"
185 @echo Building test harness for header files in ../../common and ../../i18n
186 @echo 'the number after the hyphen (-) refers to the exit code - should be zero!'
189 echo $(ECHO_N) "$(E_OBS) unicode/$$incfile.h - $(ECHO_C)" ; \
190 echo '#define U_HIDE_OBSOLETE_API' > hob_$$incfile.c; \
191 echo '#include "'unicode/$$incfile'.h"' >> hob_$$incfile.c ; \
192 echo 'void junk(void);' >> hob_$$incfile.c ; \
193 echo 'void junk(){}' >> hob_$$incfile.c ; \
196 echo $$RES ; \