Skip to content
Snippets Groups Projects
Commit 43368a14 authored by Cristian Galperti's avatar Cristian Galperti
Browse files

Tests passed on cristian@crpppc171

parent 5f4c42ca
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
function [] = SCDconf_setCODEconf(varargin) function [] = SCDconf_setCODEconf(varargin)
if nargin==0 if nargin==0
codeconfname='configurationSettingsCODE'; codeconfname='configurationSettingsCODEicc';
else else
codeconfname=varargin{1}; codeconfname=varargin{1};
end end
......
...@@ -6,7 +6,8 @@ classdef test_expcodes < matlab.unittest.TestCase ...@@ -6,7 +6,8 @@ classdef test_expcodes < matlab.unittest.TestCase
end end
properties(MethodSetupParameter) properties(MethodSetupParameter)
expcode_number = {'1','1005','1006','1010'}; % list of expcodes to test %expcode_number = {'1','1005','1006','1010'}; % list of expcodes to test
expcode_number = {'1','1005','1010'}; % list of expcodes to test
end end
methods(TestClassSetup) methods(TestClassSetup)
...@@ -65,6 +66,7 @@ classdef test_expcodes < matlab.unittest.TestCase ...@@ -65,6 +66,7 @@ classdef test_expcodes < matlab.unittest.TestCase
end end
function test_compilation(testCase) function test_compilation(testCase)
expcode_ignore_compile = [];
testCase.assumeTrue(~any(testCase.expcode_obj.maincode == expcode_ignore_compile)) testCase.assumeTrue(~any(testCase.expcode_obj.maincode == expcode_ignore_compile))
node_to_compile = 'SCD_rtccode_02_02'; node_to_compile = 'SCD_rtccode_02_02';
node_to_compile = 'SCD_rtccode_02_03'; node_to_compile = 'SCD_rtccode_02_03';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment