Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortjung2012-03-14 08:38:49 +0000
committertjung2012-03-14 08:38:49 +0000
commit74fc3011ec9e539396d835e856b183a54e8aa2e3 (patch)
tree8f2d0bb1ce8646451b54788a9ce4d87a5fe7eb52
parentfede1ee987cbffd5f6b2ea2df180aa5739faea45 (diff)
downloadorg.eclipse.etrice-74fc3011ec9e539396d835e856b183a54e8aa2e3.tar.gz
org.eclipse.etrice-74fc3011ec9e539396d835e856b183a54e8aa2e3.tar.xz
org.eclipse.etrice-74fc3011ec9e539396d835e856b183a54e8aa2e3.zip
[integration.tests.model] Test fixed after Codegenerator change for deepCopy
-rw-r--r--tests/org.eclipse.etrice.integration.tests/model/org.eclipse.etrice.integration.SendingDataByValueTest.room4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/org.eclipse.etrice.integration.tests/model/org.eclipse.etrice.integration.SendingDataByValueTest.room b/tests/org.eclipse.etrice.integration.tests/model/org.eclipse.etrice.integration.SendingDataByValueTest.room
index 0c310ad89..6b8b5d586 100644
--- a/tests/org.eclipse.etrice.integration.tests/model/org.eclipse.etrice.integration.SendingDataByValueTest.room
+++ b/tests/org.eclipse.etrice.integration.tests/model/org.eclipse.etrice.integration.SendingDataByValueTest.room
@@ -204,9 +204,11 @@ RoomModel org.eclipse.etrice.integration.SendingDataByValueTest {
"int[] intArray = data.getOwnType().getArrayFromInt32();"
"for (int i=0;i<intArray.length;i++) {intArray[i] = 10+i;}"
"data.getOwnType().setArrayFromInt32(intArray);"
+ "int[] intArrayShort=data.getArrayFromInt32();"
+ "for (int j=0;j<intArrayShort.length;j++) {intArray[j] = 10+j;}"
""
"// use convenient function"
- "PingPongPort.ping((byte)45,(short)34,80,\'c\',(float)3.14,7.12345,\"Hase !\",intArray,data.getOwnType());"
+ "PingPongPort.ping((byte)45,(short)34,80,\'c\',(float)3.14,7.12345,\"Hase !\",intArrayShort,data.getOwnType());"
""
"crcGen.update(13);"
}

Back to the top