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

for automation tests, allow override of TEST_UFSWM for whether to execute tests #1511

Open
BruceKropp-Raytheon opened this issue Feb 12, 2025 · 0 comments

Comments

@BruceKropp-Raytheon
Copy link

BruceKropp-Raytheon commented Feb 12, 2025

Is your feature request related to a problem? Please describe.
In util/weekly_build/06_AppTests.sh there is a check of TEST_UFSWM , = ON or OFF, which controls whether to execute apptests/test_ufswm.sh

if [ "$TEST_UFSWM" == ON ]; then
. $(dirname $0)/apptests/test_ufswm.sh
fi

However, when sourcing the sites/my_machine.sh (e.g. orion.sh), this value is hardcoded as:

TEST_UFSWM=ON

Describe the solution you'd like
Should be change to allow override:

TEST_UFSWM=${TEST_UFSWM:-"ON"}

Additional context
This allows for test execution options to be specified within CICD (Jenkins) jobs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant