qual-e.appspot.com 中的 Cookie 测试项在黄金版本 (rc_11) 中会失败

Cookie test item in qual-e.appspot.com would fail at gold version(rc_11)

当使用 https://qual-e.appspot.com 进行测试时,cookie 项目将在 gold 版本(rc_11)中失败,但它会通过 qa 版本,从 souce code 开始, gold版好像不支持cookie功能,如果gold的代码和qa版一样,那么cookie测试是可以通过的,请问如何解决这个失败的问题?

void Document::set_cookie(const std::string& cookie) {
#if defined(COBALT_BUILD_TYPE_GOLD)
  UNREFERENCED_PARAMETER(cookie);
#else
  if (cookie_jar_) {
    cookie_jar_->SetCookie(url_as_gurl(), cookie);
  }
#endif
}
std::string Document::cookie() const {
#if defined(COBALT_BUILD_TYPE_GOLD)
  return std::string();
#else
  if (cookie_jar_) {
    return cookie_jar_->GetCookies(url_as_gurl());
  } else {
    DLOG(WARNING) << "Document has no cookie jar";
    return "";
  }
#endif
}

我们将很快更改 Qual-E 测试用例。感谢您的耐心等待。