From: Pyry Haulos Date: Mon, 26 Sep 2016 22:28:57 +0000 (-0700) Subject: Be more civil in comments X-Git-Tag: upstream/0.1.0~691^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7704f19df5db9396c8f48f7ecfc7e53718c30470;p=platform%2Fupstream%2FVK-GL-CTS.git Be more civil in comments Change-Id: I47d75f6d558a80263d4a3cdeaa84f780db02403a --- diff --git a/executor/xeContainerFormatParser.cpp b/executor/xeContainerFormatParser.cpp index a02d8b8..39deeb8 100644 --- a/executor/xeContainerFormatParser.cpp +++ b/executor/xeContainerFormatParser.cpp @@ -265,7 +265,7 @@ void ContainerFormatParser::parseContainerLine (void) { m_value.clear(); - // \note Candy produces timestamps in very stupid fashion. + // \note Candy produces unescaped timestamps. for (;;) { const int curChar = offset < m_elementLen ? getChar(offset) : 0; diff --git a/executor/xeTestLogWriter.cpp b/executor/xeTestLogWriter.cpp index bcb33fd..89848c0 100644 --- a/executor/xeTestLogWriter.cpp +++ b/executor/xeTestLogWriter.cpp @@ -81,7 +81,7 @@ static void writeSessionInfo (const SessionInfo& info, std::ostream& stream) if (!info.resultName.empty()) stream << "#sessionInfo resultName " << ContainerValue(info.resultName) << "\n"; - // \note Current format uses unescaped timestamps for some stupid reason. + // \note Current format uses unescaped timestamps for some strange reason. if (!info.timestamp.empty()) stream << "#sessionInfo timestamp " << info.timestamp << "\n"; } diff --git a/framework/delibs/deutil/deProcess.c b/framework/delibs/deutil/deProcess.c index 2962a1a..3087ca0 100644 --- a/framework/delibs/deutil/deProcess.c +++ b/framework/delibs/deutil/deProcess.c @@ -401,7 +401,7 @@ deBool deProcess_waitForFinish (deProcess* process) return DE_FALSE; } - /* \note [pyry] Crazy hack for OS X Lion. Stupid Apple. */ + /* \note [pyry] HACK, apparently needed by some versions of OS X. */ while ((waitResult = waitpid(process->pid, &status, 0)) != process->pid) if (errno != ENOENT) break;