forked from google/flatbuffers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestAll.sh
More file actions
executable file
·59 lines (34 loc) · 887 Bytes
/
Copy pathTestAll.sh
File metadata and controls
executable file
·59 lines (34 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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 ..