Skip to content

Commit

Permalink
Tweaks to tests and options.
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandervoord committed Dec 4, 2023
1 parent e82172a commit cfe47b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions lib/ceedling/unity_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@ def setup
# Refering to Unity implementation of the parser implemented in the unit.c :
#
# case 'l': /* list tests */
# case 'n': /* include tests with name including this string */
# case 'f': /* an alias for -n */
# case 'f': /* filter tests with name including this string */
# case 'q': /* quiet */
# case 'v': /* verbose */
# case 'x': /* exclude tests with name including this string */
@arg_option_map =
{
'test_case' => 'n',
'test_case' => 'f',
'list_test_cases' => 'l',
'run_tests_verbose' => 'v',
'exclude_test_case' => 'x'
Expand Down
3 changes: 2 additions & 1 deletion spec/spec_system_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,8 @@ def can_use_the_module_plugin_path_extension

# add module path to project file
settings = { :paths => { :test => [ "myPonies/test" ],
:source => [ "myPonies/src" ]
:source => [ "myPonies/src" ],
:include => [ "myPonies/src" ]
}
}
add_project_settings("project.yml", settings)
Expand Down

0 comments on commit cfe47b2

Please sign in to comment.