mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
12 lines
174 B
Python
Executable File
12 lines
174 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys;
|
|
|
|
from flatc_test import run_all
|
|
from flatc_cpp_tests import CppTests
|
|
|
|
passing, failing = run_all(CppTests)
|
|
|
|
if failing > 0:
|
|
sys.exit(1)
|