aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPekka Enberg <penberg@kernel.org>2012-02-01 23:28:54 +0200
committerPekka Enberg <penberg@kernel.org>2012-02-01 23:31:47 +0200
commit7999e88aa344043b598d8f9176d229e5eaadc2e0 (patch)
treec92a6b71433b7c336d28d1f0941158689f4c872f
parentf784e9727db3d2c891bf0bb20a1ad4135a9fe5c8 (diff)
downloadjato-7999e88aa344043b598d8f9176d229e5eaadc2e0.tar.gz
test, integration: Don't run dstore/fstore tests on ARM
Signed-off-by: Pekka Enberg <penberg@kernel.org>
-rw-r--r--test/integration/bytecode-test.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/integration/bytecode-test.c b/test/integration/bytecode-test.c
index b7eb9f81..7911ab41 100644
--- a/test/integration/bytecode-test.c
+++ b/test/integration/bytecode-test.c
@@ -999,6 +999,7 @@ static void test_lstore_3(void)
assert_long_equals(1, jlong_run(bytecode));
}
+#ifndef CONFIG_ARM
static void test_fstore_0(void)
{
uint8_t bytecode[] = { OPC_FCONST_1, OPC_FSTORE_0, OPC_FLOAD_0, OPC_FRETURN};
@@ -1055,8 +1056,6 @@ static void test_dstore_3(void)
assert_double_equals(1, jdouble_run(bytecode));
}
-#ifndef CONFIG_ARM
-
static void test_i2f(void)
{
uint8_t bytecode[] = { OPC_ICONST_1, OPC_I2F, OPC_FRETURN };
@@ -1236,6 +1235,7 @@ static void run_tests(void)
test_lstore_1();
test_lstore_2();
test_lstore_3();
+#ifndef CONFIG_ARM
test_fstore_0();
test_fstore_1();
test_fstore_2();
@@ -1244,7 +1244,6 @@ static void run_tests(void)
test_dstore_1();
test_dstore_2();
test_dstore_3();
-#ifndef CONFIG_ARM
/* test_astore_0(); */
/* test_astore_1(); */
/* test_astore_2(); */