test capiSwCanvas: remove a invalid test case.

This test depends on the machine environment.
it's not guaranteed the same result so we remove it.
This commit is contained in:
JunsuChoi 2021-11-22 12:59:43 +09:00 committed by Hermet Park
parent 4ac58de1bf
commit 80cc0177fb

View file

@ -57,8 +57,6 @@ TEST_CASE("Memory Reservation", "[capiSwCanvas]")
REQUIRE(tvg_canvas_reserve(canvas, 100) == TVG_RESULT_SUCCESS);
REQUIRE(tvg_canvas_reserve(canvas, 0) == TVG_RESULT_SUCCESS);
REQUIRE(tvg_canvas_reserve(canvas, -1) == TVG_RESULT_FAILED_ALLOCATION);
REQUIRE(tvg_canvas_destroy(canvas) == TVG_RESULT_SUCCESS);
REQUIRE(tvg_engine_term(TVG_ENGINE_SW) == TVG_RESULT_SUCCESS);