Update min_xmx_limits for youtube

Bug: 197475718
Change-Id: If0a3a2c75cf4768bdc90f94b8a2fe272104e7941
diff --git a/tools/internal_test.py b/tools/internal_test.py
index cc2ee93..4afe520 100755
--- a/tools/internal_test.py
+++ b/tools/internal_test.py
@@ -362,6 +362,9 @@
         if time.time() - begin > RUN_TIMEOUT:
           popen.terminate()
           timed_out = True
+          stdout_fd.write("*************************************************\n")
+          stdout_fd.write("TERMINATING DUE TO TIME-OUT FROM internal_test.py\n")
+          stdout_fd.write("*************************************************\n")
         time.sleep(2)
       exitcode = popen.returncode
     finally:
diff --git a/tools/youtube_data.py b/tools/youtube_data.py
index 64bc995..4ce9dc4 100644
--- a/tools/youtube_data.py
+++ b/tools/youtube_data.py
@@ -125,10 +125,10 @@
 def GetMemoryData(version):
   assert version == '16.20'
   return {
-      'find-xmx-min': 2800,
-      'find-xmx-max': 3200,
+      'find-xmx-min': 3000,
+      'find-xmx-max': 3300,
       'find-xmx-range': 64,
-      'oom-threshold': 3000,
+      'oom-threshold': 3100,
       # TODO(b/143431825): Youtube can OOM randomly in memory configurations
       #  that should work.
       'skip-find-xmx-max': True,