Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Semesterprojekt Modulbasiertes Testen
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Trappe
Semesterprojekt Modulbasiertes Testen
Commits
8ec11808
Commit
8ec11808
authored
5 years ago
by
Jonas
Browse files
Options
Downloads
Patches
Plain Diff
Updated Main and Testmanager
parent
401326ac
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build/sim/testmanager.sh
+0
-0
0 additions, 0 deletions
build/sim/testmanager.sh
src/var/FeatureModelImplGenerator/template/Main.jak
+5
-3
5 additions, 3 deletions
src/var/FeatureModelImplGenerator/template/Main.jak
with
5 additions
and
3 deletions
build/sim/testmanager.sh
100644 → 100755
+
0
−
0
View file @
8ec11808
File mode changed from 100644 to 100755
This diff is collapsed.
Click to expand it.
src/var/FeatureModelImplGenerator/template/Main.jak
+
5
−
3
View file @
8ec11808
...
...
@@ -123,9 +123,11 @@ public class Configurator {
return;
}
Runtime oRuntime = Runtime.getRuntime();
//TODO launch compiler
try {
Process oTestCaseCompiler =
Runtime.get
Runtime
()
.exec("dotnet " + m_sTestManagerPath + " " + m_aCompilerArgs[0] + " " + m_aCompilerArgs[1]);
Process oTestCaseCompiler =
o
Runtime.exec("dotnet " + m_sTestManagerPath + " " + m_aCompilerArgs[0] + " " + m_aCompilerArgs[1]);
BufferedReader oOutput = new BufferedReader(new InputStreamReader(oTestCaseCompiler.getInputStream()));
String sOutput = null;
while ((sOutput = oOutput.readLine()) != null) {
...
...
@@ -137,8 +139,8 @@ public class Configurator {
//TODO launch test manager
try {
Process oChMod =
Runtime.get
Runtime
()
.exec("chmod u+x"+ m_sTestManagerPath);
Process oTestManager =
Runtime.get
Runtime
()
.exec(m_sTestManagerPath);
Process oChMod =
o
Runtime.exec("chmod u+x"+ m_sTestManagerPath);
Process oTestManager =
o
Runtime.exec(m_sTestManagerPath);
BufferedReader oOutput = new BufferedReader(new InputStreamReader(oTestManager.getInputStream()));
String sOutput = null;
while ((sOutput = oOutput.readLine()) != null) {
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment