summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza-oci@users.noreply.github.com>2011-06-08 21:08:01 +0000
committerAdam Mitz <mitza-oci@users.noreply.github.com>2011-06-08 21:08:01 +0000
commit2405828be6b4a0647434250e5e623da9b4cd5d38 (patch)
treea0ea2bf9269a6dc77b3bc785dff70e4fef961094
parente5953078f2930b03f917142e6ee6a729fa0605fa (diff)
downloadATCD-2405828be6b4a0647434250e5e623da9b4cd5d38.tar.gz
ChangeLogTag: Wed Jun 8 21:05:56 UTC 2011 Adam Mitz <mitza@ociweb.com>
-rw-r--r--ACE/ChangeLog7
-rwxr-xr-xACE/bin/fuzz.pl15
2 files changed, 15 insertions, 7 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 86c11eab061..812cba7071d 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,10 @@
+Wed Jun 8 21:05:56 UTC 2011 Adam Mitz <mitza@ociweb.com>
+
+ * bin/fuzz.pl:
+
+ Switch from cvs to svn for the -m option that checks only modified
+ files. We haven't used cvs for some time now.
+
Tue Jun 7 20:45:56 UTC 2011 Phil Mesnier <mesnier_p@ociweb.com>
* ace/CDR_Base.h:
diff --git a/ACE/bin/fuzz.pl b/ACE/bin/fuzz.pl
index 9c921d88c93..f4128b2bb09 100755
--- a/ACE/bin/fuzz.pl
+++ b/ACE/bin/fuzz.pl
@@ -61,21 +61,22 @@ $warnings = 0;
##############################################################################
-# Find_Modified_Files will use 'cvs -nq' to get a list of locally modified
+# Find_Modified_Files will use 'svn -q st' to get a list of locally modified
# files to look through
sub find_mod_files ()
{
- unless (open (CVS, "cvs -nq up |")) {
- print STDERR "Error: Could not run cvs\n";
+ unless (open (SVN, "svn -q st |")) {
+ print STDERR "Error: Could not run svn\n";
exit (1);
}
- while (<CVS>) {
- if (/^[M|A] (.*)/) {
+ while (<SVN>) {
+ # 1234567 (see "svn help st" for column definitions)
+ if (/^[MA].....\s+(.*)$/) {
store_file ($1);
}
}
- close (CVS);
+ close (SVN);
}
@@ -2192,7 +2193,7 @@ if (!getopts ('cdhl:t:mv') || $opt_h) {
print " -l level set detection level (default = 5)\n";
print " -t test_names specify comma-separated list of tests to run\n".
" this will disable the run level setting\n";
- print " -m only check locally modified files (uses cvs)\n";
+ print " -m only check locally modified files (uses svn)\n";
print "======================================================\n";
print "list of the tests that could be run:\n";
print "\t check_for_noncvs_files