Ignore STANDALONE_SYSTEMSERVER_JARS in test

Currently odrefresh in the VM doesn't handle them. So when comparing
it with odrefresh outside the VM, make sure we also ignore them there.

This is just to un-break the tests until a proper fix is ready.

Bug: 211560090
Bug: 210472252
Test: atest ComposHostTestCases
Change-Id: Idda798e3d2f18225cb73418c07a6d10229e294ca
diff --git a/compos/tests/java/android/compos/test/ComposTestCase.java b/compos/tests/java/android/compos/test/ComposTestCase.java
index 7b027de..8906361 100644
--- a/compos/tests/java/android/compos/test/ComposTestCase.java
+++ b/compos/tests/java/android/compos/test/ComposTestCase.java
@@ -126,6 +126,8 @@
     private CommandResult runOdrefresh(CommandRunner android, String command) throws Exception {
         return android.runForResultWithTimeout(
                 ODREFRESH_TIMEOUT_MS,
+                // TODO(b/210472252): Remove this when the VM handles STANDALONE_SYSTEMSERVER_JARS
+                "STANDALONE_SYSTEMSERVER_JARS=",
                 ODREFRESH_BIN,
                 "--dalvik-cache=" + TEST_ARTIFACTS_DIR,
                 command);