Don't fail the test if the iptables lock is held.
Change-Id: Ib4db989fdb35df3f517ce4db1526e5c1f78ad4b5
diff --git a/tests/binder_test.cpp b/tests/binder_test.cpp
index 565db99..42d01a5 100644
--- a/tests/binder_test.cpp
+++ b/tests/binder_test.cpp
@@ -117,7 +117,7 @@
}
static std::vector<std::string> listIptablesRule(const char *binary, const char *chainName) {
- std::string command = StringPrintf("%s -n -L %s", binary, chainName);
+ std::string command = StringPrintf("%s -w -n -L %s", binary, chainName);
return runCommand(command);
}