Sfoglia il codice sorgente

tests: fix int.dom0_update

Environment must be preserved for QUBES_XML_PATH variable used to point
to a secondary (test) qubes.xml.
Marek Marczykowski-Górecki 8 anni fa
parent
commit
7117847816
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      qubes/tests/int/dom0_update.py

+ 2 - 2
qubes/tests/int/dom0_update.py

@@ -226,7 +226,7 @@ Test package
 
         logpath = os.path.join(self.tmpdir, 'dom0-update-output.txt')
         try:
-            subprocess.check_call(['sudo', 'qubes-dom0-update', '-y'] +
+            subprocess.check_call(['sudo', '-E', 'qubes-dom0-update', '-y'] +
                                   self.dom0_update_common_opts,
                                   stdout=open(logpath, 'w'),
                                   stderr=subprocess.STDOUT)
@@ -256,7 +256,7 @@ Test package
         shutil.rmtree('/var/lib/qubes/updates/repodata')
         logpath = os.path.join(self.tmpdir, 'dom0-update-output.txt')
         try:
-            subprocess.check_call(['sudo', 'qubes-dom0-update', '-y',
+            subprocess.check_call(['sudo', '-E', 'qubes-dom0-update', '-y',
                                    '--clean'] +
                                   self.dom0_update_common_opts,
                                   stdout=open(logpath, 'w'),