Remove test-longjmp.c (#3188)

The test is not needed anymore.
This file was added back then, when our libc had its own longjump implementation.
Now with this test we are only testing the system's longjump implementation which -in fact- works great.

JerryScript-DCO-1.0-Signed-off-by: Daniel Balla dballa@inf.u-szeged.hu
This commit is contained in:
Daniel Balla 2019-10-03 10:29:02 +03:00 committed by Robert Fancsik
parent 64774d30ae
commit cd7720ee08

View File

@ -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 */