You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ap.add_argument("--breakpad-dir", type=str, default=BREAKPAD_DIR, help=r"Path to Breakpad repo containing built dump_syms and stackwalk binaries. It may be a \\wsl.localhost\ path on Windows hosts in order to symbolize NaCl.")
145
148
ap.add_argument("--give-up", action="store_true", help="Stop after first test failure")
146
149
ap.add_argument("--nacl-arch", type=str, choices=["amd64", "i686", "armhf"], default="amd64") # TODO auto-detect?
147
-
ap.add_argument("module", nargs="*", choices=[
148
-
"dummyapp", "server", "ttyclient", "client",
150
+
ap.add_argument("module", nargs="*",
151
+
default="server", # bogus default needed due to buggy argparse
0 commit comments