aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/test_device_changed_callback.cpp
AgeCommit message (Collapse)Author
2023-11-10Non-functional change: clang-format testsPaul Adenot
2023-04-26Prevent running test that make use of audio input streams on backends that ↵Paul Adenot
don't implement it
2022-12-02Inline values for stream params in test_logging.cpp, undef defines in test ↵Paul Adenot
to avoid breaking unified builds when building tests in Firefox.
2020-03-31Remove test for registering device changed callback twiceChun-Min Chang
audiounit-rust backend will return an error instead of hitting an assertion when registering a callback by calling `cubeb_stream_register_device_changed_callback` without unregistering the registered callback. It's not possible to run a death test in gtest for the Rust API[1] [1] https://users.rust-lang.org/t/how-to-write-a-death-test-in-gtest-for-rust-apis/23575
2019-09-06test: unbreak on non-GTEST_HAS_DEATH_TEST platformsJan Beich
test/test_device_changed_callback.cpp:79:3: error: use of undeclared identifier 'ASSERT_DEATH' ASSERT_DEATH( ^
2019-03-30Make sure data_callback and state_callback are not null (#496)Chun-Min Chang
* Make sure data_callback and state_callback are not null * Check callbacks are valid in cubeb.c * Initialize stream with non-null callbacks
2019-01-06Make sure no active device changed callback when registering a new oneChun-Min Chang
2019-01-06Add tests for cubeb_stream_register_device_changed_callbackChun-Min Chang