summaryrefslogtreecommitdiff
path: root/ACE/bin/PythonACE/fuzz/noncvs.py
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/bin/PythonACE/fuzz/noncvs.py')
-rw-r--r--ACE/bin/PythonACE/fuzz/noncvs.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/ACE/bin/PythonACE/fuzz/noncvs.py b/ACE/bin/PythonACE/fuzz/noncvs.py
new file mode 100644
index 00000000000..de52422c80d
--- /dev/null
+++ b/ACE/bin/PythonACE/fuzz/noncvs.py
@@ -0,0 +1,12 @@
+""" Catches most files disallowed in CVS """
+
+type_list = ["icc", "ncb", "opt", "zip", "dsw",
+ "vcproj", "dsw", "bor", "vcp", "pdb",
+ "o", "ilk", "pyc", "so", "dll", "lib" ]
+
+from sys import stderr
+
+def handler (file_name, file_content):
+ stderr.write (file_name + ":0: error: This file should not be checked into the repository\n")
+ return 1
+