Disables the PVIDEO alternate stop test as it fails to restore video. (#115)

This commit is contained in:
Erik Abair 2023-07-14 18:22:16 -07:00 committed by GitHub
parent bda51d487e
commit 4cf2a7b112
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,8 @@ static constexpr const char kPALIntoNTSC[] = "PAL into NTSC overlay";
PvideoTests::PvideoTests(TestHost &host, std::string output_dir) : TestSuite(host, std::move(output_dir), "PVIDEO") {
tests_[kPALIntoNTSC] = [this]() { TestPALIntoNTSC(); };
tests_[kStopBehavior] = [this]() { TestStopBehavior(); };
tests_[kAlternateStop] = [this]() { TestAlternateStopBehavior(); };
// This seems to permanently kill video output on 1.0 devkit.
// tests_[kAlternateStop] = [this]() { TestAlternateStopBehavior(); };
tests_[kSizeInMaxUnity] = [this]() { TestSizeInMaxUnityDeltas(); };
tests_[kSizeInMaxLarge] = [this]() { TestSizeInMaxLargeDelta(); };