From 3c65e32f0af354db771c8b4cc1c840ec37a60407 Mon Sep 17 00:00:00 2001 From: Ivan Dubrov Date: Fri, 25 Apr 2014 16:31:51 -0700 Subject: Enabling natives tests --- .../test/java7/com/github/dcevm/test/natives/SimpleNativeTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dcevm') diff --git a/dcevm/src/test/java7/com/github/dcevm/test/natives/SimpleNativeTest.java b/dcevm/src/test/java7/com/github/dcevm/test/natives/SimpleNativeTest.java index 1873ea60..23619837 100644 --- a/dcevm/src/test/java7/com/github/dcevm/test/natives/SimpleNativeTest.java +++ b/dcevm/src/test/java7/com/github/dcevm/test/natives/SimpleNativeTest.java @@ -25,7 +25,6 @@ package com.github.dcevm.test.natives; import org.junit.Before; -import org.junit.Ignore; import org.junit.Test; import static com.github.dcevm.test.util.HotSwapTestHelper.__toVersion__; @@ -37,8 +36,10 @@ import static org.junit.Assert.assertEquals; * * @author Thomas Wuerthinger */ -@Ignore public class SimpleNativeTest { + static { + System.loadLibrary("natives"); + } @Before public void setUp() throws Exception { @@ -69,7 +70,6 @@ public class SimpleNativeTest { @Test public void testSimpleNativeCalls() { - assert __version__() == 0; -- cgit v1.2.3