[Ubuntu upgrade] Disable MSAN in projects that will have false positives. (#6303)

Do this based mostly on instrumented_libraries and more tests.

Related: #6180
diff --git a/projects/casync/project.yaml b/projects/casync/project.yaml
index e2d38b8..e664b04 100644
--- a/projects/casync/project.yaml
+++ b/projects/casync/project.yaml
@@ -4,9 +4,10 @@
 sanitizers:
   - address
   - undefined
-  - memory
+# Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294
+#  - memory
 auto_ccs:
   - zbyszek@in.waw.pl
   - poettering@gmail.com
   - fsumsal@redhat.com
-main_repo: 'https://github.com/systemd/casync'
+main_repo: 'https://github.com/systemd/casync'
\ No newline at end of file
diff --git a/projects/cpython3/project.yaml b/projects/cpython3/project.yaml
index 7edfd24..e454e36 100644
--- a/projects/cpython3/project.yaml
+++ b/projects/cpython3/project.yaml
@@ -6,5 +6,6 @@
  - "ammar@ammaraskar.com"
 sanitizers:
  - address
- - memory
- - undefined
+# Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294
+#  - memory
+ - undefined
\ No newline at end of file
diff --git a/projects/hostap/project.yaml b/projects/hostap/project.yaml
index db978e1..9d95c6e 100644
--- a/projects/hostap/project.yaml
+++ b/projects/hostap/project.yaml
@@ -11,9 +11,10 @@
 sanitizers:
   - address
   - undefined
-  - memory
+# Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294
+#  - memory
   - dataflow
 architectures:
   - x86_64
   - i386
-main_repo: 'git://w1.fi/srv/git/hostap.git'
+main_repo: 'git://w1.fi/srv/git/hostap.git'
\ No newline at end of file
diff --git a/projects/kcodecs/project.yaml b/projects/kcodecs/project.yaml
index 4784eae..b698f63 100644
--- a/projects/kcodecs/project.yaml
+++ b/projects/kcodecs/project.yaml
@@ -6,4 +6,4 @@
 # Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294
 #  - memory
   - undefined
-main_repo: 'https://invent.kde.org/frameworks/kcodecs.git'
+main_repo: 'https://invent.kde.org/frameworks/kcodecs.git'
\ No newline at end of file
diff --git a/projects/lame/project.yaml b/projects/lame/project.yaml
index b6bd382..630fd76 100644
--- a/projects/lame/project.yaml
+++ b/projects/lame/project.yaml
@@ -5,7 +5,8 @@
     - "bouvigne@gmail.com"
 sanitizers:
  - address
- - memory
+# Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294
+#  - memory
 architectures:
  - x86_64
- - i386
+ - i386
\ No newline at end of file
diff --git a/projects/libfido2/project.yaml b/projects/libfido2/project.yaml
index 5a351a0..d335eea 100644
--- a/projects/libfido2/project.yaml
+++ b/projects/libfido2/project.yaml
@@ -9,7 +9,8 @@
 sanitizers:
     - address
     - undefined
-    - memory
+# Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294
+#  - memory
 fuzzing_engines:
     - libfuzzer
-main_repo: 'https://github.com/Yubico/libfido2'
+main_repo: 'https://github.com/Yubico/libfido2'
\ No newline at end of file
diff --git a/projects/libhtp/project.yaml b/projects/libhtp/project.yaml
index 3b861d5..753887a 100644
--- a/projects/libhtp/project.yaml
+++ b/projects/libhtp/project.yaml
@@ -7,6 +7,7 @@
 
 sanitizers:
 - address
-- memory
+# Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294
+#  - memory
 - undefined
-main_repo: 'https://github.com/OISF/libhtp.git'
+main_repo: 'https://github.com/OISF/libhtp.git'
\ No newline at end of file
diff --git a/projects/libpng/project.yaml b/projects/libpng/project.yaml
index 66b280b..1e9d786 100644
--- a/projects/libpng/project.yaml
+++ b/projects/libpng/project.yaml
@@ -7,6 +7,7 @@
   - "twsmith@mozilla.com"
 sanitizers:
   - address
-  - memory
+# Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294
+#  - memory
   - undefined
-main_repo: 'https://github.com/glennrp/libpng.git'
+main_repo: 'https://github.com/glennrp/libpng.git'
\ No newline at end of file
diff --git a/projects/libssh/project.yaml b/projects/libssh/project.yaml
index 12166e1..7cb24c4 100644
--- a/projects/libssh/project.yaml
+++ b/projects/libssh/project.yaml
@@ -10,4 +10,4 @@
 # Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294
 #  - memory
   - undefined
-main_repo: 'https://git.libssh.org/projects/libssh.git'
+main_repo: 'https://git.libssh.org/projects/libssh.git'
\ No newline at end of file
diff --git a/projects/libzip/project.yaml b/projects/libzip/project.yaml
index 2743d39..916b01a 100644
--- a/projects/libzip/project.yaml
+++ b/projects/libzip/project.yaml
@@ -6,5 +6,6 @@
 sanitizers:
   - address
   - undefined
-  - memory
-main_repo: 'https://github.com/nih-at/libzip.git'
+# Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294
+#  - memory
+main_repo: 'https://github.com/nih-at/libzip.git'
\ No newline at end of file
diff --git a/projects/openvswitch/project.yaml b/projects/openvswitch/project.yaml
index 4ee3e96..5a25f13 100644
--- a/projects/openvswitch/project.yaml
+++ b/projects/openvswitch/project.yaml
@@ -11,6 +11,7 @@
   - "ilya.maximets@gmail.com"
 sanitizers:
   - address
-  - memory
+# Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294
+#  - memory
   - undefined
-main_repo: 'https://github.com/openvswitch/ovs.git'
+main_repo: 'https://github.com/openvswitch/ovs.git'
\ No newline at end of file
diff --git a/projects/suricata/project.yaml b/projects/suricata/project.yaml
index 3babd8f..e555915 100644
--- a/projects/suricata/project.yaml
+++ b/projects/suricata/project.yaml
@@ -6,6 +6,7 @@
 - "p.antoine@catenacyber.fr"
 sanitizers:
   - address
-  - memory
+# Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294
+#  - memory
   - undefined
-main_repo: 'https://github.com/OISF/suricata.git'
+main_repo: 'https://github.com/OISF/suricata.git'
\ No newline at end of file
diff --git a/projects/systemd/project.yaml b/projects/systemd/project.yaml
index c3eb6b2..8c4bf79 100644
--- a/projects/systemd/project.yaml
+++ b/projects/systemd/project.yaml
@@ -5,7 +5,8 @@
 sanitizers:
   - address
   - undefined
-  - memory
+# Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294
+#  - memory
 auto_ccs:
   - jonathan@titanous.com
   - zbyszek@in.waw.pl
@@ -22,4 +23,4 @@
   - the.anitazha@gmail.com
   - daan.j.demeyer@gmail.com
   - luca.boccassi@gmail.com
-main_repo: 'https://github.com/systemd/systemd'
+main_repo: 'https://github.com/systemd/systemd'
\ No newline at end of file
diff --git a/projects/tpm2-tss/project.yaml b/projects/tpm2-tss/project.yaml
index 438e11c..7ac01a9 100644
--- a/projects/tpm2-tss/project.yaml
+++ b/projects/tpm2-tss/project.yaml
@@ -6,6 +6,7 @@
   - "tstruk@gmail.com"
 sanitizers:
   - address
-  - memory
+# Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294
+#  - memory
   - undefined
-main_repo: 'https://github.com/tstruk/tpm2-tss.git'
+main_repo: 'https://github.com/tstruk/tpm2-tss.git'
\ No newline at end of file