...

Text file src/github.com/google/flatbuffers/tests/TestAll.sh

Documentation: github.com/google/flatbuffers/tests

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

View as plain text