diff --git a/tests/FlatBuffers.Test/NetTest.sh b/tests/FlatBuffers.Test/NetTest.sh new file mode 100644 index 000000000..ea16e4725 --- /dev/null +++ b/tests/FlatBuffers.Test/NetTest.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# Testing C# on Linux using Mono. + +mcs -out:fbnettest.exe ../../net/FlatBuffers/*.cs ../MyGame/Example/*.cs FlatBuffersTestClassAttribute.cs FlatBuffersTestMethodAttribute.cs Assert.cs FlatBuffersExampleTests.cs Program.cs ByteBufferTests.cs FlatBufferBuilderTests.cs FlatBuffersFuzzTests.cs FuzzTestData.cs Lcg.cs TestTable.cs +./fbnettest.exe +rm fbnettest.exe +rm Resources/monsterdata_cstest.mon + diff --git a/tests/TestAll.sh b/tests/TestAll.sh new file mode 100644 index 000000000..b501838a8 --- /dev/null +++ b/tests/TestAll.sh @@ -0,0 +1,43 @@ +echo "************************ Java:" + +sh JavaTest.sh + +echo "************************ Go:" + +sh GoTest.sh + +echo "************************ Python:" + +sh PythonTest.sh + +echo "************************ JavaScript:" + +sh JavaScriptTest.sh + +echo "************************ TypeScript:" + +sh TypeScriptTest.sh + +echo "************************ C++:" + +cd .. +./flattests +cd tests + +echo "************************ C#:" + +cd FlatBuffers.Test +sh NetTest.sh +cd .. + +echo "************************ PHP:" + +php phpTest.php + +echo "************************ C:" + +echo "(in a different repo)" + +echo "************************ Swift:" + +echo "(in a different repo)" diff --git a/tests/monsterdata_python_wire.mon b/tests/monsterdata_python_wire.mon index 190f43a8c..eb359bbdc 100644 Binary files a/tests/monsterdata_python_wire.mon and b/tests/monsterdata_python_wire.mon differ