You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2016/05/26 17:27:39 UTC

incubator-mynewt-core git commit: testutil - correction for "-d" argument change.

Repository: incubator-mynewt-core
Updated Branches:
  refs/heads/develop 75e88a4af -> 92a5980b6


testutil - correction for "-d" argument change.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/92a5980b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/92a5980b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/92a5980b

Branch: refs/heads/develop
Commit: 92a5980b69b67e3c1dec693ee8494d77239dabd3
Parents: 75e88a4
Author: Christopher Collins <cc...@apache.org>
Authored: Thu May 26 10:27:06 2016 -0700
Committer: Christopher Collins <cc...@apache.org>
Committed: Thu May 26 10:27:34 2016 -0700

----------------------------------------------------------------------
 libs/testutil/src/arch/sim/tu_args.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/92a5980b/libs/testutil/src/arch/sim/tu_args.c
----------------------------------------------------------------------
diff --git a/libs/testutil/src/arch/sim/tu_args.c b/libs/testutil/src/arch/sim/tu_args.c
index 9da989d..75a2900 100644
--- a/libs/testutil/src/arch/sim/tu_args.c
+++ b/libs/testutil/src/arch/sim/tu_args.c
@@ -10,7 +10,7 @@ tu_parse_args(int argc, char **argv)
 
     while ((ch = getopt(argc, argv, "s")) != -1) {
         switch (ch) {
-        case 'd':
+        case 's':
             tu_config.tc_system_assert = 1;
             break;