From 6e634957dc5ca8275feab51ba30a95f5932609b9 Mon Sep 17 00:00:00 2001
From: Reiner Jung <reiner.jung@email.uni-kiel.de>
Date: Thu, 3 Dec 2020 12:01:57 +0100
Subject: [PATCH] Debugging compile result.

---
 frameworks/Kieker/scripts/config                            | 6 +++---
 .../moobench/tools/compile/results/CompileResultsMain.java  | 5 +++++
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/frameworks/Kieker/scripts/config b/frameworks/Kieker/scripts/config
index 9f2084f..6210f08 100644
--- a/frameworks/Kieker/scripts/config
+++ b/frameworks/Kieker/scripts/config
@@ -18,9 +18,9 @@ AOP="kieker.aop.xml"
 
 # execution parameter
 SLEEP_TIME=1                    ## 30
-NUM_OF_LOOPS=10                 ## 10
-RECURSION_DEPTH=10              ## 10
-TOTAL_NUM_OF_CALLS=2000 #0        ## 2 000 000
+NUM_OF_LOOPS=1 #0                 ## 10
+RECURSION_DEPTH=1 #0              ## 10
+TOTAL_NUM_OF_CALLS=2 #000 #0        ## 2 000 000
 METHOD_TIME=5 #00               ## 500000
 
 # end
diff --git a/tools/compile-results/src/main/java/moobench/tools/compile/results/CompileResultsMain.java b/tools/compile-results/src/main/java/moobench/tools/compile/results/CompileResultsMain.java
index 5e458f0..f5e0864 100644
--- a/tools/compile-results/src/main/java/moobench/tools/compile/results/CompileResultsMain.java
+++ b/tools/compile-results/src/main/java/moobench/tools/compile/results/CompileResultsMain.java
@@ -59,6 +59,11 @@ public class CompileResultsMain {
 				rootNode = readJsonString();
 			}
 			
+			System.err.println("json " + jsonMainFile);
+			System.err.println("json " + jsonMainFile.getParentFile());
+			System.err.println("json " + jsonMainFile.getParentFile().getPath());
+			
+			
 			File jsonPartialFile = new File(jsonMainFile.getParentFile().getPath() + File.separator + PARTIAL_RESULT_FILENAME);
 			File jsonRelativeFile = new File(jsonMainFile.getParentFile().getPath() + File.separator + RELATIVE_RESULT_FILENAME);
 
-- 
GitLab