Skip to content

Commit

Permalink
kludge: omnetpp.py: added current dir as ned folder to smoke test com…
Browse files Browse the repository at this point in the history
…mand

sometimes when running the smoke test the ned includes could not be found
  • Loading branch information
adamgeorge309 committed May 10, 2024
1 parent 4d9dc81 commit db42c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opp_env/database/omnetpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def make_omnetpp_project_description(version, base_version=None, is_modernized=F
"smoke_test_commands": [
"""if [ "$BUILD_MODE" = "debug" ]; then DEBUG_SUFFIX="_dbg"; fi """ if base_version >= "5.2" else None,
"nedtool -h >/dev/null" if base_version.startswith("3.") else
"cd samples/dyna; ./dyna$DEBUG_SUFFIX -u Cmdenv >/dev/null"
"cd samples/dyna; ./dyna$DEBUG_SUFFIX -n . -u Cmdenv >/dev/null"
],
"test_commands": [
None if base_version < "6.0" else
Expand Down

0 comments on commit db42c1a

Please sign in to comment.