From 24fa97889108c49029a9f1977b5b93a7028e6a3d Mon Sep 17 00:00:00 2001 From: Adrian Pop Date: Tue, 21 Nov 2023 16:27:06 +0200 Subject: [PATCH] add ScalableTestSuite to the libs for testing (#11620) --- libraries/Makefile.version | 2 +- libraries/index.json | 14 ++++++++++++++ libraries/index.mos | 9 ++++++++- libraries/update.py | 3 +++ 4 files changed, 26 insertions(+), 2 deletions(-) diff --git a/libraries/Makefile.version b/libraries/Makefile.version index 963956e468f..35b78cf94d2 100644 --- a/libraries/Makefile.version +++ b/libraries/Makefile.version @@ -1 +1 @@ -STAMP=20221102135323.stamp \ No newline at end of file +STAMP=20231121140110.stamp \ No newline at end of file diff --git a/libraries/index.json b/libraries/index.json index 8b0535d9187..57d933768ef 100644 --- a/libraries/index.json +++ b/libraries/index.json @@ -355,6 +355,20 @@ } } }, + "ScalableTestSuite": { + "versions": { + "2.2.0": { + "path": "ScalableTestSuite", + "sha": "e6dcfb489b7e2d07198d93f00858459aa0611267", + "support": "fullSupport", + "uses": { + "Modelica": "4.0.0" + }, + "version": "2.2.0", + "zipfile": "https://github.com/casella/ScalableTestSuite/archive/e6dcfb489b7e2d07198d93f00858459aa0611267.zip" + } + } + }, "SiemensPower": { "versions": { "OMCtest": { diff --git a/libraries/index.mos b/libraries/index.mos index 74b7a90e7bc..921f2e7c338 100644 --- a/libraries/index.mos +++ b/libraries/index.mos @@ -163,6 +163,13 @@ if not installPackage(Modelica_Synchronous, "0.92.2", exactMatch=true) then else print("Installed: Modelica_Synchronous 0.92.2\n"); end if; +if not installPackage(ScalableTestSuite, "2.2.0", exactMatch=true) then + print("ScalableTestSuite 2.2.0 failed.\n"); + print(getErrorString()); + exit(1); +else + print("Installed: ScalableTestSuite 2.2.0\n"); +end if; if not installPackage(SiemensPower, "2.2.0", exactMatch=true) then print("SiemensPower 2.2.0 failed.\n"); print(getErrorString()); @@ -205,4 +212,4 @@ if not installPackage(WasteWater, "2.1.0", exactMatch=true) then else print("Installed: WasteWater 2.1.0\n"); end if; -system("touch .openmodelica/20221031131604.stamp") \ No newline at end of file +system("touch .openmodelica/20231121140110.stamp") diff --git a/libraries/update.py b/libraries/update.py index 860d718123e..d7021dc1e64 100755 --- a/libraries/update.py +++ b/libraries/update.py @@ -48,6 +48,9 @@ "Modelica_Synchronous": { "0.92.2" }, + "ScalableTestSuite": { + "2.2.0" + }, "SiemensPower": { "2.1.0-beta", "2.2.0",