blob: 1fc96a206148754db5f676c62b1d513d85da8853 [file] [log] [blame]
Austin Schuhe89fa2d2019-08-14 20:24:23 -07001:: Copyright 2015 Google Inc. All rights reserved.
2::
3:: Licensed under the Apache License, Version 2.0 (the "License");
4:: you may not use this file except in compliance with the License.
5:: You may obtain a copy of the License at
6::
7:: http://www.apache.org/licenses/LICENSE-2.0
8::
9:: Unless required by applicable law or agreed to in writing, software
10:: distributed under the License is distributed on an "AS IS" BASIS,
11:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12:: See the License for the specific language governing permissions and
13:: limitations under the License.
14
Austin Schuh272c6132020-11-14 16:37:52 -080015@SETLOCAL
16
Austin Schuhe89fa2d2019-08-14 20:24:23 -070017set buildtype=Release
18if "%1"=="-b" set buildtype=%2
19
Austin Schuh272c6132020-11-14 16:37:52 -080020set commandline=%*
21
22
23if NOT "%commandline%"=="%commandline:--cpp-std c++0x=%" (
24 set TEST_CPP_FLAGS=--cpp-std c++0x
25) else (
26 @rem --cpp-std is defined by flatc default settings.
27 set TEST_CPP_FLAGS=
28)
29
30set TEST_CPP_FLAGS=--gen-compare --cpp-ptr-type flatbuffers::unique_ptr %TEST_CPP_FLAGS%
31set TEST_CS_FLAGS=--cs-gen-json-serializer
32set TEST_JS_TS_FLAGS=--gen-name-strings
33set TEST_RUST_FLAGS=--gen-name-strings
34set TEST_BASE_FLAGS=--reflect-names --gen-mutable --gen-object-api
35set TEST_NOINCL_FLAGS=%TEST_BASE_FLAGS% --no-includes --no-fb-import
36
37..\%buildtype%\flatc.exe --binary --cpp --java --kotlin --csharp --dart --go --lobster --lua --js --ts --php --grpc ^
38%TEST_NOINCL_FLAGS% %TEST_CPP_FLAGS% %TEST_CS_FLAGS% -I include_test monster_test.fbs monsterdata_test.json || goto FAIL
39..\%buildtype%\flatc.exe --rust %TEST_NOINCL_FLAGS% %TEST_RUST_FLAGS% -I include_test monster_test.fbs monsterdata_test.json || goto FAIL
40
41..\%buildtype%\flatc.exe --python %TEST_BASE_FLAGS% --no-fb-import -I include_test monster_test.fbs monsterdata_test.json || goto FAIL
42
43..\%buildtype%\flatc.exe --binary --cpp --java --csharp --dart --go --lobster --lua --js --ts --php --python --rust ^
44%TEST_NOINCL_FLAGS% %TEST_CPP_FLAGS% %TEST_CS_FLAGS% %TEST_JS_TS_FLAGS% -o namespace_test namespace_test/namespace_test1.fbs namespace_test/namespace_test2.fbs || goto FAIL
45
46..\%buildtype%\flatc.exe --cpp --java --csharp --js --ts --php %TEST_BASE_FLAGS% %TEST_CPP_FLAGS% %TEST_CS_FLAGS% %TEST_JS_TS_FLAGS% -o union_vector ./union_vector/union_vector.fbs || goto FAIL
47..\%buildtype%\flatc.exe --rust -I include_test -o include_test include_test/include_test1.fbs || goto FAIL
48..\%buildtype%\flatc.exe --rust -I include_test -o include_test/sub include_test/sub/include_test2.fbs || goto FAIL
Austin Schuhe89fa2d2019-08-14 20:24:23 -070049..\%buildtype%\flatc.exe -b --schema --bfbs-comments --bfbs-builtins -I include_test monster_test.fbs || goto FAIL
Austin Schuh272c6132020-11-14 16:37:52 -080050..\%buildtype%\flatc.exe --cpp --bfbs-comments --bfbs-builtins --bfbs-gen-embed %TEST_NOINCL_FLAGS% %TEST_CPP_FLAGS% -I include_test monster_test.fbs || goto FAIL
Austin Schuhe89fa2d2019-08-14 20:24:23 -070051..\%buildtype%\flatc.exe -b --schema --bfbs-comments --bfbs-builtins -I include_test arrays_test.fbs || goto FAIL
52..\%buildtype%\flatc.exe --jsonschema --schema -I include_test monster_test.fbs || goto FAIL
Austin Schuh272c6132020-11-14 16:37:52 -080053..\%buildtype%\flatc.exe --cpp --java --csharp --jsonschema %TEST_NOINCL_FLAGS% %TEST_CPP_FLAGS% %TEST_CS_FLAGS% --scoped-enums arrays_test.fbs || goto FAIL
54..\%buildtype%\flatc.exe --python %TEST_BASE_FLAGS% arrays_test.fbs || goto FAIL
55..\%buildtype%\flatc.exe --cpp %TEST_BASE_FLAGS% --cpp-ptr-type flatbuffers::unique_ptr native_type_test.fbs || goto FAIL
Austin Schuhe89fa2d2019-08-14 20:24:23 -070056
Austin Schuh272c6132020-11-14 16:37:52 -080057@rem Generate the optional scalar code for tests.
58..\%buildtype%\flatc.exe --csharp --java --kotlin --rust --lobster --ts --js optional_scalars.fbs || goto FAIL
59..\%buildtype%\flatc.exe %TEST_NOINCL_FLAGS% %TEST_CPP_FLAGS% --cpp optional_scalars.fbs || goto FAIL
60
61@rem Generate the schema evolution tests
62..\%buildtype%\flatc.exe --cpp --scoped-enums %TEST_CPP_FLAGS% -o evolution_test ./evolution_test/evolution_v1.fbs ./evolution_test/evolution_v2.fbs || goto FAIL
63
64if NOT "%MONSTER_EXTRA%"=="skip" (
Austin Schuhe89fa2d2019-08-14 20:24:23 -070065 @echo Generate MosterExtra
Austin Schuh272c6132020-11-14 16:37:52 -080066 ..\%buildtype%\flatc.exe --cpp --java --csharp %TEST_NOINCL_FLAGS% %TEST_CPP_FLAGS% %TEST_CS_FLAGS% monster_extra.fbs monsterdata_extra.json || goto FAIL
67 ..\%buildtype%\flatc.exe --python %TEST_BASE_FLAGS% monster_extra.fbs monsterdata_extra.json || goto FAIL
Austin Schuhe89fa2d2019-08-14 20:24:23 -070068) else (
69 @echo monster_extra.fbs skipped (the strtod function from MSVC2013 or older doesn't support NaN/Inf arguments)
70)
71
Austin Schuh272c6132020-11-14 16:37:52 -080072set TEST_CPP17_FLAGS=--cpp --cpp-std c++17 -o ./cpp17/generated_cpp17 %TEST_NOINCL_FLAGS%
73if NOT "%MONSTER_EXTRA%"=="skip" (
74 @rem Flag c++17 requires Clang6, GCC7, MSVC2017 (_MSC_VER >= 1914) or higher.
75 ..\%buildtype%\flatc.exe %TEST_CPP17_FLAGS% -I include_test monster_test.fbs || goto FAIL
76 ..\%buildtype%\flatc.exe %TEST_CPP17_FLAGS% optional_scalars.fbs || goto FAIL
77 @rem..\%buildtype%\flatc.exe %TEST_CPP17_FLAGS% arrays_test.fbs || goto FAIL
78 @rem..\%buildtype%\flatc.exe %TEST_CPP17_FLAGS% native_type_test.fbs || goto FAIL
79 @rem..\%buildtype%\flatc.exe %TEST_CPP17_FLAGS% monster_extra.fbs || goto FAIL
80 @rem..\%buildtype%\flatc.exe %TEST_CPP17_FLAGS% ./union_vector/union_vector.fbs || goto FAIL
81)
82
Austin Schuhe89fa2d2019-08-14 20:24:23 -070083cd ../samples
Austin Schuh272c6132020-11-14 16:37:52 -080084..\%buildtype%\flatc.exe --cpp --lobster %TEST_BASE_FLAGS% %TEST_CPP_FLAGS% monster.fbs || goto FAIL
Austin Schuhe89fa2d2019-08-14 20:24:23 -070085..\%buildtype%\flatc.exe -b --schema --bfbs-comments --bfbs-builtins monster.fbs || goto FAIL
86cd ../reflection
87call generate_code.bat %1 %2 || goto FAIL
88
89set EXITCODE=0
90goto SUCCESS
91:FAIL
92set EXITCODE=1
93:SUCCESS
94cd ../tests
95EXIT /B %EXITCODE%