[macOS] Get rid of NDK version check test (#2280)

* change test to ndk 22

* remove test completely
This commit is contained in:
Mikhail Timofeev
2020-12-16 10:28:06 +03:00
committed by GitHub
parent d729747846
commit cb27a9e0ad

View File

@@ -69,12 +69,6 @@ Describe "Android" {
}
Context "Legacy NDK versions" -Skip:($os.IsBigSur) {
It "Android NDK version is 21" {
$ndkBundlePath = Join-Path $ANDROID_SDK_DIR "ndk-bundle" "source.properties"
$rawContent = Get-Content $ndkBundlePath -Raw
$rawContent | Should -BeLikeExactly "*Revision = 21.*"
}
It "Android NDK version r18b is installed" {
$ndk18BundlePath = Join-Path $ANDROID_SDK_DIR "ndk" "18.1.5063045" "source.properties"
$rawContent = Get-Content $ndk18BundlePath -Raw