добавление DVMH_NO_DIRECT_COPY=1
This commit is contained in:
3
.idea/workspace.xml
generated
3
.idea/workspace.xml
generated
@@ -8,8 +8,7 @@
|
|||||||
<component name="ChangeListManager">
|
<component name="ChangeListManager">
|
||||||
<list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="">
|
<list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="">
|
||||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/properties" beforeDir="false" afterPath="$PROJECT_DIR$/properties" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/src/Visual_DVM_2021/Passes/All/StartTests.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Visual_DVM_2021/Passes/All/StartTests.java" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/src/Repository/Component/Visualiser.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Repository/Component/Visualiser.java" afterDir="false" />
|
|
||||||
</list>
|
</list>
|
||||||
<option name="SHOW_DIALOG" value="false" />
|
<option name="SHOW_DIALOG" value="false" />
|
||||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ package Visual_DVM_2021.Passes.All;
|
|||||||
import Common.Current;
|
import Common.Current;
|
||||||
import Common.Global;
|
import Common.Global;
|
||||||
import Common.UI.UI;
|
import Common.UI.UI;
|
||||||
|
import Common.Utils.Utils;
|
||||||
import GlobalData.Compiler.CompilerType;
|
import GlobalData.Compiler.CompilerType;
|
||||||
import GlobalData.Machine.MachineType;
|
import GlobalData.Machine.MachineType;
|
||||||
import GlobalData.User.UserState;
|
import GlobalData.User.UserState;
|
||||||
@@ -77,6 +78,15 @@ public class StartTests extends PublishServerAccountObject<TasksPackage> {
|
|||||||
} else
|
} else
|
||||||
return flags_in;
|
return flags_in;
|
||||||
}
|
}
|
||||||
|
public static String checkEnvironments(String environmentsSet_in) {
|
||||||
|
if (!environmentsSet_in.contains("DVMH_NO_DIRECT_COPY")) {
|
||||||
|
if (environmentsSet_in.isEmpty())
|
||||||
|
return "DVMH_NO_DIRECT_COPY=" + Utils.DQuotes("1");
|
||||||
|
else
|
||||||
|
return environmentsSet_in + " " + "DVMH_NO_DIRECT_COPY=" + Utils.DQuotes("1");
|
||||||
|
} else
|
||||||
|
return environmentsSet_in;
|
||||||
|
}
|
||||||
public static Vector<TestCompilationTask> createTasksCGT(
|
public static Vector<TestCompilationTask> createTasksCGT(
|
||||||
TestingSystem.DVM.Configuration.Configuration configuration,
|
TestingSystem.DVM.Configuration.Configuration configuration,
|
||||||
Group group,
|
Group group,
|
||||||
|
|||||||
Reference in New Issue
Block a user