Merge pull request #84 from benjaminp:fix-for-linkops

PiperOrigin-RevId: 339049823
Change-Id: Ia7550ae25cbe5bac936e86b458f7f322c6f258a0
diff --git a/examples/test_cc_shared_library/starlark_tests.bzl b/examples/test_cc_shared_library/starlark_tests.bzl
index 950b08d..c5d9fd4 100644
--- a/examples/test_cc_shared_library/starlark_tests.bzl
+++ b/examples/test_cc_shared_library/starlark_tests.bzl
@@ -10,7 +10,7 @@
     actions = analysistest.target_actions(env)
 
     for arg in reversed(actions[1].argv):
-        if arg.find(".a") != -1 or arg.find("-l") != -1:
+        if (arg.find(".a") != -1 or arg.find("-l") != -1) and "/" in arg:
             asserts.equals(env, "liba_suffix.a", arg[arg.rindex("/") + 1:])
             break