mirror of
https://github.com/fadden/6502bench.git
synced 2025-02-07 14:31:00 +00:00
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.
This commit is contained in:
parent
e9fbc6c96c
commit
74ab1c8137
@ -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);
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user