From: George Milescu Date: Fri, 6 Aug 2010 15:19:22 +0000 (+0200) Subject: Cleaned up test campaigns and scenarios X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=commitdiff_plain;h=0f6906818d709e0280954535f9e9d4ec83b7230c;p=p2p-testing-infrastructure.git Cleaned up test campaigns and scenarios Signed-off-by: George Milescu --- diff --git a/ConfigFiles/campaign-pre-post.cfg b/ConfigFiles/campaign-pre-post.cfg deleted file mode 100644 index e1dc31e..0000000 --- a/ConfigFiles/campaign-pre-post.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# Campaign-pre-post -# Description: -# * pre-run and post-run scripts-aware campaign -# -# ScenarioDescription PlotScript -scenario-pre-post.cfg scenario-pre-post.r -#scenario-pre-post-nop.cfg scenario-pre-post-nop.r diff --git a/ConfigFiles/campaign-rd.cfg b/ConfigFiles/campaign-rd.cfg deleted file mode 100644 index 1fd6271..0000000 --- a/ConfigFiles/campaign-rd.cfg +++ /dev/null @@ -1,6 +0,0 @@ -# Campaign01 -# Description: -# * a complete run of all the 7 scenarios -# -# ScenarioDescription PlotScript -scenario-rd.cfg scenario-rd.r diff --git a/ConfigFiles/campaign-rd.html b/ConfigFiles/campaign-rd.html deleted file mode 100644 index 34aefa0..0000000 --- a/ConfigFiles/campaign-rd.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - Swarm metrics validation campaign - - - - - -
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - -
NameNo. of SeedersNo. of LeechersBandwidth RectrictionsGraphs
scenario-rd118 Mbit/s up/downdlspeed vs percent; dlspeed vs time
-
-
- - - - - diff --git a/ConfigFiles/scenario-rd.cfg b/ConfigFiles/scenario-rd.cfg deleted file mode 100644 index f8eed4f..0000000 --- a/ConfigFiles/scenario-rd.cfg +++ /dev/null @@ -1,10 +0,0 @@ -# Scenario01ct -# Description: -# * a flashcrowd swarm -# * 1 seeder -# * 89 leechers -# * all peers have the same bandwidth -# -# Hostname SSHport User RemoteFolder NetInterface Download(Mbps) DownloadBurst(K) Upload(Mbps) UploadBurst(K) TcScript ClientType TorrentFile Periods -p2p-next-01.grid.pub.ro 10122 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_seeder Data.100M.ct.torrent (10,60) (60,100) (120,200) (200,230) (250,600) -p2p-next-01.grid.pub.ro 10322 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,30) (40,70) (80,110) (130,160) (180,250) (300,600) diff --git a/ConfigFiles/scenario-rd.r b/ConfigFiles/scenario-rd.r deleted file mode 100644 index 906c1de..0000000 --- a/ConfigFiles/scenario-rd.r +++ /dev/null @@ -1,66 +0,0 @@ -# -# Copyright: George Milescu 2010 - george.milescu@gmail.com -# -# R script used to plot the results of a scenario - -# import ggplot2 -library(ggplot2) - -# Read transmitted command line arguments -args <- commandArgs(trailingOnly = TRUE) - -# The data files are located in the target folder. Also, the graph will be saved in the target folder. -target_folder <- args[2] -campaign_name <- args[3] -rm(args) - -# read data from the data file -seeder=read.table(paste(target_folder, "p2p-next-01-101.log.data", sep="/"), header=T, sep=" ") -leecher=read.table(paste(target_folder, "p2p-next-01-103.log.data", sep="/"), header=T, sep=" ") - - -# transform KB/s to Mbit/s -leecher$dlspeed <- leecher$dlspeed*8/1000 - - -# plot dlspeed-percent data -p <- ggplot() + -geom_point(aes(x=leecher$percent, y=leecher$dlspeed, label="Leecher"), size=1) + -theme_bw() + -scale_x_continuous("Percent", limits=c(0, 100), breaks=seq(0, 100, 10)) + -scale_y_continuous("Download speed (Mbit/s)", limits=c(0, 8), breaks=seq(0, 8, 0.5)) + -coord_cartesian() + -scale_colour_manual("Legend") + -opts(title=paste(campaign_name, "Scenario-rd: a test swarm (1 Seeder, 1 Leecher), all peers have an 8 Mbit/s BW", sep="\n")) - -# plot data as an eps file -postscript(paste(target_folder, "scenario-rd-dlspeed-percent.eps", sep="/")) -print(p) -dev.off() - -# plot data as an png file -png(paste(target_folder, "scenario-rd-dlspeed-percent.png", sep="/"), width = 1280, height = 800) -print(p) -dev.off() - - - -# plot dlspeed-time data -p <- ggplot() + -geom_point(aes(x=leecher$time, y=leecher$dlspeed, label="Leecher"), size=1) + -theme_bw() + -scale_x_continuous("Time(s)") + -scale_y_continuous("Download speed (Mbit/s)", limits=c(0, 8), breaks=seq(0, 8, 0.5)) + -coord_cartesian() + -scale_colour_manual("Legend") + -opts(title=paste(campaign_name, "Scenario-rd: a test swarm (1 Seeder, 1 Leecher), all peers have an 8 Mbit/s BW", sep="\n")) - -# plot data as an eps file -postscript(paste(target_folder, "scenario-rd-dlspeed-time.eps", sep="/")) -print(p) -dev.off() - -# plot data as an png file -png(paste(target_folder, "scenario-rd-dlspeed-time.png", sep="/"), width = 1280, height = 800) -print(p) -dev.off() diff --git a/ConfigFiles/scenario-rd2.cfg b/ConfigFiles/scenario-rd2.cfg deleted file mode 100644 index 37c640d..0000000 --- a/ConfigFiles/scenario-rd2.cfg +++ /dev/null @@ -1,10 +0,0 @@ -# Scenario01ct -# Description: -# * a flashcrowd swarm -# * 1 seeder -# * 89 leechers -# * all peers have the same bandwidth -# -# Hostname SSHport User RemoteFolder NetInterface Download(Mbps) DownloadBurst(K) Upload(Mbps) UploadBurst(K) TcScript ClientType TorrentFile Periods -p2p-next-06.grid.pub.ro 10122 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_seeder Data.100M.ct.torrent (10,60) (60,100) (120,200) (200,230) (250,600) -p2p-next-06.grid.pub.ro 10222 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,30) (40,70) (80,110) (130,160) (180,250) (300,600) diff --git a/ConfigFiles/scenario-rd2.r b/ConfigFiles/scenario-rd2.r deleted file mode 100644 index 9905fa2..0000000 --- a/ConfigFiles/scenario-rd2.r +++ /dev/null @@ -1,66 +0,0 @@ -# -# Copyright: George Milescu 2010 - george.milescu@gmail.com -# -# R script used to plot the results of a scenario - -# import ggplot2 -library(ggplot2) - -# Read transmitted command line arguments -args <- commandArgs(trailingOnly = TRUE) - -# The data files are located in the target folder. Also, the graph will be saved in the target folder. -target_folder <- args[2] -campaign_name <- args[3] -rm(args) - -# read data from the data file -seeder=read.table(paste(target_folder, "p2p-next-06-101.log.data", sep="/"), header=T, sep=" ") -leecher=read.table(paste(target_folder, "p2p-next-06-102.log.data", sep="/"), header=T, sep=" ") - - -# transform KB/s to Mbit/s -leecher$dlspeed <- leecher$dlspeed*8/1000 - - -# plot dlspeed-percent data -p <- ggplot() + -geom_point(aes(x=leecher$percent, y=leecher$dlspeed, label="Leecher"), size=1) + -theme_bw() + -scale_x_continuous("Percent", limits=c(0, 100), breaks=seq(0, 100, 10)) + -scale_y_continuous("Download speed (Mbit/s)", limits=c(0, 8), breaks=seq(0, 8, 0.5)) + -coord_cartesian() + -scale_colour_manual("Legend") + -opts(title=paste(campaign_name, "Scenario-rd: a test swarm (1 Seeder, 1 Leecher), all peers have an 8 Mbit/s BW", sep="\n")) - -# plot data as an eps file -postscript(paste(target_folder, "scenario-rd-dlspeed-percent.eps", sep="/")) -print(p) -dev.off() - -# plot data as an png file -png(paste(target_folder, "scenario-rd-dlspeed-percent.png", sep="/"), width = 1280, height = 800) -print(p) -dev.off() - - - -# plot dlspeed-time data -p <- ggplot() + -geom_point(aes(x=leecher$time, y=leecher$dlspeed, label="Leecher"), size=1) + -theme_bw() + -scale_x_continuous("Time(s)") + -scale_y_continuous("Download speed (Mbit/s)", limits=c(0, 8), breaks=seq(0, 8, 0.5)) + -coord_cartesian() + -scale_colour_manual("Legend") + -opts(title=paste(campaign_name, "Scenario-rd: a test swarm (1 Seeder, 1 Leecher), all peers have an 8 Mbit/s BW", sep="\n")) - -# plot data as an eps file -postscript(paste(target_folder, "scenario-rd-dlspeed-time.eps", sep="/")) -print(p) -dev.off() - -# plot data as an png file -png(paste(target_folder, "scenario-rd-dlspeed-time.png", sep="/"), width = 1280, height = 800) -print(p) -dev.off() diff --git a/ConfigFiles/scenario01ct-new.cfg b/ConfigFiles/scenario01ct-new.cfg deleted file mode 100644 index 4c5f5f7..0000000 --- a/ConfigFiles/scenario01ct-new.cfg +++ /dev/null @@ -1,98 +0,0 @@ -# Scenario01ct -# Description: -# * a flashcrowd swarm -# * 1 seeder -# * 89 leechers -# * all peers have the same bandwidth -# -# Hostname SSHport User RemoteFolder NetInterface Download(Mbps) DownloadBurst(K) Upload(Mbps) UploadBurst(K) TcScript ClientType TorrentFile Periods -p2p-next-01.grid.pub.ro 10122 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_seeder Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-01.grid.pub.ro 10222 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-01.grid.pub.ro 10322 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-01.grid.pub.ro 10422 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-01.grid.pub.ro 10522 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-01.grid.pub.ro 10622 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-01.grid.pub.ro 10722 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-01.grid.pub.ro 10822 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-01.grid.pub.ro 10922 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-01.grid.pub.ro 11022 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-03.grid.pub.ro 10122 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-03.grid.pub.ro 10222 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-03.grid.pub.ro 10322 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-03.grid.pub.ro 10422 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-03.grid.pub.ro 10522 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-03.grid.pub.ro 10622 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-03.grid.pub.ro 10722 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-03.grid.pub.ro 10822 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-03.grid.pub.ro 10922 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-03.grid.pub.ro 11022 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-04.grid.pub.ro 10122 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-04.grid.pub.ro 10222 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-04.grid.pub.ro 10322 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-04.grid.pub.ro 10422 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-04.grid.pub.ro 10522 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-04.grid.pub.ro 10622 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-04.grid.pub.ro 10722 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-04.grid.pub.ro 10822 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-04.grid.pub.ro 10922 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-04.grid.pub.ro 11022 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-05.grid.pub.ro 10122 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-05.grid.pub.ro 10222 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-05.grid.pub.ro 10322 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-05.grid.pub.ro 10422 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-05.grid.pub.ro 10522 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-05.grid.pub.ro 10622 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-05.grid.pub.ro 10722 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-05.grid.pub.ro 10822 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-05.grid.pub.ro 10922 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-06.grid.pub.ro 11022 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-06.grid.pub.ro 10122 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-06.grid.pub.ro 10222 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-06.grid.pub.ro 10322 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-06.grid.pub.ro 10422 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-06.grid.pub.ro 10522 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-06.grid.pub.ro 10622 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-06.grid.pub.ro 10722 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-06.grid.pub.ro 10822 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-06.grid.pub.ro 10922 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-06.grid.pub.ro 11022 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-07.grid.pub.ro 10122 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-07.grid.pub.ro 10222 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-07.grid.pub.ro 10322 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-07.grid.pub.ro 10422 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-07.grid.pub.ro 10522 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-07.grid.pub.ro 10622 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-07.grid.pub.ro 10722 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-07.grid.pub.ro 10822 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-07.grid.pub.ro 10922 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-07.grid.pub.ro 11022 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-08.grid.pub.ro 10122 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-08.grid.pub.ro 10222 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-08.grid.pub.ro 10322 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-08.grid.pub.ro 10422 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-08.grid.pub.ro 10522 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-08.grid.pub.ro 10622 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-08.grid.pub.ro 10722 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-08.grid.pub.ro 10822 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-08.grid.pub.ro 10922 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-08.grid.pub.ro 11022 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-09.grid.pub.ro 10122 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-09.grid.pub.ro 10222 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-09.grid.pub.ro 10322 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-09.grid.pub.ro 10422 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-09.grid.pub.ro 10522 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-09.grid.pub.ro 10622 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-09.grid.pub.ro 10722 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-09.grid.pub.ro 10822 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-09.grid.pub.ro 10922 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-09.grid.pub.ro 11022 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-10.grid.pub.ro 10122 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-10.grid.pub.ro 10222 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-10.grid.pub.ro 10322 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-10.grid.pub.ro 10422 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-10.grid.pub.ro 10522 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-10.grid.pub.ro 10622 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-10.grid.pub.ro 10722 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-10.grid.pub.ro 10822 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-10.grid.pub.ro 10922 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) -p2p-next-10.grid.pub.ro 11022 p2p /home/p2p/george eth0 8 100 8 100 bw_limit_ct.sh hrktorrent_leecher Data.100M.ct.torrent (10,600) (650,1200) diff --git a/ConfigFiles/test-campaign.cfg b/ConfigFiles/test-campaign.cfg new file mode 100644 index 0000000..69366b0 --- /dev/null +++ b/ConfigFiles/test-campaign.cfg @@ -0,0 +1,7 @@ +# Campaign-pre-post +# Description: +# * pre-run and post-run scripts-aware campaign +# +# ScenarioDescription PlotScript +test-scenario-pre-post.cfg test-scenario-pre-post.r +#test-scenario-pre-post-nop.cfg test-scenario-pre-post-nop.r diff --git a/ConfigFiles/campaign-pre-post.html b/ConfigFiles/test-campaign.html similarity index 100% rename from ConfigFiles/campaign-pre-post.html rename to ConfigFiles/test-campaign.html diff --git a/ConfigFiles/scenario-pre-post-nop.txt b/ConfigFiles/test-scenario-pre-post-nop.cfg similarity index 100% rename from ConfigFiles/scenario-pre-post-nop.txt rename to ConfigFiles/test-scenario-pre-post-nop.cfg diff --git a/ConfigFiles/scenario-pre-post-nop.r b/ConfigFiles/test-scenario-pre-post-nop.r similarity index 100% rename from ConfigFiles/scenario-pre-post-nop.r rename to ConfigFiles/test-scenario-pre-post-nop.r diff --git a/ConfigFiles/scenario-pre-post.cfg b/ConfigFiles/test-scenario-pre-post.cfg similarity index 100% rename from ConfigFiles/scenario-pre-post.cfg rename to ConfigFiles/test-scenario-pre-post.cfg diff --git a/ConfigFiles/scenario-pre-post.r b/ConfigFiles/test-scenario-pre-post.r similarity index 100% rename from ConfigFiles/scenario-pre-post.r rename to ConfigFiles/test-scenario-pre-post.r