Skip to content
Snippets Groups Projects
Commit 6f8cfc32 authored by Benjamin Bertrand's avatar Benjamin Bertrand
Browse files

Allow to load test version without specifying it

require didn't allow to load a test version without specifying it.
With conda, as there is always only one version in the environment,
the version found should always be loaded (even if test version).

JIRA ICSHWI-4144 #action In Progress
parent 060f517c
No related branches found
No related tags found
No related merge requests found
......@@ -1440,6 +1440,7 @@ require_priv(const char* module,
switch ((status = compareVersions(currentFilename, version)))
{
case TESTVERS: /* test version found */
case EXACT: /* exact match found */
case MATCH: /* all given numbers match. */
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment