diff options
author | kevinrs <kevinrs> | 2005-12-23 21:09:32 +0000 |
---|---|---|
committer | kevinrs <kevinrs> | 2005-12-23 21:09:32 +0000 |
commit | f9f5199fb819ca7897ef895f9a4a86aecb147446 (patch) | |
tree | 290f03232fdcb1f16fc21af062fa4725fc96c5d9 /tapset/test/README | |
parent | d003aa24c4f339bdfc2b2e87ac0ba16b09cf221e (diff) | |
download | systemtap-steved-f9f5199fb819ca7897ef895f9a4a86aecb147446.tar.gz systemtap-steved-f9f5199fb819ca7897ef895f9a4a86aecb147446.tar.xz systemtap-steved-f9f5199fb819ca7897ef895f9a4a86aecb147446.zip |
2005-12-23 Kevin Stafford <krstaffo@us.ibm.com>
SCRIPTS:
run.sh - This is the driver for automated testing.
To run: ./run.sh stpdirectory c_binaries_directory
Result: log/timestamp.log discerpancy report
ctostp.sh - This script generates corresponding stp probe script
files for every C file found in the input directory.
To Run: ctostp.sh input output where input is the
directory containing the C files to convert. Output
is the directory to store the corresponding stp
files.
build.sh - This script expedites the process of compiling all
of the c files. When the "compile" flag is given
it creates a directory called bin, which stores the
compiled C programs. ./build.sh clean removes the
binaries, and ./build.sh run attempts to execute all
of the programs in cfiles/bin.
Diffstat (limited to 'tapset/test/README')
-rw-r--r-- | tapset/test/README | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tapset/test/README b/tapset/test/README new file mode 100644 index 00000000..4b615721 --- /dev/null +++ b/tapset/test/README @@ -0,0 +1,27 @@ +To Run: + cd tapset/test + ./gencfiles.sh + ./ctostp.sh cfiles stpdir + cd cfiles + ./build compile + cd .. + ./run.sh + +SCRIPTS: + run.sh - This is the driver for automated testing. + To run: ./run.sh stpdirectory c_binaries_directory + Result: log/timestamp.log discerpancy report + + ctostp.sh - This script generates corresponding stp probe script + files for every C file found in the input directory. + To Run: ctostp.sh input output where input is the + directory containing the C files to convert. Output + is the directory to store the corresponding stp + files. + + build.sh - This script expedites the process of compiling all + of the c files. When the "compile" flag is given + it creates a directory called bin, which stores the + compiled C programs. ./build.sh clean removes the + binaries, and ./build.sh run attempts to execute all + of the programs in cfiles/bin. |