From 643602e5754a8385efa867cd56f44dfd78e75439 Mon Sep 17 00:00:00 2001 From: Joel Andersson Date: Wed, 29 Jun 2016 22:45:41 -0500 Subject: [PATCH] Issue #6 Removed broken preproc_constants_runme.m --- Examples/test-suite/matlab/preproc_constants_runme.m | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 Examples/test-suite/matlab/preproc_constants_runme.m diff --git a/Examples/test-suite/matlab/preproc_constants_runme.m b/Examples/test-suite/matlab/preproc_constants_runme.m deleted file mode 100644 index 4de1487b01a..00000000000 --- a/Examples/test-suite/matlab/preproc_constants_runme.m +++ /dev/null @@ -1,11 +0,0 @@ -import preproc_constants.* - -assert(isequal(CONST_INT1, 10), 'CONST_INT1 is %d but should be 10', CONST_INT1) -assert(isequal(CONST_DOUBLE3, 12.3), 'CONST_DOUBLE3 is %g but should be 12.3', CONST_DOUBLE3) -assert(isequal(CONST_BOOL1, true), 'CONST_BOOL1 should be true', CONST_BOOL1) -assert(isequal(CONST_CHAR, 'x'), 'CONST_CHAR is %s but should be 10', CONST_CHAR) -assert(isequal(CONST_STRING1, 'const string'), 'CONST_STRING1 is "%s" but should be "const string"', CONST_STRING1) - -% Test global constants can be seen within functions - -preproc_constants_test_global