diff --git a/tests/unit-core/test-longjmp.c b/tests/unit-core/test-longjmp.c deleted file mode 100644 index 8ac0fbf43..000000000 --- a/tests/unit-core/test-longjmp.c +++ /dev/null @@ -1,81 +0,0 @@ -/* Copyright JS Foundation and other contributors, http://js.foundation - * - * 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. - */ - -#include "test-common.h" - -#define TEST_MAX_DEPTH 10 -#define TEST_ITERATIONS_NUM 256 - -jmp_buf buffers[TEST_MAX_DEPTH]; - -static void -test_setjmp_longjmp (volatile int depth) -{ - if (depth != TEST_MAX_DEPTH) - { - int a = 1, b = 2, c = 3; - - int array[256]; - for (int i = 0; i < 256; i++) - { - array[i] = i; - } - - (void) a; - (void) b; - (void) c; - (void) array; - - int k = setjmp (buffers[depth]); - - if (k == 0) - { - test_setjmp_longjmp (depth + 1); - } - else - { - TEST_ASSERT (k == depth + 1); - - TEST_ASSERT (a == 1); - TEST_ASSERT (b == 2); - TEST_ASSERT (c == 3); - - for (int i = 0; i < 256; i++) - { - TEST_ASSERT (array[i] == i); - } - } - } - else - { - int t = rand () % depth; - TEST_ASSERT (t >= 0 && t < depth); - - longjmp (buffers[t], t + 1); - } -} /* test_setjmp_longjmp */ - -int -main (void) -{ - TEST_INIT (); - - for (int i = 0; i < TEST_ITERATIONS_NUM; i++) - { - test_setjmp_longjmp (0); - } - - return 0; -} /* main */