From e80cc3592cbdd96109d5b0b3e1a3ea3fa75cc4a8 Mon Sep 17 00:00:00 2001 From: Evgeny Gavrin Date: Thu, 19 Nov 2015 14:36:59 +0300 Subject: [PATCH] Add several regression tests from closed issues. Related issues: #274, #276, #281, #340, #359, #429, #453, #541, #613, #639, #640 JerryScript-DCO-1.0-Signed-off-by: Evgeny Gavrin e.gavrin@samsung.com --- tests/jerry/regression-test-issue-274.js | 16 ++++++++++ tests/jerry/regression-test-issue-276.js | 38 ++++++++++++++++++++++++ tests/jerry/regression-test-issue-281.js | 16 ++++++++++ tests/jerry/regression-test-issue-340.js | 16 ++++++++++ tests/jerry/regression-test-issue-359.js | 19 ++++++++++++ tests/jerry/regression-test-issue-429.js | 33 ++++++++++++++++++++ tests/jerry/regression-test-issue-453.js | 25 ++++++++++++++++ tests/jerry/regression-test-issue-541.js | 17 +++++++++++ tests/jerry/regression-test-issue-613.js | 16 ++++++++++ tests/jerry/regression-test-issue-639.js | 18 +++++++++++ tests/jerry/regression-test-issue-640.js | 18 +++++++++++ 11 files changed, 232 insertions(+) create mode 100644 tests/jerry/regression-test-issue-274.js create mode 100644 tests/jerry/regression-test-issue-276.js create mode 100644 tests/jerry/regression-test-issue-281.js create mode 100644 tests/jerry/regression-test-issue-340.js create mode 100644 tests/jerry/regression-test-issue-359.js create mode 100644 tests/jerry/regression-test-issue-429.js create mode 100644 tests/jerry/regression-test-issue-453.js create mode 100644 tests/jerry/regression-test-issue-541.js create mode 100644 tests/jerry/regression-test-issue-613.js create mode 100644 tests/jerry/regression-test-issue-639.js create mode 100644 tests/jerry/regression-test-issue-640.js diff --git a/tests/jerry/regression-test-issue-274.js b/tests/jerry/regression-test-issue-274.js new file mode 100644 index 0000000000..557b3e86f4 --- /dev/null +++ b/tests/jerry/regression-test-issue-274.js @@ -0,0 +1,16 @@ +// Copyright 2015 Samsung Electronics Co., Ltd. +// Copyright 2015 University of Szeged. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +'�' diff --git a/tests/jerry/regression-test-issue-276.js b/tests/jerry/regression-test-issue-276.js new file mode 100644 index 0000000000..d57ab4db6a --- /dev/null +++ b/tests/jerry/regression-test-issue-276.js @@ -0,0 +1,38 @@ +// Copyright 2015 Samsung Electronics Co., Ltd. +// Copyright 2015 University of Szeged. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +/* 256 "a" in the array */ + +try { + ["a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", "a", + "a", "a", "a", "a"]; +} catch(e) { } diff --git a/tests/jerry/regression-test-issue-281.js b/tests/jerry/regression-test-issue-281.js new file mode 100644 index 0000000000..2fa446dafe --- /dev/null +++ b/tests/jerry/regression-test-issue-281.js @@ -0,0 +1,16 @@ +// Copyright 2015 Samsung Electronics Co., Ltd. +// Copyright 2015 University of Szeged. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +while(false) foo diff --git a/tests/jerry/regression-test-issue-340.js b/tests/jerry/regression-test-issue-340.js new file mode 100644 index 0000000000..75ce95f2b6 --- /dev/null +++ b/tests/jerry/regression-test-issue-340.js @@ -0,0 +1,16 @@ +// Copyright 2015 Samsung Electronics Co., Ltd. +// Copyright 2015 University of Szeged. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +'\0'+'456'; diff --git a/tests/jerry/regression-test-issue-359.js b/tests/jerry/regression-test-issue-359.js new file mode 100644 index 0000000000..86e8e9d87d --- /dev/null +++ b/tests/jerry/regression-test-issue-359.js @@ -0,0 +1,19 @@ +// Copyright 2015 Samsung Electronics Co., Ltd. +// Copyright 2015 University of Szeged. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +function f_0(a_0) { + "use strict"; + Object.freeze({a: "foo"}); +} diff --git a/tests/jerry/regression-test-issue-429.js b/tests/jerry/regression-test-issue-429.js new file mode 100644 index 0000000000..66fe3cd751 --- /dev/null +++ b/tests/jerry/regression-test-issue-429.js @@ -0,0 +1,33 @@ +// Copyright 2015 Samsung Electronics Co., Ltd. +// Copyright 2015 University of Szeged. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +var v_0 = [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, + 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, + 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, + 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, + 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, + 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, + 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, + 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, + 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, + 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255 +]; diff --git a/tests/jerry/regression-test-issue-453.js b/tests/jerry/regression-test-issue-453.js new file mode 100644 index 0000000000..bc443bb1fc --- /dev/null +++ b/tests/jerry/regression-test-issue-453.js @@ -0,0 +1,25 @@ +// Copyright 2015 Samsung Electronics Co., Ltd. +// Copyright 2015 University of Szeged. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +try { + var v_0 = [ + ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, + ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, + ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, + ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, + ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, + ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ]; + } +catch(e) {} diff --git a/tests/jerry/regression-test-issue-541.js b/tests/jerry/regression-test-issue-541.js new file mode 100644 index 0000000000..96a9d62d7c --- /dev/null +++ b/tests/jerry/regression-test-issue-541.js @@ -0,0 +1,17 @@ +// Copyright 2015 Samsung Electronics Co., Ltd. +// Copyright 2015 University of Szeged. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +new RegExp("m\u2820"); +parseInt("145"); diff --git a/tests/jerry/regression-test-issue-613.js b/tests/jerry/regression-test-issue-613.js new file mode 100644 index 0000000000..e674e4ecb5 --- /dev/null +++ b/tests/jerry/regression-test-issue-613.js @@ -0,0 +1,16 @@ +// Copyright 2015 Samsung Electronics Co., Ltd. +// Copyright 2015 University of Szeged. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +a = "é" diff --git a/tests/jerry/regression-test-issue-639.js b/tests/jerry/regression-test-issue-639.js new file mode 100644 index 0000000000..4ce8c4ce01 --- /dev/null +++ b/tests/jerry/regression-test-issue-639.js @@ -0,0 +1,18 @@ +// Copyright 2015 Samsung Electronics Co., Ltd. +// Copyright 2015 University of Szeged. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +function f_0() { + var f_0 = print; +} diff --git a/tests/jerry/regression-test-issue-640.js b/tests/jerry/regression-test-issue-640.js new file mode 100644 index 0000000000..ca8890f94d --- /dev/null +++ b/tests/jerry/regression-test-issue-640.js @@ -0,0 +1,18 @@ +// Copyright 2015 Samsung Electronics Co., Ltd. +// Copyright 2015 University of Szeged. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +function f_0() { + var f_0 = 10; +}