Changeset 14191
- Timestamp:
- Nov 27, 2019 8:42:33 AM (9 days ago)
- Location:
- branches/dev-cw-2641
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dev-cw-2641/Compiler/ModelicaFrontEnd/src/java/org/jmodelica/common/evaluation/ExternalProcessCacheImpl.java
r14187 r14191 160 160 extFunctionExecutable = new ExternalFunctionExecutableDynamic(arguments); 161 161 162 debugMsg = "Succes fully connected external function '" + ext.getName() + "' to the evaluator";162 debugMsg = "Successfully connected external function '" + ext.getName() + "' to the evaluator"; 163 163 } else { 164 164 executable = mc.compileExternal(ext); … … 166 166 extFunctionExecutable = new ExternalFunctionExecutableGenerated(executable); 167 167 168 debugMsg = "Succes fully compiled external function '" + ext.getName() + "' to executable '"168 debugMsg = "Successfully compiled external function '" + ext.getName() + "' to executable '" 169 169 + executable + "'"; 170 170 } -
branches/dev-cw-2641/Compiler/ModelicaFrontEnd/src/java/org/jmodelica/common/evaluation/LiveExternalFunction.java
r14187 r14191 69 69 map.setup(ext, values, timeout, com); 70 70 long time3 = System.currentTimeMillis(); 71 compiler.log().debug( "Setup live external function: " + ext.getName()71 compiler.log().debug(ExternalFunction.EXTERNAL_LOG_PREFIX+"Setup live external function: " + ext.getName() 72 72 + ", createProcessCommunicator() time: " + (time2 - time1) 73 73 + "ms, setup time: " + (time3 - time2) + "ms"); -
branches/dev-cw-2641/Python/src/tests_jmodelica/general/test_extfunctions.py
r13908 r14191 49 49 nbr_of_evaluator_calls = 0 50 50 with open("log.txt") as f: 51 res = fnmatch.filter(f, " Succesfully connected external function '*' to the evaluator*")51 res = fnmatch.filter(f, "*Successfully connected external function '*' to the evaluator*") 52 52 nbr_of_evaluator_calls = len(res) 53 53 … … 70 70 nbr_of_evaluator_calls = 0 71 71 with open("log.txt") as f: 72 res = fnmatch.filter(f, " Succesfully connected external function '*' to the evaluator*")72 res = fnmatch.filter(f, "*Successfully connected external function '*' to the evaluator*") 73 73 nbr_of_evaluator_calls = len(res) 74 74 … … 102 102 matches = 0 103 103 with open("log_unknown_shared.txt") as f: 104 res = fnmatch.filter(f, " Could not find a shared library containing*")104 res = fnmatch.filter(f, "*Could not find a shared library containing*") 105 105 matches = len(res) 106 106 … … 114 114 nbr_of_evaluator_calls = 0 115 115 with open("log.txt") as f: 116 res = fnmatch.filter(f, " Succesfully connected external function '*' to the evaluator*")116 res = fnmatch.filter(f, "*Successfully connected external function '*' to the evaluator*") 117 117 nbr_of_evaluator_calls = len(res) 118 118 … … 131 131 nbr_of_evaluator_calls = 0 132 132 with open("log.txt") as f: 133 res = fnmatch.filter(f, " Succesfully connected external function '*' to the evaluator*")133 res = fnmatch.filter(f, "*Successfully connected external function '*' to the evaluator*") 134 134 nbr_of_evaluator_calls = len(res) 135 135 … … 147 147 nbr_of_evaluator_calls = 0 148 148 with open("log.txt") as f: 149 res = fnmatch.filter(f, " Succesfully connected external function '*' to the evaluator*")149 res = fnmatch.filter(f, "*Successfully connected external function '*' to the evaluator*") 150 150 nbr_of_evaluator_calls = len(res) 151 151
Note: See TracChangeset
for help on using the changeset viewer.