Skip to content

Commit

Permalink
Add the --pause flag to the test solution in Code::Blocks
Browse files Browse the repository at this point in the history
This change adds --pause so that you get a chance to see the output of
the execution.
  • Loading branch information
lhchavez committed May 5, 2018
1 parent d1cdad0 commit deb10d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<code_completion />
<debugger>
<remote_debugging target="test">
<options conn_type="0" serial_baud="115200" ip_address="127.0.0.1" ip_port="8042" additional_cmds_before="shell @runPath --debug @sampleFiles.map("'" + _ + "'").mkString(" ") &amp;&#x0A;symbol-file @debugExecutable&#x0A;set substitute-path @debugExecutable.getParent ." />
<options conn_type="0" serial_baud="115200" ip_address="127.0.0.1" ip_port="8042" additional_cmds_before="shell @runPath --debug --pause @sampleFiles.map("'" + _ + "'").mkString(" ") &amp;&#x0A;symbol-file @debugExecutable&#x0A;set substitute-path @debugExecutable.getParent ." />
</remote_debugging>
<remote_debugging target="all">
<options conn_type="0" serial_baud="115200" ip_address="127.0.0.1" ip_port="8042" additional_cmds_before="shell @runPath --debug @sampleFiles.map("'" + _ + "'").mkString(" ") &amp;&#x0A;symbol-file @debugExecutable&#x0A;set substitute-path @debugExecutable.getParent ." />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<code_completion />
<debugger>
<remote_debugging target="test">
<options conn_type="0" serial_baud="115200" ip_address="127.0.0.1" ip_port="8042" additional_cmds_before="shell start @runPath --debug @sampleFiles.map("&quot;" + _ + "&quot;").mkString(" ")&#x0A;symbol-file @debugExecutable.toString.replace("\\", "/")" />
<options conn_type="0" serial_baud="115200" ip_address="127.0.0.1" ip_port="8042" additional_cmds_before="shell start @runPath --debug --pause @sampleFiles.map("&quot;" + _ + "&quot;").mkString(" ")&#x0A;symbol-file @debugExecutable.toString.replace("\\", "/")" />
</remote_debugging>
<remote_debugging target="all">
<options conn_type="0" serial_baud="115200" ip_address="127.0.0.1" ip_port="8042" additional_cmds_before="shell start @runPath --debug @sampleFiles.map("&quot;" + _ + "&quot;").mkString(" ")&#x0A;symbol-file @debugExecutable.toString.replace("\\", "/")" />
Expand Down

0 comments on commit deb10d7

Please sign in to comment.