veyron/tools/naming: get simulator scripts going again, fix a bug in sort_endpoints.go
- bit rot took out the simulator scripts
- there was a bug in the sort_endpoints code that didn't correctly
sort endpoints by protocol in the absence of a specific ordering.
Change-Id: I17a4c082f1852baacef2155e3f620bf21cb5a1c4
diff --git a/tools/naming/simulator/test.sh b/tools/naming/simulator/test.sh
index d8373c4..f858b49 100755
--- a/tools/naming/simulator/test.sh
+++ b/tools/naming/simulator/test.sh
@@ -17,7 +17,7 @@
local file
for file in "${DIR}"/*.scr; do
echo "${file}"
- "${SIMULATOR_BIN}" < "${file}" &> /dev/null || shell_test::fail "line ${LINENO}: failed for ${file}"
+ "${SIMULATOR_BIN}" --interactive=false < "${file}" &> /dev/null || shell_test::fail "line ${LINENO}: failed for ${file}"
done
shell_test::pass
}