unit-test: meson: allow missing meson-options.txt

meson-options.txt is not required, so avoid an ENOENT exception and
proceed with an empty set of options when meson-options.txt doesn't
exist.

Tested: Sucessfully ran run-unit-test-docker.sh against
https://gerrit.openbmc-project.xyz/c/openbmc/obmc-ikvm/+/19893/1

Change-Id: Ie063df12aa511f43f347db277858075bcecad024
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/scripts/unit-test.py b/scripts/unit-test.py
index c1c3f85..e946b83 100755
--- a/scripts/unit-test.py
+++ b/scripts/unit-test.py
@@ -401,7 +401,9 @@
     # Build & install this package
     # Always try using meson first
     if os.path.exists('meson.build'):
-        meson_options = parse_meson_options("meson_options.txt")
+        meson_options = sets.Set()
+        if os.path.exists("meson_options.txt"):
+            meson_options = parse_meson_options("meson_options.txt")
         meson_flags = [
             '-Db_colorout=never',
             '-Dwerror=true',