From 7941d0d5e01b87f4fc92572237190fe067789205 Mon Sep 17 00:00:00 2001 From: "benjamin.franksen" <benjamin.franksen@helmholtz-berlin.de> Date: Mon, 11 Jun 2012 12:36:19 +0000 Subject: [PATCH] test: renamed and rearranged some tests --- test/compiler/{sncExOpt_DuplOpt.st => exOpt_DuplOpt.st} | 2 +- test/compiler/{sncExOpt_UnrecOpt.st => exOpt_UnrecOpt.st} | 2 +- test/compiler/snc_test.plt | 4 ++-- test/validate/Makefile | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) rename test/compiler/{sncExOpt_DuplOpt.st => exOpt_DuplOpt.st} (97%) rename test/compiler/{sncExOpt_UnrecOpt.st => exOpt_UnrecOpt.st} (97%) diff --git a/test/compiler/sncExOpt_DuplOpt.st b/test/compiler/exOpt_DuplOpt.st similarity index 97% rename from test/compiler/sncExOpt_DuplOpt.st rename to test/compiler/exOpt_DuplOpt.st index 3af3c449..75dc901c 100644 --- a/test/compiler/sncExOpt_DuplOpt.st +++ b/test/compiler/exOpt_DuplOpt.st @@ -2,7 +2,7 @@ This file is distributed subject to a Software License Agreement found in the file LICENSE that is included with this distribution. \*************************************************************************/ -program snctest +program exOpt_DuplOptTest float v; assign v to "grw:xxxExample"; monitor v; diff --git a/test/compiler/sncExOpt_UnrecOpt.st b/test/compiler/exOpt_UnrecOpt.st similarity index 97% rename from test/compiler/sncExOpt_UnrecOpt.st rename to test/compiler/exOpt_UnrecOpt.st index 8984c6e8..0164504e 100644 --- a/test/compiler/sncExOpt_UnrecOpt.st +++ b/test/compiler/exOpt_UnrecOpt.st @@ -2,7 +2,7 @@ This file is distributed subject to a Software License Agreement found in the file LICENSE that is included with this distribution. \*************************************************************************/ -program snctest +program exOpt_UnrecOptTest float v; assign v to "grw:xxxExample"; monitor v; diff --git a/test/compiler/snc_test.plt b/test/compiler/snc_test.plt index 2b894e55..c9b07567 100644 --- a/test/compiler/snc_test.plt +++ b/test/compiler/snc_test.plt @@ -6,7 +6,7 @@ use Test::More; my $success = { cast => 0, - sncExOpt_DuplOpt => 0, + exOpt_DuplOpt => 0, foreignTypes => 0, sync_not_monitored => 0, syncq_not_monitored => 0, @@ -16,7 +16,7 @@ my $success = { }; my $warning = { - sncExOpt_UnrecOpt => 1, + exOpt_UnrecOpt => 1, state_not_reachable => 3, syncq_no_size => 1, }; diff --git a/test/validate/Makefile b/test/validate/Makefile index c95dbead..a992a5a3 100644 --- a/test/validate/Makefile +++ b/test/validate/Makefile @@ -44,12 +44,12 @@ REGRESSION_TESTS_WITHOUT_DB += assign REGRESSION_TESTS_WITHOUT_DB += change REGRESSION_TESTS_WITHOUT_DB += commaOperator REGRESSION_TESTS_WITHOUT_DB += local +REGRESSION_TESTS_WITHOUT_DB += opttVar REGRESSION_TESTS_WITHOUT_DB += pvSync +REGRESSION_TESTS_WITHOUT_DB += safeModeNotAssigned REGRESSION_TESTS_WITHOUT_DB += safeMonitor -REGRESSION_TESTS_WITHOUT_DB += opttVar REGRESSION_TESTS_WITHOUT_DB += sizeof REGRESSION_TESTS_WITHOUT_DB += userfunc -REGRESSION_TESTS_WITHOUT_DB += safeModeNotAssigned REGRESSION_TESTS += $(REGRESSION_TESTS_WITHOUT_DB) REGRESSION_TESTS += $(REGRESSION_TESTS_WITH_DB) -- GitLab