Directory testsuite/simulation/libraries/common/

Directory Created:
2013-01-15 10:26
Total Files:
10
Deleted Files:
1
Lines of Code:
847

[root]/testsuite/simulation/libraries/common

Lines of Code

testsuite/simulation/libraries/common/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 75 (100.0%) 1499 (100.0%) 19.9
bruno 23 (30.7%) 785 (52.4%) 34.1
hudson 6 (8.0%) 398 (26.6%) 66.3
sjoelund.se 34 (45.3%) 286 (19.1%) 8.4
cschubert 4 (5.3%) 9 (0.6%) 2.2
adrpo 2 (2.7%) 9 (0.6%) 4.5
lochel 3 (4.0%) 8 (0.5%) 2.6
jfrenkel 3 (4.0%) 4 (0.3%) 1.3

Most Recent Commits

sjoelund.se 2015-05-03 15:39 Rev.: 25896

Remove some reference files no longer in use, xz some others

17 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+17 -2)
sjoelund.se 2014-10-31 11:54 Rev.: 23105

- Add new package Util/GC.mo. Moved functions from System into GC
- Added new flag --debug=gcProfiling, which uses a new call to gc_prof_stats
- Added GC_expand_hp to ModelicaBuiltin.mo; used it for the library tests
- Disable munmap in the gc configure

2 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTestingDefaults.mos (+2 -1)
sjoelund.se 2014-10-02 16:38 Rev.: 22559

Update HeatingSystem to verify results

9 lines of code changed in 2 files:

  • testsuite/simulation/libraries/common: ModelTesting.mo (+1), ModelTesting.mos (+8 -7)
sjoelund.se 2014-10-02 14:53 Rev.: 22553

Update tests

1 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+1)
sjoelund.se 2014-10-02 14:02 Rev.: 22552

Force errors if the wrong information is baselined into a test

15 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+15 -3)
sjoelund.se 2014-09-16 16:51 Rev.: 22328

#2804 Optimize `(x,_,_) = fn(y)` into `x = TSUB(fn(y),1)`.
Triggered some unwanted optimisations/inlining of function calls that were handled by forcing ceval of some function calls in the backend

1 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTestingDefaults.mos (+1 -1)
adrpo 2014-06-19 03:07 Rev.: 21188

- use date /T on windows as otherwise it will ask for a new date!
- fix typo: "This test may not cannot succeed"

5 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+5 -2)
sjoelund.se 2014-06-03 12:34 Rev.: 20931

Fix some of the sorting of components based on dependencies in the bindings
- Would silently fail in some cases in the past
- Some models now give no warnings in compile-time and run-time
- AIMS_Start gives a different result for one variable
- UnevaluateableFixedAttribute.mos gives different results for RML and bootstrapped omc versions

10 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+10 -1)
sjoelund.se 2014-05-26 11:28 Rev.: 20824

- Add -alarm=seconds as option to simulations, and start using alarms in the model testing to prevent spinning in the testsuite

7 lines of code changed in 2 files:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+5 -2), ModelTestingDefaults.mos (+2)
sjoelund.se 2014-05-18 20:40 Rev.: 20675

Various bugfixes and new features
- A new implementation for overloaded (binary) operators.
* Follows the specification more strictly and produces less fewer warnings for legal code
* matrix*matrix and matrix*vector uses reduction expressions to implement sum and array
* Checked that inlining of the generated functions works and produces simple expressions
* The code has been split into its own file since it is 2200 LOC and very few things in there actually depend on Static.mo (most of the remaining ones should be refactored)
- Implemented inlining of functions that assign to record members instead of call the record constructor in a single statement
- When evaluating function inputs to determine output array dimensions, keep the evaluated results
- Adding new preOptModule evaluateReplaceProtectedFinalEvaluateParameters which replaces evaluateReplaceFinalEvaluateParameters as a default module
* Causes problems for NPendulum.mos and PrismaticConstraint. They have different preOptModules set in the tests
- Added simulation flag `-abortSlowSimulation` used for the library tests in the testsuite
- EngineV6 now causes chattering behaviour. It was set to a Compilation test.
* The test will not spin thanks to the `-abortSlowSimulation` flag
- Improve elaboration, simplification, evaluation, and code generation for reductions
* Each operator now has unique indexes to avoid conflicts when replacing iterator crefs
* We can now simplify user-defined operators
* Added a new kind of mode for reductions: DAE.THREAD(), as opposed to the standard DAE.COMBINE()
- When we have multiple iterators, the default DAE.COMBINE() is used and iterates over all combinations of the expressions in the iterators. DAE.THREAD() instead assumes the arrays have equal length and folds over the reduction expression with the n-th expression in each iterator at a time. Used by operator overloading to implement element-wise and `sum` operations.
* This changes the DAE slightly
- Implemented DAE.FuncArg as a uniontype instead of tuple (DAE change)
- Some better simplification for ASUB (ranges and reductions)
- And some more things. Hopefully the major changes are all listed.

4 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+4 -4)
hudson 2014-04-16 11:06 Rev.: 20164

[Janitor mode] Fix whitespace

1 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mo (+1 -1)
sjoelund.se 2014-03-22 10:58 Rev.: 19689

- Avoid some unused expression warnings for failure(_ = fn())
- Fix the variableFilter regex for OSX

1 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+1 -1)
sjoelund.se 2014-02-26 19:57 Rev.: 19318

By default: do not output protected variables to result-file
- To override: Add simflags="-emit_protected"
- The library testing now adds -emit_protected if the compareVars is non-empty (and adds a variableFilter to only output these variables)

23 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+23 -3)
sjoelund.se 2014-01-21 12:22 Rev.: 18701

Add some extra checks to make sure people do not commit "verified" results when the text says files not equal

5 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+5)
sjoelund.se 2013-11-26 11:28 Rev.: 18303

Use system(..., outputFile = "...") to redirect seg.faults on OSX

1 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+1 -1)
cschubert 2013-11-21 15:02 Rev.: 18209

start making msl32_cpp tests more like msl32 tests

7 lines of code changed in 3 files:

  • testsuite/simulation/libraries/common: ModelTesting.mo (+3), ModelTesting.mos (+3), ModelTestingDefaults.mos (+1)
adrpo 2013-09-26 10:37 Rev.: 17394

- more hacks to support relative file names when running testsuite
+ fix filename in loadFile and runScript
+ fix filename in ModelTesting.mos script

4 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+4)
cschubert 2013-09-06 16:56 Rev.: 17109

support for csv result files

2 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+2)
lochel 2013-08-13 20:05 Rev.: 16792

- flip a few slashes

1 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: getExamples.mos (+1 -1)
jfrenkel 2013-07-18 00:08 Rev.: 16615

- add Tests for MSL32 Runtime CPP

4 lines of code changed in 3 files:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+2 -2), ModelTestingDefaults.mos (+1), Template.mos (+1)
sjoelund.se 2013-06-13 20:38 Rev.: 16350

Also use the simflags we set (previously only for Compilation target; now for Simulation)

2 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+2 -3)
sjoelund.se 2013-06-13 08:42 Rev.: 16332

- (Hopefully) added the total number of models to the coverage test since these change over time
- Added simflags option to the new model testing scripts

11 lines of code changed in 2 files:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+10 -10), ModelTestingDefaults.mos (+1)
sjoelund.se 2013-05-02 21:17 Rev.: 15963

Revert r15962 (accidently replaced 8 spaces with 2 spaces; was supposed to be 1 tab to 2 spaces but text editors messed up the command)
Contact me if you have problems merging your working copy

9 lines of code changed in 3 files:

  • testsuite/simulation/libraries/common: ModelTesting.mo (+5 -5), printModels.mo (+1 -1), traversePackage.mo (+3 -3)
hudson 2013-05-02 20:46 Rev.: 15962

[Janitor mode] Fix tabs

9 lines of code changed in 3 files:

  • testsuite/simulation/libraries/common: ModelTesting.mo (+5 -5), printModels.mo (+1 -1), traversePackage.mo (+3 -3)
hudson 2013-04-30 14:51 Rev.: 15938

[Janitor mode] Set auto-props

388 lines of code changed in 2 files:

  • testsuite/simulation/libraries/common: setUpTests.py (+386 -384), updateTests.py (+2)
sjoelund.se 2013-04-29 11:58 Rev.: 15926

Fix eol-style

4 lines of code changed in 4 files:

  • testsuite/simulation/libraries/common: Template.mos (+1), getExamples.mos (+1), printModels.mo (+1), traversePackage.mo (+1)
sjoelund.se 2013-03-05 10:42 Rev.: 15471

- Update now simulating test IncompressibleFluidNetwork
- Fixed the ModelTesting.mos script since an extra ".exe" was added when using Linux (Linux executables do not use the .exe suffix)

3 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+3 -1)
bruno 2013-03-01 16:04 Rev.: 15413

removed dss and FPPluxExt from template

0 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: Template.mos (-2)
bruno 2013-03-01 15:54 Rev.: 15412

removed sinstShortCut from tests and template

0 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: Template.mos (-1)
bruno 2013-03-01 15:35 Rev.: 15411

Updated test script and some MSL 3.2.1 Multibody testcases

65 lines of code changed in 2 files:

  • testsuite/simulation/libraries/common: Template.mos (+3), setUpTests.py (+62 -25)
bruno 2013-02-27 18:05 Rev.: 15365

minor changes

1 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: updateTests.py (+1 -1)
bruno 2013-02-27 17:48 Rev.: 15363

minor changes

109 lines of code changed in 2 files:

  • testsuite/simulation/libraries/common: updateResults.py (del), updateTests.py (new 109)
bruno 2013-02-27 16:37 Rev.: 15360

test updated and script for automatic updating of tests created

137 lines of code changed in 4 files:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+2 -2), Template.mos (+1 -1), setUpTests.py (+22 -21), updateResults.py (new 112)
bruno 2013-02-27 11:38 Rev.: 15349

Added experimental testcases made with new tests functionality

29 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: setUpTests.py (+29 -5)
bruno 2013-02-26 17:11 Rev.: 15336

Fixed script for test generation

63 lines of code changed in 5 files:

  • testsuite/simulation/libraries/common: Template.mos (+2 -2), getExamples.mos (new 5), printModels.mo (new 25), setUpTests.py (+3 -3), traversePackage.mo (new 28)
bruno 2013-02-26 16:00 Rev.: 15334

Updated some multibody tests and utilities for automatic tests creation

32 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: setUpTests.py (+32 -14)
bruno 2013-02-25 19:28 Rev.: 15320

fixed unnecessary complicated statement

1 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+1 -1)
bruno 2013-02-25 18:49 Rev.: 15319

Script for automatic test cases generation updated, now it is possible to automatically generate tests with OpenModelicaModelTesting.Kind functionality.
cleanAll utility added, modelTesting script modified, now it works on windows 7

348 lines of code changed in 4 files:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+11 -1), Template.mos (new 16), cleanAll.bat (new 19), setUpTests.py (new 302)
lochel 2013-01-29 11:08 Rev.: 14988

- expected output

7 lines of code changed in 2 files:

  • testsuite/simulation/libraries/common: ModelTesting.mo (+6 -1), ModelTesting.mos (+1 -1)
sjoelund.se 2013-01-15 14:00 Rev.: 14785

- Update tests

6 lines of code changed in 1 file:

  • testsuite/simulation/libraries/common: ModelTesting.mos (+6 -4)

(4 more)

Generated by StatSVN 0.7.0