Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Aug 2008 12:32:26 GMT
From:      Vincenzo Iozzo <snagg@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 147149 for review
Message-ID:  <200808111232.m7BCWQI0001610@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=147149

Change 147149 by snagg@snagg_macosx on 2008/08/11 12:31:34

	Added test for exit(2), some bugfixes.

Affected files ...

.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/audit_pipe_regression_test_utils.c#13 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/audit_pipe_regression_test_utils.h#11 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_bind.c#2 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_close.c#5 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_connect.c#2 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_exit.c#1 add
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_fork.c#4 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_kill.c#5 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_open.c#9 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_pipe.c#3 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_rename.c#4 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_setauid.c#4 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_setgid.c#7 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_setresuid.c#4 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_setuid.c#7 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_socket.c#2 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_stat.c#3 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_symlink.c#4 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_sysctl.c#3 edit
.. //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_waitpid.c#4 edit

Differences ...

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/audit_pipe_regression_test_utils.c#13 (text+ko) ====


==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/audit_pipe_regression_test_utils.h#11 (text+ko) ====


==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_bind.c#2 (text+ko) ====

@@ -105,6 +105,7 @@
 	long control_flag;
 	
 	to_parse = WAITING;
+	control_flag = 0;
 	
 	fp = fopen(path, "r");
 	if(fp == NULL)

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_close.c#5 (text+ko) ====

@@ -117,7 +117,8 @@
 	long control_flag;
 	
 	to_parse = WAITING;
-
+	control_flag = 0;
+	
 	fp = fopen(path, "r");
 	if(fp == NULL)
 		return;

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_connect.c#2 (text+ko) ====

@@ -145,6 +145,7 @@
 	long control_flag;
 	
 	to_parse = WAITING;
+	control_flag = 0;
 	
 	fp = fopen(path, "r");
 	if(fp == NULL)

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_fork.c#4 (text+ko) ====

@@ -95,7 +95,8 @@
 	long control_flag;
 	
 	to_parse = WAITING;
-
+	control_flag = 0;
+	
 	fp = fopen(path, "r");
 	if(fp == NULL)
 		return;

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_kill.c#5 (text+ko) ====

@@ -157,6 +157,7 @@
 	
 	to_parse = WAITING;
 	arg_counter = 0;
+	control_flag = 0;
 	
 	fp = fopen(path, "r");
 	if(fp == NULL)

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_open.c#9 (text+ko) ====

@@ -126,6 +126,7 @@
 	
 	to_parse = WAITING;
 	arg_counter = 0;
+	control_flag = 0;
 	
 	fp = fopen(path, "r");
 	if(fp == NULL)

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_pipe.c#3 (text+ko) ====

@@ -95,6 +95,7 @@
 	
 	to_parse = WAITING;
 	arg_counter = 0;
+	control_flag = 0;
 	
 	fp = fopen(path, "r");
 	if(fp == NULL)

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_rename.c#4 (text+ko) ====

@@ -129,6 +129,7 @@
 	
 	to_parse = WAITING;
 	path_counter = 0;
+	control_flag = 0;
 	
 	fp = fopen(path, "r");
 	if(fp == NULL)

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_setauid.c#4 (text+ko) ====

@@ -118,7 +118,8 @@
 	long control_flag;
 	
 	to_parse = WAITING;
-
+	control_flag = 0;
+	
 	fp = fopen(path, "r");
 	if(fp == NULL)
 		return;

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_setgid.c#7 (text+ko) ====

@@ -117,7 +117,8 @@
 	long control_flag;
 	
 	to_parse = WAITING;
-
+	control_flag = 0;
+	
 	fp = fopen(path, "r");
 	if(fp == NULL)
 		return;

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_setresuid.c#4 (text+ko) ====

@@ -107,7 +107,8 @@
 	long control_flag;
 	
 	to_parse = WAITING;
-
+	control_flag = 0;
+	
 	fp = fopen(path, "r");
 	if(fp == NULL)
 		return;

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_setuid.c#7 (text+ko) ====

@@ -115,7 +115,8 @@
 	long control_flag;
 	
 	to_parse = WAITING;
-
+	control_flag = 0;
+	
 	fp = fopen(path, "r");
 	if(fp == NULL)
 		return;

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_socket.c#2 (text+ko) ====

@@ -112,6 +112,7 @@
 	
 	to_parse = WAITING;
 	arg_counter = 0;
+	control_flag = 0;
 	
 	fp = fopen(path, "r");
 	if(fp == NULL)

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_stat.c#3 (text+ko) ====

@@ -93,7 +93,8 @@
 	long control_flag;
 	
 	to_parse = WAITING;
-
+	control_flag = 0;
+	
 	fp = fopen(path, "r");
 	if(fp == NULL)
 		return;

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_symlink.c#4 (text+ko) ====

@@ -122,7 +122,8 @@
 	long control_flag;
 	
 	to_parse = WAITING;
-
+	control_flag = 0;
+	
 	fp = fopen(path, "r");
 	if(fp == NULL)
 		return;

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_sysctl.c#3 (text+ko) ====

@@ -109,6 +109,7 @@
 	
 	to_parse = WAITING;
 	arg_counter = 0;
+	control_flag = 0;
 	
 	fp = fopen(path, "r");
 	if(fp == NULL)

==== //depot/projects/soc2008/snagg-audit/tools/regression/audit/audit_pipe/specific-event/audit_pipe_event_waitpid.c#4 (text+ko) ====

@@ -97,7 +97,8 @@
 	long control_flag;
 	
 	to_parse = WAITING;
-
+	control_flag = 0;
+	
 	fp = fopen(path, "r");
 	if(fp == NULL)
 		return;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200808111232.m7BCWQI0001610>