Lines Matching refs:command
26 # Test a simple convert-like command.
28 # test_convert command infile outfile
29 macro(test_convert command infile outfile)
33 message(STATUS Running "${MEMCHECK} ${command} ${native_infile} ${native_outfile}")
34 execute_process(COMMAND ${MEMCHECK} ${command} "${native_infile}" "${native_outfile}"
42 # Test a simple convert-like command.
44 # test_convert command infile outfile
45 macro(test_convert_multi command infile outfile)
52 message(STATUS Running "${MEMCHECK} ${command} ${native_infile} ${native_outfile}")
53 execute_process(COMMAND ${MEMCHECK} ${command} ${native_infile} "${native_outfile}"
60 # Test a simple command which sends output to stdout
62 # test_stdout command infile outfile
63 macro(test_stdout command infile outfile)
67 message(STATUS "Running ${MEMCHECK} ${command} ${native_infile} > ${native_outfile}")
68 execute_process(COMMAND ${MEMCHECK} ${command} "${native_infile}"
77 # Execute a simple command (e.g. tiffinfo) with one input file
79 # test_exec command infile
80 macro(test_reader command infile)
82 message(STATUS "Running ${MEMCHECK} ${command} ${native_infile}")
83 execute_process(COMMAND ${MEMCHECK} ${command} "${native_infile}"