/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/VisualBasic/Test/Emit/Perf.vb
34 строки
2 KB
Rikki Gibson
Convert Roslyn.sln to slnx (#80440)
07 ноя 2025, 00:02
Не верифицирован
07 ноя 2025, 00:02
68d21ed
Код
Авторство
О чём код?
' Licensed to the .NET Foundation under one or more agreements. ' The .NET Foundation licenses this file to you under the MIT license. ' See the LICENSE file in the project root for more information. Imports Basic.Reference.Assemblies Namespace Microsoft.CodeAnalysis.VisualBasic.UnitTests.Emit Public Class Perf : Inherits BasicTestBase <Fact()> Public Sub Test() ' This test ensures that our perf benchmark code compiles without problems. ' Benchmark code can be found in the following file under the ' "CompilerTestResources" project that is part of Roslyn.slnx - ' $/Roslyn/Main/Open/Compilers/Test/Resources/Core/PerfTests/VBPerfTest.vb ' You can also use VS's "Navigate To" feature to find the above file easily - ' Just hit "Ctrl + ," and type "VBPerfTest.vb" in the dialog that pops up. ' Please note that if this test fails, it is likely because of a bug in the ' *product* and not in the *test* / *benchmark code* :) ' The benchmark code has been verified to compile fine against Dev10. ' So if the test fails we should fix the product bug that is causing the failure ' as opposed to 'fixing' the test by updating the benchmark code. ' If you absolutely need to change the benchmark code - PLEASE SHOOT A MAIL TO SHYAM (GNAMBOO) ' so that he can apply the same changes to the copy of this benchmark code that is used in the perf test. CompileAndVerify(<compilation> <file name="VBPerfTest.vb"> <%= TestResources.PerfTests.VBPerfTest %> </file> </compilation>, references:={Net40.References.SystemCore}).VerifyDiagnostics() End Sub End Class End Namespace