Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure option with REQUIRED_PACKAGES displays status correctly #85

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions tests/project_summary/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ $SOURCE/clean.sh

# ----------------- configure project ---------------------

# Options: (defaults)

mkdir -p $HERE/build_0
ecbuild $SOURCE/test_project -B $HERE/build_0 | tee $HERE/build_0.log
EXPECT_ONE_OF $HERE/build_0.log "* FEATURE_A, proja(ON): '', projb(OFF): ''"
EXPECT_ONE_OF $HERE/build_0.log "* FEATURE_B, projb(OFF): ''"
EXPECT_ONE_OF $HERE/build_0.log "* FEATURE_C, projc(OFF): ''"
EXPECT_ONE_OF $HERE/build_0.log "Build files have been written"

# Options: -DENABLE_FEATURE_A=ON

mkdir -p $HERE/build_1
Expand Down
7 changes: 7 additions & 0 deletions tests/project_summary/test_project/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,11 @@ ecbuild_add_option(
CONDITION SOME_PACKAGE_FOUND
)

project( projc LANGUAGES NONE VERSION 0.3 )
ecbuild_add_option(
FEATURE FEATURE_C
DEFAULT ON
REQUIRED_PACKAGES NONEXISTENT
)

ecbuild_print_summary()
Loading