Fix microbenchmarks input files (#1142)

This commit is contained in:
Adam Sitnik 2020-01-22 18:43:45 +01:00 коммит произвёл GitHub
Родитель ca80d8e288
Коммит 9a2e045226
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 11 добавлений и 12 удалений

17
.gitattributes поставляемый
Просмотреть файл

@ -2,12 +2,11 @@
*.md text working-tree-encoding=utf-8 git-encoding=utf-8 eol=lf
*.sh text eol=lf
src/benchmarks/micro/coreclr/BenchmarksGame/Inputs/knucleotide-input-big.txt text eol=lf
src/benchmarks/micro/coreclr/BenchmarksGame/Inputs/knucleotide-input.txt text eol=lf
src/benchmarks/micro/coreclr/BenchmarksGame/Inputs/regexdna-input25.txt text eol=lf
src/benchmarks/micro/coreclr/BenchmarksGame/Inputs/regexdna-input25000.txt text eol=lf
src/benchmarks/micro/coreclr/BenchmarksGame/Inputs/revcomp-input25.txt text eol=lf
src/benchmarks/micro/coreclr/BenchmarksGame/Inputs/revcomp-input25000.txt text eol=lf
src/benchmarks/micro/corefx/System.IO.Compression/TestData/sum text eol=lf
src/benchmarks/micro/corefx/System.IO.Compression/TestData/alice29.txt text eol=lf
src/benchmarks/micro/corefx/System.Text.RegularExpressions/content/200_000.in text eol=lf
src/benchmarks/micro/runtime/BenchmarksGame/Inputs/knucleotide-input-big.txt text eol=lf
src/benchmarks/micro/runtime/BenchmarksGame/Inputs/knucleotide-input.txt text eol=lf
src/benchmarks/micro/runtime/BenchmarksGame/Inputs/regexdna-input25.txt text eol=lf
src/benchmarks/micro/runtime/BenchmarksGame/Inputs/regexdna-input25000.txt text eol=lf
src/benchmarks/micro/runtime/BenchmarksGame/Inputs/revcomp-input25.txt text eol=lf
src/benchmarks/micro/runtime/BenchmarksGame/Inputs/revcomp-input25000.txt text eol=lf
src/benchmarks/micro/libraries/System.IO.Compression/TestData/sum text eol=lf
src/benchmarks/micro/libraries/System.IO.Compression/TestData/alice29.txt text eol=lf

Просмотреть файл

@ -35,7 +35,7 @@ namespace System.IO.Compression
internal static string GetFilePath(string fileName)
=> Path.Combine(
Path.GetDirectoryName(typeof(CompressedFile).Assembly.Location),
"corefx", "System.IO.Compression", "TestData",
"libraries", "System.IO.Compression", "TestData",
fileName);
}
}

Просмотреть файл

@ -19,7 +19,7 @@ namespace System.Net.Test.Common
private static X509Certificate2 GetCertificate(string certificateFileName)
=> new X509Certificate2(
File.ReadAllBytes(Path.Combine("corefx", "System.Net.Http", certificateFileName)),
File.ReadAllBytes(Path.Combine("libraries", "System.Net.Http", certificateFileName)),
CertificatePassword,
X509KeyStorageFlags.DefaultKeySet);
}

Просмотреть файл

@ -20,6 +20,6 @@ namespace BenchmarksGame
internal static int GetFileLength(string filePath) => (int) new FileInfo(filePath).Length;
private static string GetFullPath(string fileName)
=> Path.Combine(Path.GetDirectoryName(typeof(InputFileHelper).Assembly.Location), "coreclr", "BenchmarksGame", "Inputs", fileName);
=> Path.Combine(Path.GetDirectoryName(typeof(InputFileHelper).Assembly.Location), "runtime", "BenchmarksGame", "Inputs", fileName);
}
}