Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Javac compiles the source code with debug option on
    Note: Running maven pack-demo compiles with debug on by default

Instrument code

Once emma.jar sits in the appropriate directory then the following command should bring up the help information for EMMA:

{$JAVA_HOME}/bin/java emma

Code Block
titleResulting output
borderStylesolid

emma usage: emma <command> command options,
  where <command> is one of:

   run     application runner same as 'emmarun' tool;
   instr   offline instrumentation processor;
   ctl     remote control processor;
   merge   offline data file merge processor.
   report  offline report generator;

  use '<command> -h' to see usage help for a given command

EMMA v2.1, build 5320 (stable)

Note: Any older version than that mentioned in the results will not function correctly for our needs.
Note: I have written some example only Perl code that looks for Web-INF/classes directories and
then generates a bash script that runs Emma and generates a metadata file, one per Webapp

...