aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test_increment_operators.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_increment_operators.sh')
-rw-r--r--tests/test_increment_operators.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/tests/test_increment_operators.sh b/tests/test_increment_operators.sh
deleted file mode 100644
index f6aa2b5..0000000
--- a/tests/test_increment_operators.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-cat <<'EOF' > expected
-44
-44
-46
-46
-44
-42
-42
-EOF
-
-test_diff <<'EOF'
-int printf();
-
-int main() {
- int a = 42;
- ++a;
- a++;
- printf("%d\n", a);
- printf("%d\n", a++);
- printf("%d\n", ++a);
- printf("%d\n", a);
- --a;
- a--;
- printf("%d\n", a--);
- printf("%d\n", --a);
- printf("%d\n", a);
-}
-EOF
-