소스 검색

test: disable a few non-essential and potentially incorrect unit tests.

legacy
Sam Hocevar sam 12 년 전
부모
커밋
33ab2042e7
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      test/unit/color.cpp

+ 4
- 1
test/unit/color.cpp 파일 보기

@@ -123,9 +123,12 @@ LOLUNIT_FIXTURE(ColorTest)
String rgb = String::Printf("[%f %f %f]", v1.r, v1.g, v1.b);
LOLUNIT_SET_CONTEXT(&rgb[0]);

/* Don’t check hue if saturation is zero. */
if (r != g || g != b)
LOLUNIT_ASSERT_DOUBLES_EQUAL(v2.x, v3.x, 0.0001);
LOLUNIT_ASSERT_DOUBLES_EQUAL(v2.y, v3.y, 0.0001);
/* Don’t check saturation if lightness is zero. */
if (r || g || b)
LOLUNIT_ASSERT_DOUBLES_EQUAL(v2.y, v3.y, 0.0001);
LOLUNIT_ASSERT_DOUBLES_EQUAL(v2.z, v3.z, 0.0001);

LOLUNIT_UNSET_CONTEXT(&rgb[0]);


불러오는 중...
취소
저장