The commit message should include the filename such as:

sanity.bbclass: Fix invalid test for network error

Sau!


On 10/01/2012 07:17 AM, Bogdan Marinescu wrote:
The test for network error in sanity.bbclass was negated.

Signed-off-by: Bogdan Marinescu <[email protected]>
---
  meta/classes/sanity.bbclass |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index e2095dd..f2e9a74 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -174,7 +174,7 @@ def check_sanity_tmpdir_change(tmpdir, data):
      # Check that we can fetch from various network transports
      errmsg = check_connectivity(data)
      testmsg = testmsg + check_connectivity(data)
-    return testmsg, errmsg == ""
+    return testmsg, errmsg != ""

  def check_sanity_version_change(data):
      # Sanity checks to be done when SANITY_VERSION changes


_______________________________________________
Openembedded-core mailing list
[email protected]
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core

Reply via email to