From 74ab1c81371f14177368fb1e1f6e87cd9792c464 Mon Sep 17 00:00:00 2001 From: Andy McFadden Date: Sun, 18 Oct 2020 15:57:58 -0700 Subject: [PATCH] Fix regression test copier The filename pattern for test cases was still expecting four-digit test numbers, so the regression tests weren't being copied into the distribution directory. --- MakeDist/FileCopier.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MakeDist/FileCopier.cs b/MakeDist/FileCopier.cs index e3f288d..b217688 100644 --- a/MakeDist/FileCopier.cs +++ b/MakeDist/FileCopier.cs @@ -92,7 +92,7 @@ namespace MakeDist { // We want all of the regression test binaries, plus the .sym65, .dis65, and .cs, // but nothing with an underscore in the part before the extension. - private const string TestCasePattern = @"^\d\d\d\d-[A-Za-z0-9-]+(\..*)?$"; + private const string TestCasePattern = @"^\d\d\d\d\d-[A-Za-z0-9-]+(\..*)?$"; private static Regex sTestCaseRegex = new Regex(TestCasePattern);