Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame] | 1 | echo "************************ Java:" |
| 2 | |
| 3 | sh JavaTest.sh |
| 4 | |
| 5 | echo "************************ Kotlin:" |
| 6 | |
| 7 | sh KotlinTest.sh |
| 8 | |
| 9 | echo "************************ Go:" |
| 10 | |
| 11 | sh GoTest.sh |
| 12 | |
| 13 | echo "************************ Python:" |
| 14 | |
| 15 | sh PythonTest.sh |
| 16 | |
Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame] | 17 | echo "************************ TypeScript:" |
| 18 | |
Austin Schuh | 2dd86a9 | 2022-09-14 21:19:23 -0700 | [diff] [blame] | 19 | python3 TypeScriptTest.py |
Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame] | 20 | |
| 21 | echo "************************ C++:" |
| 22 | |
| 23 | cd .. |
| 24 | ./flattests |
| 25 | cd tests |
| 26 | |
| 27 | echo "************************ C#:" |
| 28 | |
| 29 | cd FlatBuffers.Test |
| 30 | sh NetTest.sh |
| 31 | cd .. |
| 32 | |
| 33 | echo "************************ PHP:" |
| 34 | |
| 35 | php phpTest.php |
| 36 | sh phpUnionVectorTest.sh |
| 37 | |
| 38 | echo "************************ Dart:" |
| 39 | |
| 40 | sh DartTest.sh |
| 41 | |
| 42 | echo "************************ Rust:" |
| 43 | |
| 44 | sh RustTest.sh |
| 45 | |
| 46 | echo "************************ Lobster:" |
| 47 | |
| 48 | # TODO: test if available. |
| 49 | # lobster lobstertest.lobster |
| 50 | |
| 51 | echo "************************ C:" |
| 52 | |
| 53 | echo "(in a different repo)" |
| 54 | |
| 55 | echo "************************ Swift:" |
| 56 | |
Austin Schuh | 272c613 | 2020-11-14 16:37:52 -0800 | [diff] [blame] | 57 | cd FlatBuffers.Test.Swift |
| 58 | sh SwiftTest.sh |
| 59 | cd .. |