diff options
author | Micael Karlberg <[email protected]> | 2011-11-07 16:21:40 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-11-07 16:21:40 +0100 |
commit | b9d1fc888d262b8a1caf9be54083a0d67d6012cb (patch) | |
tree | b829c0cf811b6f230653b75433d01657017c62c7 /lib/megaco/examples/meas/meas.sh.skel.src | |
parent | 2c18949bf1edfda523ae15229e94a8400bb1870c (diff) | |
parent | 8149b970814848dc404767d5635529c61cf20b24 (diff) | |
download | otp-b9d1fc888d262b8a1caf9be54083a0d67d6012cb.tar.gz otp-b9d1fc888d262b8a1caf9be54083a0d67d6012cb.tar.bz2 otp-b9d1fc888d262b8a1caf9be54083a0d67d6012cb.zip |
Minor improvemnts to the emasurement tool mstone1.
OTP-9604
The profiling test tool has been rewritten.
H�kan Mattsson
OTP-9679
Merge branch 'bmk/megaco/r15_integration'
Diffstat (limited to 'lib/megaco/examples/meas/meas.sh.skel.src')
-rw-r--r-- | lib/megaco/examples/meas/meas.sh.skel.src | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/megaco/examples/meas/meas.sh.skel.src b/lib/megaco/examples/meas/meas.sh.skel.src new file mode 100644 index 0000000000..c7bd6cdd2a --- /dev/null +++ b/lib/megaco/examples/meas/meas.sh.skel.src @@ -0,0 +1,41 @@ +#!/bin/sh + +# %CopyrightBegin% +# +# Copyright Ericsson AB 2007-2011. All Rights Reserved. +# +# The contents of this file are subject to the Erlang Public License, +# Version 1.1, (the "License"); you may not use this file except in +# compliance with the License. You should have received a copy of the +# Erlang Public License along with this software. If not, it can be +# retrieved online at http://www.erlang.org/. +# +# Software distributed under the License is distributed on an "AS IS" +# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See +# the License for the specific language governing rights and limitations +# under the License. +# +# %CopyrightEnd% + +# +# Skeleton for a script intended to run the meas test. +# + +ERL_HOME=<path to otp top dir> +MEGACO_HOME=$ERL_HOME/lib/erlang/lib/megaco-%VSN% +MEAS_HOME=$MEGACO_HOME/examples/meas +PATH=$ERL_HOME/bin:$PATH + +# MEAS_TIME_TEST="-s megaco_codec_meas start time_test" +MEAS_DEFAULT="-s megaco_codec_meas start" +STOP="-s init stop" + +ERL="erl \ + -noshell \ + -pa $MEAS_HOME \ + $MEAS_DEFAULT \ + $STOP" + +echo $ERL +$ERL | tee meas.log + |