From a01d09ca4730de4987d67e73a8ee895f77f57f9c Mon Sep 17 00:00:00 2001 From: Alex AUVOLAT Date: Thu, 5 Dec 2013 22:20:54 +0100 Subject: Added tests, corrected two failed tests. --- tests/syntax/good/testfile-for-1.cpp | 1 - tests/typing/bad/testfile-arith-3.cpp | 2 +- tests/typing/bad/testfile-arith-4.cpp | 2 +- tests/typing/bad/testfile-arith-5.cpp | 3 ++- tests/typing/bad/testfile-redef-6.cpp | 1 - tests/typing/good/testfile-subtype-1.cpp | 1 + 6 files changed, 5 insertions(+), 5 deletions(-) (limited to 'tests') diff --git a/tests/syntax/good/testfile-for-1.cpp b/tests/syntax/good/testfile-for-1.cpp index 71f985d..170e303 100644 --- a/tests/syntax/good/testfile-for-1.cpp +++ b/tests/syntax/good/testfile-for-1.cpp @@ -1,2 +1 @@ int main() { for(;;); } - diff --git a/tests/typing/bad/testfile-arith-3.cpp b/tests/typing/bad/testfile-arith-3.cpp index ec4f877..9418b15 100644 --- a/tests/typing/bad/testfile-arith-3.cpp +++ b/tests/typing/bad/testfile-arith-3.cpp @@ -1,2 +1,2 @@ -int main() { char *p; p+p; } +int main() { int *p; p+p; } diff --git a/tests/typing/bad/testfile-arith-4.cpp b/tests/typing/bad/testfile-arith-4.cpp index f9ca567..fbb7e9a 100644 --- a/tests/typing/bad/testfile-arith-4.cpp +++ b/tests/typing/bad/testfile-arith-4.cpp @@ -1,3 +1,3 @@ class S { public: int a; }; -int main() { S s; char *p; p+s; } +int main() { S s; int *p; p+s; } diff --git a/tests/typing/bad/testfile-arith-5.cpp b/tests/typing/bad/testfile-arith-5.cpp index 2637ffc..f17d496 100644 --- a/tests/typing/bad/testfile-arith-5.cpp +++ b/tests/typing/bad/testfile-arith-5.cpp @@ -1,2 +1,3 @@ -int main() { char *p; 1-p; } +int main() { int *p; 1-p; } + diff --git a/tests/typing/bad/testfile-redef-6.cpp b/tests/typing/bad/testfile-redef-6.cpp index ae81bdc..32b0dfd 100644 --- a/tests/typing/bad/testfile-redef-6.cpp +++ b/tests/typing/bad/testfile-redef-6.cpp @@ -1,3 +1,2 @@ class S { public: int a; int a; }; -int main() {} diff --git a/tests/typing/good/testfile-subtype-1.cpp b/tests/typing/good/testfile-subtype-1.cpp index ee18b1e..67647d0 100644 --- a/tests/typing/good/testfile-subtype-1.cpp +++ b/tests/typing/good/testfile-subtype-1.cpp @@ -3,3 +3,4 @@ int main() { int *s; s = NULL; } + -- cgit v1.2.3