aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/012.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/012.sh')
-rw-r--r--tests/012.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/012.sh b/tests/012.sh
new file mode 100644
index 0000000..279e3c2
--- /dev/null
+++ b/tests/012.sh
@@ -0,0 +1,17 @@
+set -e
+
+bash ../../test_exit_code.sh 25 <<'EOF'
+int main() {
+ int i;
+ int ret;
+ i = 0;
+ ret = 0;
+ for (i = 0; i < 10; i = i + 1) {
+ if (i % 2 == 0) {
+ continue;
+ }
+ ret = ret + i;
+ }
+ return ret;
+}
+EOF