Commit 75bd6f3b authored by Philip Makedonski's avatar Philip Makedonski
Browse files

* exported paths

parent 2ca4c747
Loading
Loading
Loading
Loading
+11 −10
Original line number Diff line number Diff line
@@ -33,22 +33,23 @@ public class LogAnalyzer {
	private boolean skipFilter = true;
	
	public static void main(String[] args) throws Exception {
		String logPath = "/Users/philip-iii/Dev/workspaces/2024-09-dsl-t3q-final/t3q-v2.0.0b30/t3q-next-latest-config-ref.log";
		String log_b30 = "/Users/philip-iii/Dev/workspaces/2024-09-dsl-t3q-final/t3q-v2.0.0b30/t3q-b30-latest-config.log";
		String log_next = "/Users/philip-iii/Dev/workspaces/2024-09-dsl-t3q-final/t3q-v2.0.0b30/t3q-next-latest-config.log";
		String basePath = args[0];
		String logPath = basePath+"t3q-next-latest-config-ref.log";
		String log_b30 = basePath+"t3q-b30-latest-config.log";
		String log_next = basePath+"t3q-next-latest-config.log";
		
//		log_b30 = "/Users/philip-iii/Dev/workspaces/2024-09-dsl-t3q-final/t3q-v2.0.0b30/t3q-next-latest-config-new-features-batch-resolve.log";
		String basePath = "/Users/philip-iii/Dev/vscodes/tf160/iwd-TTCN3-B2024-06_D24wk37/NR5GC_IRAT_IWD_24wk37/";
//		log_b30 = basePath+"t3q-next-latest-config-new-features-batch-resolve.log";

		log_b30 = "/Users/philip-iii/Dev/workspaces/2024-09-dsl-t3q-final/t3q-v2.0.0b30/t3q-next-latest-config-new-features-batch-resolve.log";
		log_next = "/Users/philip-iii/Dev/workspaces/2024-09-dsl-t3q-final/t3q-v2.0.0b30/t3q-next-latest-config-new-features.log";
		log_b30 = basePath+"t3q-next-latest-config-new-features-batch-resolve.log";
		log_next = basePath+"t3q-next-latest-config-new-features.log";
		
//		loadASNDefinitions();
//		compareLogs(log_b30, log_next, basePath);
		String filterPath = args[1];
//		compareLogs(log_b30, log_next, filterPath);

		System.out.println("=========================================================================");

		String root = "/Users/philip-iii/Dev/workspaces/2024-09-dsl-t3q-final/t3q-v2.0.0b30/tf160/logs-debug/";
		String root = basePath+"tf160/logs-debug/";
		Map<String, Map<String, LogAnalyzer>> aggregate = new LinkedHashMap<>();
		//TODO: create automatically from root path
		List<String> versions = List.of("b30", "next", "next-new-features");