[K/N][tests] Move stress tests into a separate project

This commit is contained in:
Alexander Shabalin
2024-03-07 09:56:59 +01:00
committed by Space Team
parent 60d425e2c7
commit aee87468a6
11 changed files with 142 additions and 26 deletions
@@ -526,6 +526,26 @@ fun main() {
model("SwiftExport", pattern = "^([^_](.+))$", recursive = false)
}
}
// Stress tests
testGroup("native/native.tests/stress/tests-gen", "native/native.tests/stress/testData") {
testClass<AbstractNativeBlackBoxTest>(
suiteTestClassName = "NativeStressTestGenerated",
annotations = listOf(
provider<UseStandardTestCaseGroupProvider>(),
)
) {
model("")
}
testClass<AbstractNativeBlackBoxTest>(
suiteTestClassName = "FirNativeStressTestGenerated",
annotations = listOf(
provider<UseStandardTestCaseGroupProvider>(),
*frontendFir(),
)
) {
model("")
}
}
}
}