├── .gitignore ├── 3rdparty └── gtest-1.8.0 │ ├── .gitignore │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Makefile.am │ ├── README.md │ ├── build-aux │ └── .keep │ ├── cmake │ └── internal_utils.cmake │ ├── codegear │ ├── gtest.cbproj │ ├── gtest.groupproj │ ├── gtest_all.cc │ ├── gtest_link.cc │ ├── gtest_main.cbproj │ └── gtest_unittest.cbproj │ ├── configure.ac │ ├── docs │ ├── AdvancedGuide.md │ ├── DevGuide.md │ ├── Documentation.md │ ├── FAQ.md │ ├── Primer.md │ ├── PumpManual.md │ ├── Samples.md │ ├── V1_5_AdvancedGuide.md │ ├── V1_5_Documentation.md │ ├── V1_5_FAQ.md │ ├── V1_5_Primer.md │ ├── V1_5_PumpManual.md │ ├── V1_5_XcodeGuide.md │ ├── V1_6_AdvancedGuide.md │ ├── V1_6_Documentation.md │ ├── V1_6_FAQ.md │ ├── V1_6_Primer.md │ ├── V1_6_PumpManual.md │ ├── V1_6_Samples.md │ ├── V1_6_XcodeGuide.md │ ├── V1_7_AdvancedGuide.md │ ├── V1_7_Documentation.md │ ├── V1_7_FAQ.md │ ├── V1_7_Primer.md │ ├── V1_7_PumpManual.md │ ├── V1_7_Samples.md │ ├── V1_7_XcodeGuide.md │ └── XcodeGuide.md │ ├── 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 │ │ ├── custom │ │ ├── gtest-port.h │ │ ├── gtest-printers.h │ │ └── gtest.h │ │ ├── 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-arch.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 │ ├── 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 │ ├── common.py │ ├── fuse_gtest_files.py │ ├── gen_gtest_pred_impl.py │ ├── gtest-config.in │ ├── pump.py │ ├── release_docs.py │ ├── upload.py │ └── upload_gtest.py │ ├── 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 │ │ ├── runtests.sh │ │ ├── widget.cc │ │ ├── widget.h │ │ └── widget_test.cc │ └── Scripts │ ├── runtests.sh │ └── versiongenerate.py ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── ROADMAP.md ├── cmake ├── colors.cmake ├── compilersetup.cmake ├── libq.pc.cmake.cfg └── projects.cmake ├── libs ├── p │ ├── CMakeLists.txt │ ├── include │ │ └── p │ │ │ ├── env.hpp │ │ │ ├── klv.hpp │ │ │ ├── pp.hpp │ │ │ ├── process.hpp │ │ │ └── serializable.hpp │ └── src │ │ ├── env.cpp │ │ └── process.cpp ├── q-test │ ├── CMakeLists.txt │ ├── include │ │ └── q-test │ │ │ ├── backend.hpp │ │ │ ├── backends │ │ │ ├── boost.hpp │ │ │ ├── catch.hpp │ │ │ ├── cppunit.hpp │ │ │ ├── doctest.hpp │ │ │ └── gtest.hpp │ │ │ ├── expect.hpp │ │ │ ├── fixture.hpp │ │ │ ├── main.hpp │ │ │ ├── q-test.hpp │ │ │ ├── spy.hpp │ │ │ └── stringify.hpp │ └── src │ │ └── dummy.cpp └── q │ ├── CMakeLists.txt │ ├── include │ └── q │ │ ├── abi.hpp │ │ ├── async_termination.hpp │ │ ├── backlog.hpp │ │ ├── bit_flags.hpp │ │ ├── block.hpp │ │ ├── blocking_dispatcher.hpp │ │ ├── channel.hpp │ │ ├── concurrency.hpp │ │ ├── concurrency_counter.hpp │ │ ├── detail │ │ ├── lib.hpp │ │ └── platform │ │ │ └── windows.hpp │ │ ├── endian.hpp │ │ ├── event_dispatcher.hpp │ │ ├── exception.hpp │ │ ├── exception │ │ ├── exception.hpp │ │ └── exception_errno.hpp │ │ ├── execution_context.hpp │ │ ├── expect.hpp │ │ ├── function.hpp │ │ ├── functional.hpp │ │ ├── lib.hpp │ │ ├── log.hpp │ │ ├── memory.hpp │ │ ├── mutex.hpp │ │ ├── options.hpp │ │ ├── pp.hpp │ │ ├── promise.hpp │ │ ├── promise │ │ ├── all.hpp │ │ ├── async_task.hpp │ │ ├── core.hpp │ │ ├── defer.hpp │ │ ├── delay.hpp │ │ ├── impl │ │ │ ├── fail.hpp │ │ │ ├── finally.hpp │ │ │ ├── rest.hpp │ │ │ ├── tap.hpp │ │ │ ├── tap_error.hpp │ │ │ └── then.hpp │ │ ├── make.hpp │ │ ├── promise.hpp │ │ ├── promisify.hpp │ │ ├── reject.hpp │ │ ├── signal.hpp │ │ ├── state.hpp │ │ └── with.hpp │ │ ├── q.hpp │ │ ├── queue.hpp │ │ ├── scheduler.hpp │ │ ├── scope.hpp │ │ ├── set_default.hpp │ │ ├── stacktrace.hpp │ │ ├── static_atomic.hpp │ │ ├── temporarily_copyable.hpp │ │ ├── thread.hpp │ │ ├── threadpool.hpp │ │ ├── time_set.hpp │ │ ├── timer.hpp │ │ ├── type_traits.hpp │ │ ├── type_traits │ │ ├── arguments.hpp │ │ ├── arguments_impl.hpp │ │ ├── convertible.hpp │ │ ├── core.hpp │ │ ├── fold.hpp │ │ ├── hierarchical_condition.hpp │ │ ├── operators.hpp │ │ └── two_fold.hpp │ │ └── types.hpp │ └── src │ ├── abi.cpp │ ├── block.cpp │ ├── blocking_dispatcher.cpp │ ├── detail │ ├── cpu.hpp │ ├── cpu_linux.cpp │ ├── cpu_osx.cpp │ ├── cpu_win32.cpp │ ├── exec.hpp │ ├── lib.cpp │ ├── numeric.hpp │ ├── stacktrace.hpp │ ├── stacktrace_android.cpp │ ├── stacktrace_default.cpp │ ├── stacktrace_linux.cpp │ ├── stacktrace_osx.cpp │ └── stacktrace_win32.cpp │ ├── exception.cpp │ ├── exception_errno.cpp │ ├── execution_context.cpp │ ├── function.cpp │ ├── lib.cpp │ ├── promise │ └── signal.cpp │ ├── q.cpp │ ├── queue.cpp │ ├── scheduler.cpp │ ├── stacktrace.cpp │ ├── thread.cpp │ └── threadpool.cpp ├── progs ├── benchmark │ ├── CMakeLists.txt │ └── main.cpp └── playground │ ├── CMakeLists.txt │ └── main.cpp └── tests ├── CMakeLists.txt ├── q ├── CMakeLists.txt └── src │ ├── arguments.cpp │ ├── backlog.cpp │ ├── bit_flags.cpp │ ├── byte_block.cpp │ ├── channel.cpp │ ├── core.hpp │ ├── execution_context.cpp │ ├── expect.cpp │ ├── function.cpp │ ├── functional.cpp │ ├── main.cpp │ ├── memory.cpp │ ├── options.cpp │ ├── promise │ ├── all.cpp │ ├── delay.cpp │ ├── fail.cpp │ ├── finally.cpp │ ├── forward.cpp │ ├── make.cpp │ ├── promisify.cpp │ ├── reflect.cpp │ ├── tap.cpp │ ├── tap_error.cpp │ ├── then.cpp │ └── with.cpp │ ├── set_default.cpp │ └── threadpool.cpp └── qtest ├── CMakeLists.txt └── src ├── core.hpp ├── expect ├── eq.cpp ├── gt.cpp ├── lt.cpp ├── ne.cpp ├── promises.cpp └── spy.cpp └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/.gitignore: -------------------------------------------------------------------------------- 1 | # python 2 | *.pyc 3 | -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/CHANGES -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/CONTRIBUTORS -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/LICENSE -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/Makefile.am -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/README.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/codegear/gtest.cbproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/codegear/gtest.groupproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/codegear/gtest_all.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/codegear/gtest_link.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/codegear/gtest_unittest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/codegear/gtest_unittest.cbproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/configure.ac -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/AdvancedGuide.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/DevGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/DevGuide.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/Documentation.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/FAQ.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/Primer.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/PumpManual.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/Samples.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_5_AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_5_AdvancedGuide.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_5_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_5_Documentation.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_5_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_5_FAQ.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_5_Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_5_Primer.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_5_PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_5_PumpManual.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_5_XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_5_XcodeGuide.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_6_AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_6_AdvancedGuide.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_6_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_6_Documentation.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_6_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_6_FAQ.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_6_Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_6_Primer.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_6_PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_6_PumpManual.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_6_Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_6_Samples.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_6_XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_6_XcodeGuide.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_7_AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_7_AdvancedGuide.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_7_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_7_Documentation.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_7_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_7_FAQ.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_7_Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_7_Primer.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_7_PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_7_PumpManual.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_7_Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_7_Samples.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/V1_7_XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/V1_7_XcodeGuide.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/docs/XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/docs/XcodeGuide.md -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/gtest.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/custom/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/custom/gtest-port.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/custom/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/custom/gtest-printers.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/custom/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/custom/gtest.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/gtest-port-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/gtest-port-arch.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/m4/gtest.m4 -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/msvc/gtest-md.sln -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/msvc/gtest.sln -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/msvc/gtest.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/msvc/gtest_prod_test-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/msvc/gtest_prod_test-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/msvc/gtest_prod_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/msvc/gtest_prod_test.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/msvc/gtest_unittest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/msvc/gtest_unittest-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/prime_tables.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample1.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample1.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample2.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample2.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample3-inl.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample4.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample4.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/scripts/common.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/scripts/gen_gtest_pred_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/scripts/gen_gtest_pred_impl.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/scripts/gtest-config.in -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/scripts/pump.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/scripts/release_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/scripts/release_docs.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/scripts/upload.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/scripts/upload_gtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/scripts/upload_gtest.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/src/gtest-all.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/src/gtest-death-test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/src/gtest-filepath.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/src/gtest-port.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/src/gtest-printers.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/src/gtest-test-part.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/src/gtest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/src/gtest_main.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-death-test_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-death-test_ex_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-death-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-death-test_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-filepath_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-filepath_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-linked_ptr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-linked_ptr_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-listener_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-listener_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-message_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-options_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-param-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-param-test2_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-param-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-param-test_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-param-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-param-test_test.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-port_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-printers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-printers_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-test-part_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-test-part_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_all_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_break_on_failure_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_break_on_failure_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_break_on_failure_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_break_on_failure_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_catch_exceptions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_catch_exceptions_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_catch_exceptions_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_catch_exceptions_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_color_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_env_var_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_env_var_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_filter_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_filter_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_filter_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_filter_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_help_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_list_tests_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_list_tests_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_list_tests_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_list_tests_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_no_test_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_no_test_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_output_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_output_test_golden_lin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_output_test_golden_lin.txt -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_pred_impl_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_pred_impl_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_premature_exit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_premature_exit_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_shuffle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_shuffle_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_shuffle_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_shuffle_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_sole_header_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_sole_header_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_test_utils.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_throw_on_failure_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_throw_on_failure_ex_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_throw_on_failure_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_throw_on_failure_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_throw_on_failure_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_throw_on_failure_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_uninitialized_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_uninitialized_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_uninitialized_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_uninitialized_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_xml_outfile1_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_xml_outfile1_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_xml_outfile2_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_xml_outfile2_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_xml_outfiles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_xml_outfiles_test.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_xml_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_xml_output_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_xml_output_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_xml_output_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/production.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/test/production.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/xcode/Config/DebugProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/xcode/Config/DebugProject.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/xcode/Config/FrameworkTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/xcode/Config/FrameworkTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/xcode/Config/General.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/xcode/Config/General.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/xcode/Config/ReleaseProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/xcode/Config/ReleaseProject.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/xcode/Config/StaticLibraryTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/xcode/Config/StaticLibraryTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/xcode/Config/TestTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/xcode/Config/TestTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/xcode/Samples/FrameworkSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/xcode/Samples/FrameworkSample/Info.plist -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/xcode/Samples/FrameworkSample/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/xcode/Samples/FrameworkSample/runtests.sh -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/xcode/Samples/FrameworkSample/widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/xcode/Samples/FrameworkSample/widget.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/xcode/Samples/FrameworkSample/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/xcode/Samples/FrameworkSample/widget.h -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/xcode/Samples/FrameworkSample/widget_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/xcode/Samples/FrameworkSample/widget_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /3rdparty/gtest-1.8.0/xcode/Scripts/versiongenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/3rdparty/gtest-1.8.0/xcode/Scripts/versiongenerate.py -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /cmake/colors.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/cmake/colors.cmake -------------------------------------------------------------------------------- /cmake/compilersetup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/cmake/compilersetup.cmake -------------------------------------------------------------------------------- /cmake/libq.pc.cmake.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/cmake/libq.pc.cmake.cfg -------------------------------------------------------------------------------- /cmake/projects.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/cmake/projects.cmake -------------------------------------------------------------------------------- /libs/p/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/p/CMakeLists.txt -------------------------------------------------------------------------------- /libs/p/include/p/env.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/p/include/p/env.hpp -------------------------------------------------------------------------------- /libs/p/include/p/klv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/p/include/p/klv.hpp -------------------------------------------------------------------------------- /libs/p/include/p/pp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/p/include/p/pp.hpp -------------------------------------------------------------------------------- /libs/p/include/p/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/p/include/p/process.hpp -------------------------------------------------------------------------------- /libs/p/include/p/serializable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/p/include/p/serializable.hpp -------------------------------------------------------------------------------- /libs/p/src/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/p/src/env.cpp -------------------------------------------------------------------------------- /libs/p/src/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/p/src/process.cpp -------------------------------------------------------------------------------- /libs/q-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q-test/CMakeLists.txt -------------------------------------------------------------------------------- /libs/q-test/include/q-test/backend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q-test/include/q-test/backend.hpp -------------------------------------------------------------------------------- /libs/q-test/include/q-test/backends/boost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q-test/include/q-test/backends/boost.hpp -------------------------------------------------------------------------------- /libs/q-test/include/q-test/backends/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q-test/include/q-test/backends/catch.hpp -------------------------------------------------------------------------------- /libs/q-test/include/q-test/backends/cppunit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q-test/include/q-test/backends/cppunit.hpp -------------------------------------------------------------------------------- /libs/q-test/include/q-test/backends/doctest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q-test/include/q-test/backends/doctest.hpp -------------------------------------------------------------------------------- /libs/q-test/include/q-test/backends/gtest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q-test/include/q-test/backends/gtest.hpp -------------------------------------------------------------------------------- /libs/q-test/include/q-test/expect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q-test/include/q-test/expect.hpp -------------------------------------------------------------------------------- /libs/q-test/include/q-test/fixture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q-test/include/q-test/fixture.hpp -------------------------------------------------------------------------------- /libs/q-test/include/q-test/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q-test/include/q-test/main.hpp -------------------------------------------------------------------------------- /libs/q-test/include/q-test/q-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q-test/include/q-test/q-test.hpp -------------------------------------------------------------------------------- /libs/q-test/include/q-test/spy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q-test/include/q-test/spy.hpp -------------------------------------------------------------------------------- /libs/q-test/include/q-test/stringify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q-test/include/q-test/stringify.hpp -------------------------------------------------------------------------------- /libs/q-test/src/dummy.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/q/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/CMakeLists.txt -------------------------------------------------------------------------------- /libs/q/include/q/abi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/abi.hpp -------------------------------------------------------------------------------- /libs/q/include/q/async_termination.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/async_termination.hpp -------------------------------------------------------------------------------- /libs/q/include/q/backlog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/backlog.hpp -------------------------------------------------------------------------------- /libs/q/include/q/bit_flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/bit_flags.hpp -------------------------------------------------------------------------------- /libs/q/include/q/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/block.hpp -------------------------------------------------------------------------------- /libs/q/include/q/blocking_dispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/blocking_dispatcher.hpp -------------------------------------------------------------------------------- /libs/q/include/q/channel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/channel.hpp -------------------------------------------------------------------------------- /libs/q/include/q/concurrency.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/concurrency.hpp -------------------------------------------------------------------------------- /libs/q/include/q/concurrency_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/concurrency_counter.hpp -------------------------------------------------------------------------------- /libs/q/include/q/detail/lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/detail/lib.hpp -------------------------------------------------------------------------------- /libs/q/include/q/detail/platform/windows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/detail/platform/windows.hpp -------------------------------------------------------------------------------- /libs/q/include/q/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/endian.hpp -------------------------------------------------------------------------------- /libs/q/include/q/event_dispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/event_dispatcher.hpp -------------------------------------------------------------------------------- /libs/q/include/q/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/exception.hpp -------------------------------------------------------------------------------- /libs/q/include/q/exception/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/exception/exception.hpp -------------------------------------------------------------------------------- /libs/q/include/q/exception/exception_errno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/exception/exception_errno.hpp -------------------------------------------------------------------------------- /libs/q/include/q/execution_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/execution_context.hpp -------------------------------------------------------------------------------- /libs/q/include/q/expect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/expect.hpp -------------------------------------------------------------------------------- /libs/q/include/q/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/function.hpp -------------------------------------------------------------------------------- /libs/q/include/q/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/functional.hpp -------------------------------------------------------------------------------- /libs/q/include/q/lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/lib.hpp -------------------------------------------------------------------------------- /libs/q/include/q/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/log.hpp -------------------------------------------------------------------------------- /libs/q/include/q/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/memory.hpp -------------------------------------------------------------------------------- /libs/q/include/q/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/mutex.hpp -------------------------------------------------------------------------------- /libs/q/include/q/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/options.hpp -------------------------------------------------------------------------------- /libs/q/include/q/pp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/pp.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/all.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/async_task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/async_task.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/core.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/defer.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/delay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/delay.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/impl/fail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/impl/fail.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/impl/finally.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/impl/finally.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/impl/rest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/impl/rest.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/impl/tap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/impl/tap.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/impl/tap_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/impl/tap_error.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/impl/then.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/impl/then.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/make.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/make.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/promise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/promise.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/promisify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/promisify.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/reject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/reject.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/signal.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/state.hpp -------------------------------------------------------------------------------- /libs/q/include/q/promise/with.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/promise/with.hpp -------------------------------------------------------------------------------- /libs/q/include/q/q.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/q.hpp -------------------------------------------------------------------------------- /libs/q/include/q/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/queue.hpp -------------------------------------------------------------------------------- /libs/q/include/q/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/scheduler.hpp -------------------------------------------------------------------------------- /libs/q/include/q/scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/scope.hpp -------------------------------------------------------------------------------- /libs/q/include/q/set_default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/set_default.hpp -------------------------------------------------------------------------------- /libs/q/include/q/stacktrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/stacktrace.hpp -------------------------------------------------------------------------------- /libs/q/include/q/static_atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/static_atomic.hpp -------------------------------------------------------------------------------- /libs/q/include/q/temporarily_copyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/temporarily_copyable.hpp -------------------------------------------------------------------------------- /libs/q/include/q/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/thread.hpp -------------------------------------------------------------------------------- /libs/q/include/q/threadpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/threadpool.hpp -------------------------------------------------------------------------------- /libs/q/include/q/time_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/time_set.hpp -------------------------------------------------------------------------------- /libs/q/include/q/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/timer.hpp -------------------------------------------------------------------------------- /libs/q/include/q/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/type_traits.hpp -------------------------------------------------------------------------------- /libs/q/include/q/type_traits/arguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/type_traits/arguments.hpp -------------------------------------------------------------------------------- /libs/q/include/q/type_traits/arguments_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/type_traits/arguments_impl.hpp -------------------------------------------------------------------------------- /libs/q/include/q/type_traits/convertible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/type_traits/convertible.hpp -------------------------------------------------------------------------------- /libs/q/include/q/type_traits/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/type_traits/core.hpp -------------------------------------------------------------------------------- /libs/q/include/q/type_traits/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/type_traits/fold.hpp -------------------------------------------------------------------------------- /libs/q/include/q/type_traits/hierarchical_condition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/type_traits/hierarchical_condition.hpp -------------------------------------------------------------------------------- /libs/q/include/q/type_traits/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/type_traits/operators.hpp -------------------------------------------------------------------------------- /libs/q/include/q/type_traits/two_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/type_traits/two_fold.hpp -------------------------------------------------------------------------------- /libs/q/include/q/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/include/q/types.hpp -------------------------------------------------------------------------------- /libs/q/src/abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/abi.cpp -------------------------------------------------------------------------------- /libs/q/src/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/block.cpp -------------------------------------------------------------------------------- /libs/q/src/blocking_dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/blocking_dispatcher.cpp -------------------------------------------------------------------------------- /libs/q/src/detail/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/detail/cpu.hpp -------------------------------------------------------------------------------- /libs/q/src/detail/cpu_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/detail/cpu_linux.cpp -------------------------------------------------------------------------------- /libs/q/src/detail/cpu_osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/detail/cpu_osx.cpp -------------------------------------------------------------------------------- /libs/q/src/detail/cpu_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/detail/cpu_win32.cpp -------------------------------------------------------------------------------- /libs/q/src/detail/exec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/detail/exec.hpp -------------------------------------------------------------------------------- /libs/q/src/detail/lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/detail/lib.cpp -------------------------------------------------------------------------------- /libs/q/src/detail/numeric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/detail/numeric.hpp -------------------------------------------------------------------------------- /libs/q/src/detail/stacktrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/detail/stacktrace.hpp -------------------------------------------------------------------------------- /libs/q/src/detail/stacktrace_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/detail/stacktrace_android.cpp -------------------------------------------------------------------------------- /libs/q/src/detail/stacktrace_default.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/detail/stacktrace_default.cpp -------------------------------------------------------------------------------- /libs/q/src/detail/stacktrace_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/detail/stacktrace_linux.cpp -------------------------------------------------------------------------------- /libs/q/src/detail/stacktrace_osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/detail/stacktrace_osx.cpp -------------------------------------------------------------------------------- /libs/q/src/detail/stacktrace_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/detail/stacktrace_win32.cpp -------------------------------------------------------------------------------- /libs/q/src/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/exception.cpp -------------------------------------------------------------------------------- /libs/q/src/exception_errno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/exception_errno.cpp -------------------------------------------------------------------------------- /libs/q/src/execution_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/execution_context.cpp -------------------------------------------------------------------------------- /libs/q/src/function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/function.cpp -------------------------------------------------------------------------------- /libs/q/src/lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/lib.cpp -------------------------------------------------------------------------------- /libs/q/src/promise/signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/promise/signal.cpp -------------------------------------------------------------------------------- /libs/q/src/q.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/q.cpp -------------------------------------------------------------------------------- /libs/q/src/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/queue.cpp -------------------------------------------------------------------------------- /libs/q/src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/scheduler.cpp -------------------------------------------------------------------------------- /libs/q/src/stacktrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/stacktrace.cpp -------------------------------------------------------------------------------- /libs/q/src/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/thread.cpp -------------------------------------------------------------------------------- /libs/q/src/threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/libs/q/src/threadpool.cpp -------------------------------------------------------------------------------- /progs/benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/progs/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /progs/benchmark/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/progs/benchmark/main.cpp -------------------------------------------------------------------------------- /progs/playground/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/progs/playground/CMakeLists.txt -------------------------------------------------------------------------------- /progs/playground/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/progs/playground/main.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/q/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/CMakeLists.txt -------------------------------------------------------------------------------- /tests/q/src/arguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/arguments.cpp -------------------------------------------------------------------------------- /tests/q/src/backlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/backlog.cpp -------------------------------------------------------------------------------- /tests/q/src/bit_flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/bit_flags.cpp -------------------------------------------------------------------------------- /tests/q/src/byte_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/byte_block.cpp -------------------------------------------------------------------------------- /tests/q/src/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/channel.cpp -------------------------------------------------------------------------------- /tests/q/src/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/core.hpp -------------------------------------------------------------------------------- /tests/q/src/execution_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/execution_context.cpp -------------------------------------------------------------------------------- /tests/q/src/expect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/expect.cpp -------------------------------------------------------------------------------- /tests/q/src/function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/function.cpp -------------------------------------------------------------------------------- /tests/q/src/functional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/functional.cpp -------------------------------------------------------------------------------- /tests/q/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/main.cpp -------------------------------------------------------------------------------- /tests/q/src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/memory.cpp -------------------------------------------------------------------------------- /tests/q/src/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/options.cpp -------------------------------------------------------------------------------- /tests/q/src/promise/all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/promise/all.cpp -------------------------------------------------------------------------------- /tests/q/src/promise/delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/promise/delay.cpp -------------------------------------------------------------------------------- /tests/q/src/promise/fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/promise/fail.cpp -------------------------------------------------------------------------------- /tests/q/src/promise/finally.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/promise/finally.cpp -------------------------------------------------------------------------------- /tests/q/src/promise/forward.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/promise/forward.cpp -------------------------------------------------------------------------------- /tests/q/src/promise/make.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/promise/make.cpp -------------------------------------------------------------------------------- /tests/q/src/promise/promisify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/promise/promisify.cpp -------------------------------------------------------------------------------- /tests/q/src/promise/reflect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/promise/reflect.cpp -------------------------------------------------------------------------------- /tests/q/src/promise/tap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/promise/tap.cpp -------------------------------------------------------------------------------- /tests/q/src/promise/tap_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/promise/tap_error.cpp -------------------------------------------------------------------------------- /tests/q/src/promise/then.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/promise/then.cpp -------------------------------------------------------------------------------- /tests/q/src/promise/with.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/promise/with.cpp -------------------------------------------------------------------------------- /tests/q/src/set_default.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/set_default.cpp -------------------------------------------------------------------------------- /tests/q/src/threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/q/src/threadpool.cpp -------------------------------------------------------------------------------- /tests/qtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/qtest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/qtest/src/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/qtest/src/core.hpp -------------------------------------------------------------------------------- /tests/qtest/src/expect/eq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/qtest/src/expect/eq.cpp -------------------------------------------------------------------------------- /tests/qtest/src/expect/gt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/qtest/src/expect/gt.cpp -------------------------------------------------------------------------------- /tests/qtest/src/expect/lt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/qtest/src/expect/lt.cpp -------------------------------------------------------------------------------- /tests/qtest/src/expect/ne.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/qtest/src/expect/ne.cpp -------------------------------------------------------------------------------- /tests/qtest/src/expect/promises.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/qtest/src/expect/promises.cpp -------------------------------------------------------------------------------- /tests/qtest/src/expect/spy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/qtest/src/expect/spy.cpp -------------------------------------------------------------------------------- /tests/qtest/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/q/HEAD/tests/qtest/src/main.cpp --------------------------------------------------------------------------------