I want to see the commands that are ran by the coreutils test commands. For example, assuming that I am running the inode.sh test of ls, I do:
make check TESTS=tests/ls/inode.sh VERBOSE=yes SUBDIRS=.
I would like to see exactly which 'ls' commands the test is running. That is to say which ls commands are run by inode.sh. Any idea?
tests/ls/inode.shscript? Or the commands run by make itself? What do you see when you run that command exactly? You could try addingSHELL+=-xto that command line to see more.SHELL+=-xargument might do that but probably won't. You can look at the script presumably or edit it to addset -xto the top. But beyond that if you can't control the execution of the script I'm not sure what else you can do.