Add getcwd() to zip_and_upload to debug am: 1ba4930db9 am: 423d1c1b10
am: 21d232361a

Change-Id: I6af5e843c7caf7d0f1868a27d8b0ebf4156f2fe7
diff --git a/build/masters/master.client.adt/public_html/default.css b/build/masters/master.client.adt/public_html/default.css
index 7535758..4f052df 100644
--- a/build/masters/master.client.adt/public_html/default.css
+++ b/build/masters/master.client.adt/public_html/default.css
@@ -381,8 +381,8 @@
 
 .running,.waiting,td.building {
         color: #000;
-        background-color: #fd3;
-        border-color: #C5C56D;
+        background-color: #dddddd;
+        border-color: #cccccc;
 }
 
 .offline,td.offline {
diff --git a/emu_test/utils/emu_testcase.py b/emu_test/utils/emu_testcase.py
index 21d24ee..ea3e24e 100644
--- a/emu_test/utils/emu_testcase.py
+++ b/emu_test/utils/emu_testcase.py
@@ -172,11 +172,11 @@
                         self.m_logger.info('No emulator found, stopping logcat')
                         break
                 if (logcat_proc):
-                  try:
-                    logcat_proc.terminate()
-                  except:
-                    # Could not terminate logcat; probably already dead.
-                    pass
+                   try:
+                       logcat_proc.terminate()
+                   except:
+                       # Could not terminate logcat; probably already dead.
+                       pass
 
         def readoutput_in_thread():
             with open(verbose_log_path, 'a') as verb_output: