summaryrefslogtreecommitdiff
path: root/tests/unit_tests/test018_NestedWhile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit_tests/test018_NestedWhile')
-rw-r--r--tests/unit_tests/test018_NestedWhile/launchConversion.sci10
-rw-r--r--tests/unit_tests/test018_NestedWhile/scilabcode/mainfunction.sci34
2 files changed, 22 insertions, 22 deletions
diff --git a/tests/unit_tests/test018_NestedWhile/launchConversion.sci b/tests/unit_tests/test018_NestedWhile/launchConversion.sci
index 41be0f04..7ac71a7c 100644
--- a/tests/unit_tests/test018_NestedWhile/launchConversion.sci
+++ b/tests/unit_tests/test018_NestedWhile/launchConversion.sci
@@ -1,5 +1,5 @@
-lines(0)
-clear all
-tmpPWD = pwd;
-
-scilab2c(pwd()+"/scilabcode/mainfunction.sci", pwd(), pwd()+"/scilabcode/");
+lines(0)
+clear all
+tmpPWD = pwd;
+
+scilab2c(pwd()+"/scilabcode/mainfunction.sci", pwd(), pwd()+"/scilabcode/");
diff --git a/tests/unit_tests/test018_NestedWhile/scilabcode/mainfunction.sci b/tests/unit_tests/test018_NestedWhile/scilabcode/mainfunction.sci
index 8142e6ff..8b9c07d3 100644
--- a/tests/unit_tests/test018_NestedWhile/scilabcode/mainfunction.sci
+++ b/tests/unit_tests/test018_NestedWhile/scilabcode/mainfunction.sci
@@ -1,19 +1,19 @@
-//SCI2C: DEFAULT_PRECISION= DOUBLE
+//SCI2C: DEFAULT_PRECISION= DOUBLE
-function mainfunction()
+function mainfunction()
+
+a = 0;
+b = 5;
+while (a+b < 36)
+ disp('a');
+ disp(a);
+ a = a + b;
+ while (b < 9)
+ disp('b');
+ disp(b);
+ b = b + 1;
+ a = a + 1;
+ end
+end
+endfunction
-a = 0;
-b = 5;
-while (a+b < 36)
- disp('a');
- disp(a);
- a = a + b;
- while (b < 9)
- disp('b');
- disp(b);
- b = b + 1;
- a = a + 1;
- end
-end
-endfunction
-