diff options
Diffstat (limited to 'cpp/test/Slice/errorDetection/run.py')
-rwxr-xr-x | cpp/test/Slice/errorDetection/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Slice/errorDetection/run.py b/cpp/test/Slice/errorDetection/run.py index ee206bf5098..b39f45237ba 100755 --- a/cpp/test/Slice/errorDetection/run.py +++ b/cpp/test/Slice/errorDetection/run.py @@ -21,7 +21,7 @@ else: directory = os.path.join(toplevel, "test", "Slice", "errorDetection") slice2cpp = os.path.join(toplevel, "bin", "slice2cpp") -regex1 = re.compile(r".ice$", re.IGNORECASE) +regex1 = re.compile(r"\.ice$", re.IGNORECASE) files = [] for file in os.listdir(directory): if(regex1.search(file)): |