Home | History | Annotate | Download | only in printf

Lines Matching refs:PRINTF

28 # The printf command to test (if not a full path, $PATH will be examined)
30 : ${TEST_PRINTF:=/usr/bin/printf}
32 # This tests an external (filesystem) printf command
34 # For the actual code/tests see printf.sh
35 # (shared with tests for the shell builtin printf
51 $Running_under_ATF && atf_require_prog "${PRINTF%% *}"
55 ${PRINTF} "$@"
78 # See if we have a "printf" command in $PATH to test - pick the first
85 unset PRINTF
88 ( /* ) PRINTF="${TEST_PRINTF}" ;;
89 ( ./* | ../* ) PRINTF="${PWD}/${TEST_PRINTF}" ;;
103 PRINTF="${D}/${TEST_PRINTF}"
116 test -x "${PRINTF%% *}" || PRINTF=
118 case "${PRINTF}" in
121 define No_command 'Dummy test to skip no printf command'
136 MSG="${PRINTF}"
143 # All the code to actually run the test comes from printf.sh ...