Saving error data

By default, Purify outputs error data to the Purify Viewer You can save error data from the Viewer as follows:

You can also save error data without displaying the Viewer, which is especially useful in automated testing. To do this, set output options in the Purify command line, as follows.

You can also use standard shell file redirection syntax to redirect Purify output to a text file when you run the instrumented program. For example, after compiling and linking with Purify, you can run the program as follows:

csh

% a.out >& a.out.messages

sh, ksh

$ a.out 2> a.out.messages