public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
From: Subrata Modak <subrata@linux.vnet.ibm.com>
To: LTP Mailing List <ltp-list@lists.sourceforge.net>
Cc: Sachin P Sant <sachinp@linux.vnet.ibm.com>,
	Mike Frysinger <vapier@gentoo.org>,
	Michael Reed <mreed10@us.ibm.com>, Nate Straz <nate@refried.org>,
	Paul Larson <paul.larson@ubuntu.com>,
	Manoj Iyer <manoj.iyer@ubuntu.com>,
	Balbir Singh <balbir@linux.vnet.ibm.com>
Subject: [LTP] [PATCH v2 04/05] Add Script which will be at the heart of this infrastructure
Date: Mon, 17 Aug 2009 17:40:06 +0530	[thread overview]
Message-ID: <20090817121004.8902.58075.sendpatchset@subratamodak.linux.ibm.com> (raw)
In-Reply-To: <20090817120835.8902.4597.sendpatchset@subratamodak.linux.ibm.com>

At the heart of this infrastructure is this Script, which will actually:
1) Change the temporary command file generated by runltp,
2) Create a new temporary command file which will have the following entries
against each one entry in the command file:
        i) Same TAG COMMAND_LINE entry,
        ii) Entry to call the script to insert faults,
        iii) Entry to run as many loops as specified by the user,
        iv) Entry to call the script to restore kernel to default state,

It is capable of creating new entries in the temporary command file with the
following tags and command lines:
TAG_NAME=tag1,  COMMANDLINE="test1",
TAG_NAME=tag1_loop1_under_kernel_fault,    COMMANDLINE="insert_fault_in_kernel; test1",
TAG_NAME=tag1_loop2_under_kernel_fault,    COMMANDLINE="test1",
...
TAG_NAME=tag1_loopn_under_kernel_fault,    COMMANDLINE="test1; restore_default_kernel",

Changes from V1 include:
1) Paul's suggestion to tag the results to say when a fault was, or,
was not in the process of being generated,

Garrett and Mike wanted this to be in Shell script. So, Garret will change this
to a Shell script in future.

Signed-off-by: Subrata Modak<subrata@linux.vnet.ibm.com>
---

diff -uprN ltp-full-20090731.orig/tools/create_kernel_faults_in_loops_and_probability.pl ltp-full-20090731/tools/create_kernel_faults_in_loops_and_probability.pl
--- ltp-full-20090731.orig/tools/create_kernel_faults_in_loops_and_probability.pl	1970-01-01 05:30:00.000000000 +0530
+++ ltp-full-20090731/tools/create_kernel_faults_in_loops_and_probability.pl	2009-08-17 11:26:43.000000000 +0530
@@ -0,0 +1,100 @@
+#!/usr/bin/perl
+################################################################################
+##                                                                            ##
+## Copyright (c) International Business Machines  Corp., 2009                 ##
+##                                                                            ##
+## This program is free software;  you can redistribute it and/or modify      ##
+## it under the terms of the GNU General Public License as published by       ##
+## the Free Software Foundation; either version 2 of the License, or          ##
+## (at your option) any later version.                                        ##
+##                                                                            ##
+## This program is distributed in the hope that it will be useful, but        ##
+## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ##
+## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License   ##
+## for more details.                                                          ##
+##                                                                            ##
+## You should have received a copy of the GNU General Public License          ##
+## along with this program;  if not, write to the Free Software               ##
+## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA    ##
+##                                                                            ##
+################################################################################
+#                                                                             ##
+# File :        create_kernel_faults_in_loops_and_probability.pl	      ##
+#                                                                             ##
+# Usage:        create_kernel_faults_in_loops_and_probability.pl\	      ##
+#		<LTP_COMMAND_FILE> <NO_OF_LOOPS_EACH_TEST_WILL_RUN>\	      ##
+#		<PROBABILITY_OF_FAULT_INJECTION>			      ##
+#                                                                             ##
+# Description:  This is a simple perl script which will take ltp command file ##
+#		as input and then create a final command file while will have ##
+#		the following entries for each test tag:		      ##
+#		1) <tag_name_loop1> <test_binary_name>			      ##
+#		2) <tag_name_loop2> <insert_kernel_faults.sh test_binary_name>##
+#		3) tag entried from loop3 to loop(n-1)			      ##
+#		4) <tag_name_loopn_under_kernel_fault> <restore_kernel_faults_default.sh test_binary_name>##
+#                                                                             ##
+# Author:       Subrata Modak <subrata@linux.vnet.ibm.com>                    ##
+#                                                                             ##
+# History:      Aug 11 2009 - Created - Subrata Modak.                        ##
+#		Aug 17 2009 - Made some changes as specified by Paul Larson   ##
+#		1) tag the results to say when a fault was or was not in the  ##
+#		process of being generated - Subrata Modak.		      ##
+################################################################################
+
+my $command_file	= shift (@ARGV) || syntax();
+my $loops		= shift (@ARGV) || syntax();
+my $failure_probability	= shift (@ARGV) || syntax();
+
+sub syntax() {
+	print "syntax: create_fault_in_loops_and_probability.pl\
+	<LTP_COMMAND_FILE> <NO_OF_LOOPS_EACH_TEST_WILL_RUN>\
+	<PROBABILITY_OF_FAULT_INJECTION>\n";
+	exit (1);
+}
+#$ENV{TEST_START_TIME})
+
+
+open (FILE, $command_file) || die "Cannot open file: $command_file\n";
+while ($line = <FILE>) {
+	if ($line =~ /^#/) {
+		print "$line";
+		next;
+	}
+	if ($line =~ /^\n$/) {
+		next;
+	}
+	chomp $line;
+	print "$line\n"; #Print one instance for stable execution
+	@tag_and_actual_command = split(/\ /, $line);
+
+	#The remaining loops should be running under fault injection
+	for ($counter=1; $counter<=$loops; $counter++) {
+		my $token_counter = 0;
+		foreach my $token (@tag_and_actual_command) {
+			if ($token_counter == 0 ) {
+				#Time to append the actual command tag with the loop no.
+				print $token . "_loop_" . $counter . "_under_fault_kernel ";
+				$token_counter++;
+				next;
+			}
+			if ($token_counter == 1 && $counter == 1) {
+				#Time to include the fault injection script in the first loop
+				print "\$LTPROOT/tools/insert_kernel_faults.sh " . $failure_probability . "; " . $token;
+				$token_counter++;
+				next;
+			}
+			print " " . $token . " ";
+		}
+		if ($counter == $loops) {
+			#Time to withdraw the faults once the last loop has been executed
+			#Until all faults has been successfully restored to default values...
+			#Keep restoring them
+			print "; " . "\$LTPROOT/tools/restore_kernel_faults_default.sh; RC=\$?; while [ \$RC -ne 0 ]; do \$LTPROOT/tools/restore_kernel_faults_default.sh; RC=\$?; done\n"
+		} else {
+			print "\n"
+		}
+	}
+
+}
+close (FILE);
+

---
Regards--
Subrata


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

  parent reply	other threads:[~2009-08-17 12:10 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-08-17 12:08 [LTP] [PATCH v2 00/05] Integration of "Fault Injection Framework" into LTP Subrata Modak
2009-08-17 12:08 ` [LTP] [PATCH v2 01/05] Provide all necessary information through ltp/README Subrata Modak
2009-08-17 12:09 ` [LTP] [PATCH v2 02/05] Add Script which would actually do the job of injecting faults Subrata Modak
2009-08-17 17:11   ` Garrett Cooper
2009-08-17 17:44     ` Subrata Modak
2009-08-17 12:09 ` [LTP] [PATCH v2 03/05] Add Script so the kernel is restored back to its original pristine form Subrata Modak
2009-08-17 12:10 ` Subrata Modak [this message]
2009-08-17 12:10 ` [LTP] [PATCH v2 05/05] Add the necessary Interface and Option through "runltp" Subrata Modak
2009-08-17 12:10 ` [LTP] [RESULTS v2] Results of test run for "Fault Injection Framework" Subrata Modak
2009-08-22 13:01 ` [LTP] [PATCH v2 00/05] Integration of "Fault Injection Framework" into LTP Subrata Modak

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090817121004.8902.58075.sendpatchset@subratamodak.linux.ibm.com \
    --to=subrata@linux.vnet.ibm.com \
    --cc=balbir@linux.vnet.ibm.com \
    --cc=ltp-list@lists.sourceforge.net \
    --cc=manoj.iyer@ubuntu.com \
    --cc=mreed10@us.ibm.com \
    --cc=nate@refried.org \
    --cc=paul.larson@ubuntu.com \
    --cc=sachinp@linux.vnet.ibm.com \
    --cc=vapier@gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox