From: Zac Medico Date: Thu, 10 May 2007 18:15:20 +0000 (-0000) Subject: Make sure FEATURES=test and USE=test are consistently enabled for all requested phase... X-Git-Tag: v2.1.2.8~20 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=69f742b38516b8cb744f5eb781a1df27809f23bc;p=portage.git Make sure FEATURES=test and USE=test are consistently enabled for all requested phases when the test phase is forced via the ebuild command. (trunk r6516:6517) svn path=/main/branches/2.1.2/; revision=6518 --- diff --git a/bin/ebuild b/bin/ebuild index f5ecf2374..b8b6cac41 100755 --- a/bin/ebuild +++ b/bin/ebuild @@ -126,16 +126,17 @@ def discard_digests(myebuild, mysettings, mydbapi): finally: portage._doebuild_manifest_exempt_depend -= 1 +tmpsettings = portage.config(clone=portage.settings) +if "test" in pargs and "test" not in tmpsettings.features: + print "Forcing test." + tmpsettings["EBUILD_FORCE_TEST"] = "1" + tmpsettings.backup_changes("EBUILD_FORCE_TEST") + tmpsettings.features.append("test") + tmpsettings["FEATURES"] = " ".join(tmpsettings.features) + tmpsettings.backup_changes("FEATURES") + for arg in pargs: try: - tmpsettings = portage.config(clone=portage.settings) - if arg == "test" and not "test" in tmpsettings.features: - print "Forcing test." - tmpsettings["EBUILD_FORCE_TEST"] = "1" - tmpsettings.backupenv["EBUILD_FORCE_TEST"] = "1" - tmpsettings.features.append("test") - tmpsettings["FEATURES"] = " ".join(tmpsettings.features) - tmpsettings.backup_changes("FEATURES") if arg == "digest" and force: discard_digests(ebuild, tmpsettings, portage.portdb) a = portage.doebuild(ebuild, arg, portage.root, tmpsettings,