forked from cisco/ns3-rmcat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.csh
executable file
·63 lines (54 loc) · 2.45 KB
/
test.csh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/csh
###############################################################################
# Copyright 2016-2017 Cisco Systems, Inc. #
# #
# Licensed under the Apache License, Version 2.0 (the "License"); #
# you may not use this file except in compliance with the License. #
# #
# You may obtain a copy of the License at #
# #
# http://www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
###############################################################################
# run from ns3 root directory: ns-3.xx/
#
# Example:
# ./src/ns3-rmcat/tools/test.csh wired 2017-07-21-rmcat-wired
# ./src/ns3-rmcat/tools/test.csh vparam 2017-07-21-rmcat-wired-vparam
# ./src/ns3-rmcat/tools/test.csh wifi 2017-07-21-rmcat-wifi
#
# The second parameter, output directory, is optional. If not specified,
# the script will use a folder with a name based on current GMT time
set scen = $1
set odir = $2
if ( "$odir" == "" ) then
set odir = `date -u +"%Y-%m-%d-%H-%M-%S-CUT"`
set odir = "testpy-output/$odir"
endif
set patched_script = test_patched.py
# uncomment the following for building from scratch
#
# clean up and rebuild
# echo "cleaning up and rebuiling ..."
# ./waf clean
# ./waf
# patch test.py
if ( ! -f "$patched_script") then
rm -f "$patched_script"
endif
patch -p1 -i src/ns3-rmcat/tools/test.py.diff -o "$patched_script" test.py
# run tests
echo "running tests ..."
python "$patched_script" -o $odir -s rmcat-$scen -w rmcat-$scen.html -r
# process and plot
echo "processing and plotting ..."
python src/ns3-rmcat/tools/process_test_logs.py $odir
python src/ns3-rmcat/tools/plot_tests.py $odir
# for reviewing results
#echo "reviewing results ..."
#open $odir/*.png