├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── include └── toml │ └── toml.h ├── src ├── CMakeLists.txt ├── build.h ├── builder_test.cc ├── empty.cc ├── lexer_test.cc ├── link_test.cc ├── parse_file.cc ├── parse_file_2.cc ├── parse_stdin.cc ├── parser_complex_test.cc ├── parser_failure_test.cc ├── parser_test.cc ├── third_party │ └── gtest-1.7.0 │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── build-aux │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ └── missing │ │ ├── cmake │ │ └── internal_utils.cmake │ │ ├── codegear │ │ ├── gtest.cbproj │ │ ├── gtest.groupproj │ │ ├── gtest_all.cc │ │ ├── gtest_link.cc │ │ ├── gtest_main.cbproj │ │ └── gtest_unittest.cbproj │ │ ├── configure │ │ ├── configure.ac │ │ ├── fused-src │ │ └── gtest │ │ │ ├── gtest-all.cc │ │ │ ├── gtest.h │ │ │ └── gtest_main.cc │ │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ │ ├── m4 │ │ ├── acx_pthread.m4 │ │ ├── gtest.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ │ ├── make │ │ └── Makefile │ │ ├── msvc │ │ ├── gtest-md.sln │ │ ├── gtest-md.vcproj │ │ ├── gtest.sln │ │ ├── gtest.vcproj │ │ ├── gtest_main-md.vcproj │ │ ├── gtest_main.vcproj │ │ ├── gtest_prod_test-md.vcproj │ │ ├── gtest_prod_test.vcproj │ │ ├── gtest_unittest-md.vcproj │ │ └── gtest_unittest.vcproj │ │ ├── samples │ │ ├── prime_tables.h │ │ ├── sample1.cc │ │ ├── sample1.h │ │ ├── sample10_unittest.cc │ │ ├── sample1_unittest.cc │ │ ├── sample2.cc │ │ ├── sample2.h │ │ ├── sample2_unittest.cc │ │ ├── sample3-inl.h │ │ ├── sample3_unittest.cc │ │ ├── sample4.cc │ │ ├── sample4.h │ │ ├── sample4_unittest.cc │ │ ├── sample5_unittest.cc │ │ ├── sample6_unittest.cc │ │ ├── sample7_unittest.cc │ │ ├── sample8_unittest.cc │ │ └── sample9_unittest.cc │ │ ├── scripts │ │ ├── fuse_gtest_files.py │ │ ├── gen_gtest_pred_impl.py │ │ ├── gtest-config.in │ │ ├── pump.py │ │ └── test │ │ │ └── Makefile │ │ ├── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc │ │ ├── test │ │ ├── gtest-death-test_ex_test.cc │ │ ├── gtest-death-test_test.cc │ │ ├── gtest-filepath_test.cc │ │ ├── gtest-linked_ptr_test.cc │ │ ├── gtest-listener_test.cc │ │ ├── gtest-message_test.cc │ │ ├── gtest-options_test.cc │ │ ├── gtest-param-test2_test.cc │ │ ├── gtest-param-test_test.cc │ │ ├── gtest-param-test_test.h │ │ ├── gtest-port_test.cc │ │ ├── gtest-printers_test.cc │ │ ├── gtest-test-part_test.cc │ │ ├── gtest-tuple_test.cc │ │ ├── gtest-typed-test2_test.cc │ │ ├── gtest-typed-test_test.cc │ │ ├── gtest-typed-test_test.h │ │ ├── gtest-unittest-api_test.cc │ │ ├── gtest_all_test.cc │ │ ├── gtest_break_on_failure_unittest.py │ │ ├── gtest_break_on_failure_unittest_.cc │ │ ├── gtest_catch_exceptions_test.py │ │ ├── gtest_catch_exceptions_test_.cc │ │ ├── gtest_color_test.py │ │ ├── gtest_color_test_.cc │ │ ├── gtest_env_var_test.py │ │ ├── gtest_env_var_test_.cc │ │ ├── gtest_environment_test.cc │ │ ├── gtest_filter_unittest.py │ │ ├── gtest_filter_unittest_.cc │ │ ├── gtest_help_test.py │ │ ├── gtest_help_test_.cc │ │ ├── gtest_list_tests_unittest.py │ │ ├── gtest_list_tests_unittest_.cc │ │ ├── gtest_main_unittest.cc │ │ ├── gtest_no_test_unittest.cc │ │ ├── gtest_output_test.py │ │ ├── gtest_output_test_.cc │ │ ├── gtest_output_test_golden_lin.txt │ │ ├── gtest_pred_impl_unittest.cc │ │ ├── gtest_premature_exit_test.cc │ │ ├── gtest_prod_test.cc │ │ ├── gtest_repeat_test.cc │ │ ├── gtest_shuffle_test.py │ │ ├── gtest_shuffle_test_.cc │ │ ├── gtest_sole_header_test.cc │ │ ├── gtest_stress_test.cc │ │ ├── gtest_test_utils.py │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ ├── gtest_throw_on_failure_test.py │ │ ├── gtest_throw_on_failure_test_.cc │ │ ├── gtest_uninitialized_test.py │ │ ├── gtest_uninitialized_test_.cc │ │ ├── gtest_unittest.cc │ │ ├── gtest_xml_outfile1_test_.cc │ │ ├── gtest_xml_outfile2_test_.cc │ │ ├── gtest_xml_outfiles_test.py │ │ ├── gtest_xml_output_unittest.py │ │ ├── gtest_xml_output_unittest_.cc │ │ ├── gtest_xml_test_utils.py │ │ ├── production.cc │ │ └── production.h │ │ └── xcode │ │ ├── Config │ │ ├── DebugProject.xcconfig │ │ ├── FrameworkTarget.xcconfig │ │ ├── General.xcconfig │ │ ├── ReleaseProject.xcconfig │ │ ├── StaticLibraryTarget.xcconfig │ │ └── TestTarget.xcconfig │ │ ├── Resources │ │ └── Info.plist │ │ ├── Samples │ │ └── FrameworkSample │ │ │ ├── Info.plist │ │ │ ├── WidgetFramework.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── runtests.sh │ │ │ ├── widget.cc │ │ │ ├── widget.h │ │ │ └── widget_test.cc │ │ ├── Scripts │ │ ├── runtests.sh │ │ └── versiongenerate.py │ │ └── gtest.xcodeproj │ │ └── project.pbxproj ├── value_test.cc └── writer_test.cc └── testcase ├── fail ├── array-01.toml ├── array-02.toml ├── array-03.toml ├── array-04.toml ├── array-05.toml ├── array-06.toml ├── boolean-01.toml ├── boolean-02.toml ├── datetime-01.toml ├── datetime-02.toml ├── groupkey-01.toml ├── groupkey-02.toml ├── groupkey-03.toml ├── groupkey-04.toml ├── groupkey-05.toml ├── groupkey-06.toml ├── groupkey-07.toml ├── groupkey-08.toml ├── groupkey-09.toml ├── int-01.toml ├── int-02.toml ├── multikey-01.toml ├── string-01.toml ├── string-02.toml ├── string-03.toml └── table-02.toml └── success ├── array-01.toml ├── array-table-01.toml ├── array-table-02.toml ├── boolean-01.toml ├── datetime-01.toml ├── datetime-02.toml ├── float-01.toml ├── inlinetable-01.toml ├── integer-01.toml ├── string-01.toml ├── table-01.toml ├── table-02.toml ├── table-03.toml └── with-utf8-bom.toml /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | /*build* 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/README.md -------------------------------------------------------------------------------- /include/toml/toml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/include/toml/toml.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/build.h -------------------------------------------------------------------------------- /src/builder_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/builder_test.cc -------------------------------------------------------------------------------- /src/empty.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/empty.cc -------------------------------------------------------------------------------- /src/lexer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/lexer_test.cc -------------------------------------------------------------------------------- /src/link_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/link_test.cc -------------------------------------------------------------------------------- /src/parse_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/parse_file.cc -------------------------------------------------------------------------------- /src/parse_file_2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/parse_file_2.cc -------------------------------------------------------------------------------- /src/parse_stdin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/parse_stdin.cc -------------------------------------------------------------------------------- /src/parser_complex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/parser_complex_test.cc -------------------------------------------------------------------------------- /src/parser_failure_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/parser_failure_test.cc -------------------------------------------------------------------------------- /src/parser_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/parser_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/CHANGES -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/CMakeLists.txt -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/CONTRIBUTORS -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/LICENSE -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/Makefile.am -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/Makefile.in -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/README -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/aclocal.m4 -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/build-aux/config.guess -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/build-aux/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/build-aux/config.h.in -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/build-aux/config.sub -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/build-aux/depcomp -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/build-aux/install-sh -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/build-aux/ltmain.sh -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/build-aux/missing -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/codegear/gtest.cbproj -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/codegear/gtest.groupproj -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/codegear/gtest_all.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/codegear/gtest_link.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/codegear/gtest_unittest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/codegear/gtest_unittest.cbproj -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/configure -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/configure.ac -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/fused-src/gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/fused-src/gtest/gtest-all.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/fused-src/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/fused-src/gtest/gtest.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/fused-src/gtest/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/fused-src/gtest/gtest_main.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/gtest.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/m4/gtest.m4 -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/m4/libtool.m4 -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/m4/ltoptions.m4 -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/m4/ltsugar.m4 -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/m4/ltversion.m4 -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/make/Makefile -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/msvc/gtest-md.sln -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/msvc/gtest.sln -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/msvc/gtest.vcproj -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/msvc/gtest_prod_test-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/msvc/gtest_prod_test-md.vcproj -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/msvc/gtest_prod_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/msvc/gtest_prod_test.vcproj -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/msvc/gtest_unittest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/msvc/gtest_unittest-md.vcproj -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/prime_tables.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample1.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample1.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample2.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample2.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample3-inl.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample4.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample4.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/scripts/gen_gtest_pred_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/scripts/gen_gtest_pred_impl.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/scripts/gtest-config.in -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/scripts/pump.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/scripts/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/scripts/test/Makefile -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/src/gtest-all.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/src/gtest-death-test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/src/gtest-filepath.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/src/gtest-port.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/src/gtest-printers.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/src/gtest-test-part.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/src/gtest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/src/gtest_main.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-death-test_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-death-test_ex_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-death-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-death-test_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-filepath_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-filepath_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-linked_ptr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-linked_ptr_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-listener_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-listener_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-message_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-options_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-param-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-param-test2_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-param-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-param-test_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-param-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-param-test_test.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-port_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-printers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-printers_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-test-part_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-test-part_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_all_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_break_on_failure_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_break_on_failure_unittest.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_break_on_failure_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_break_on_failure_unittest_.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_catch_exceptions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_catch_exceptions_test.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_catch_exceptions_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_catch_exceptions_test_.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_color_test.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_env_var_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_env_var_test_.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_filter_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_filter_unittest.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_filter_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_filter_unittest_.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_help_test.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_list_tests_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_list_tests_unittest.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_list_tests_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_list_tests_unittest_.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_no_test_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_no_test_unittest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_output_test.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_output_test_golden_lin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_output_test_golden_lin.txt -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_pred_impl_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_pred_impl_unittest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_premature_exit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_premature_exit_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_shuffle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_shuffle_test.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_shuffle_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_shuffle_test_.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_sole_header_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_sole_header_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_test_utils.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_throw_on_failure_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_throw_on_failure_ex_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_throw_on_failure_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_throw_on_failure_test.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_throw_on_failure_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_throw_on_failure_test_.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_uninitialized_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_uninitialized_test.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_uninitialized_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_uninitialized_test_.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_unittest.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_xml_outfile1_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_xml_outfile1_test_.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_xml_outfile2_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_xml_outfile2_test_.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_xml_outfiles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_xml_outfiles_test.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_xml_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_xml_output_unittest.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_xml_output_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_xml_output_unittest_.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/production.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/test/production.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Config/DebugProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Config/DebugProject.xcconfig -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Config/FrameworkTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Config/FrameworkTarget.xcconfig -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Config/General.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Config/General.xcconfig -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Config/ReleaseProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Config/ReleaseProject.xcconfig -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Config/StaticLibraryTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Config/StaticLibraryTarget.xcconfig -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Config/TestTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Config/TestTarget.xcconfig -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Samples/FrameworkSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Samples/FrameworkSample/Info.plist -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Samples/FrameworkSample/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Samples/FrameworkSample/runtests.sh -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.h -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Samples/FrameworkSample/widget_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Samples/FrameworkSample/widget_test.cc -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/Scripts/versiongenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/Scripts/versiongenerate.py -------------------------------------------------------------------------------- /src/third_party/gtest-1.7.0/xcode/gtest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/third_party/gtest-1.7.0/xcode/gtest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /src/value_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/value_test.cc -------------------------------------------------------------------------------- /src/writer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/src/writer_test.cc -------------------------------------------------------------------------------- /testcase/fail/array-01.toml: -------------------------------------------------------------------------------- 1 | x = [1, 2, 2 | -------------------------------------------------------------------------------- /testcase/fail/array-02.toml: -------------------------------------------------------------------------------- 1 | x = [1, 2, # foo bar ] 2 | 3 | -------------------------------------------------------------------------------- /testcase/fail/array-03.toml: -------------------------------------------------------------------------------- 1 | x = [1,,2] 2 | -------------------------------------------------------------------------------- /testcase/fail/array-04.toml: -------------------------------------------------------------------------------- 1 | x = [, 1, 2] 2 | 3 | -------------------------------------------------------------------------------- /testcase/fail/array-05.toml: -------------------------------------------------------------------------------- 1 | # typecheck should fail. 2 | x = [1, 1.0] 3 | 4 | -------------------------------------------------------------------------------- /testcase/fail/array-06.toml: -------------------------------------------------------------------------------- 1 | # typecheck should fail 2 | x = [true, "foo bar"] 3 | 4 | -------------------------------------------------------------------------------- /testcase/fail/boolean-01.toml: -------------------------------------------------------------------------------- 1 | foo = True 2 | -------------------------------------------------------------------------------- /testcase/fail/boolean-02.toml: -------------------------------------------------------------------------------- 1 | foo = False 2 | -------------------------------------------------------------------------------- /testcase/fail/datetime-01.toml: -------------------------------------------------------------------------------- 1 | d = 7-0-2 2 | -------------------------------------------------------------------------------- /testcase/fail/datetime-02.toml: -------------------------------------------------------------------------------- 1 | d = 1800-1-1 2 | -------------------------------------------------------------------------------- /testcase/fail/groupkey-01.toml: -------------------------------------------------------------------------------- 1 | [ -------------------------------------------------------------------------------- /testcase/fail/groupkey-02.toml: -------------------------------------------------------------------------------- 1 | [foo -------------------------------------------------------------------------------- /testcase/fail/groupkey-03.toml: -------------------------------------------------------------------------------- 1 | [foo 2 | ] -------------------------------------------------------------------------------- /testcase/fail/groupkey-04.toml: -------------------------------------------------------------------------------- 1 | [foo] [bar] 2 | -------------------------------------------------------------------------------- /testcase/fail/groupkey-05.toml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /testcase/fail/groupkey-06.toml: -------------------------------------------------------------------------------- 1 | [a.] 2 | -------------------------------------------------------------------------------- /testcase/fail/groupkey-07.toml: -------------------------------------------------------------------------------- 1 | [a..b] 2 | -------------------------------------------------------------------------------- /testcase/fail/groupkey-08.toml: -------------------------------------------------------------------------------- 1 | [.b] 2 | -------------------------------------------------------------------------------- /testcase/fail/groupkey-09.toml: -------------------------------------------------------------------------------- 1 | [.] 2 | -------------------------------------------------------------------------------- /testcase/fail/int-01.toml: -------------------------------------------------------------------------------- 1 | x = ++1 2 | -------------------------------------------------------------------------------- /testcase/fail/int-02.toml: -------------------------------------------------------------------------------- 1 | x = --1 2 | -------------------------------------------------------------------------------- /testcase/fail/multikey-01.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/fail/multikey-01.toml -------------------------------------------------------------------------------- /testcase/fail/string-01.toml: -------------------------------------------------------------------------------- 1 | x = """foo bar" 2 | 3 | -------------------------------------------------------------------------------- /testcase/fail/string-02.toml: -------------------------------------------------------------------------------- 1 | x = """foo bar"" 2 | 3 | -------------------------------------------------------------------------------- /testcase/fail/string-03.toml: -------------------------------------------------------------------------------- 1 | x = """foo bar''' 2 | 3 | -------------------------------------------------------------------------------- /testcase/fail/table-02.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/fail/table-02.toml -------------------------------------------------------------------------------- /testcase/success/array-01.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/success/array-01.toml -------------------------------------------------------------------------------- /testcase/success/array-table-01.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/success/array-table-01.toml -------------------------------------------------------------------------------- /testcase/success/array-table-02.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/success/array-table-02.toml -------------------------------------------------------------------------------- /testcase/success/boolean-01.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/success/boolean-01.toml -------------------------------------------------------------------------------- /testcase/success/datetime-01.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/success/datetime-01.toml -------------------------------------------------------------------------------- /testcase/success/datetime-02.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/success/datetime-02.toml -------------------------------------------------------------------------------- /testcase/success/float-01.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/success/float-01.toml -------------------------------------------------------------------------------- /testcase/success/inlinetable-01.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/success/inlinetable-01.toml -------------------------------------------------------------------------------- /testcase/success/integer-01.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/success/integer-01.toml -------------------------------------------------------------------------------- /testcase/success/string-01.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/success/string-01.toml -------------------------------------------------------------------------------- /testcase/success/table-01.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/success/table-01.toml -------------------------------------------------------------------------------- /testcase/success/table-02.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/success/table-02.toml -------------------------------------------------------------------------------- /testcase/success/table-03.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayah/tinytoml/HEAD/testcase/success/table-03.toml -------------------------------------------------------------------------------- /testcase/success/with-utf8-bom.toml: -------------------------------------------------------------------------------- 1 | [I] 2 | really = "hate utf8 BOM" 3 | --------------------------------------------------------------------------------