mirror of
https://github.com/google/flatbuffers.git
synced 2025-04-08 09:12:14 +08:00
* Fixes bug where null default allows 0 as a value. * Undoes one bit, adds null type allowance to addField<> default. * Undoes IDE auto-format of imports. * Adds generated changes after scripts/generate_code.py * Removes unused symbol. * Revert "Removes unused symbol." This reverts commit 9cece17325f37a49f35ede29ebbe2f518c9d591f. --------- Co-authored-by: Derek Bailey <derekbailey@google.com>
60 lines
887 B
Bash
Executable File
60 lines
887 B
Bash
Executable File
echo "************************ Java:"
|
|
|
|
sh JavaTest.sh
|
|
|
|
echo "************************ Kotlin:"
|
|
|
|
sh KotlinTest.sh
|
|
|
|
echo "************************ Go:"
|
|
|
|
sh GoTest.sh
|
|
|
|
echo "************************ Python:"
|
|
|
|
sh PythonTest.sh
|
|
|
|
echo "************************ TypeScript:"
|
|
|
|
python3 ts/TypeScriptTest.py
|
|
|
|
echo "************************ C++:"
|
|
|
|
cd ..
|
|
./flattests
|
|
cd tests
|
|
|
|
echo "************************ C#:"
|
|
|
|
cd FlatBuffers.Test
|
|
sh NetTest.sh
|
|
cd ..
|
|
|
|
echo "************************ PHP:"
|
|
|
|
php phpTest.php
|
|
sh phpUnionVectorTest.sh
|
|
|
|
echo "************************ Dart:"
|
|
|
|
sh DartTest.sh
|
|
|
|
echo "************************ Rust:"
|
|
|
|
sh RustTest.sh
|
|
|
|
echo "************************ Lobster:"
|
|
|
|
# TODO: test if available.
|
|
# lobster lobstertest.lobster
|
|
|
|
echo "************************ C:"
|
|
|
|
echo "(in a different repo)"
|
|
|
|
echo "************************ Swift:"
|
|
|
|
cd FlatBuffers.Test.Swift
|
|
sh SwiftTest.sh
|
|
cd ..
|