app_window 0.3.0

Cross-platform window library
Documentation
(base) drew@MacBookPro app_window % cargo test --test executor_bug_test --features=logwise_internal
   Compiling app_window v0.2.1 (/Users/drew/Code/app_window)
	Finished `test` profile [unoptimized + debuginfo] target(s) in 0.72s
	 Running tests/executor_bug_test.rs (target/debug/deps/executor_bug_test-e9377cf9406fbbfe)
=== Testing Main Thread Executor Nested Submission Bug ===

Running test_nested_main_thread_submit_bug...
  Final completion count: 0
  Debug log:
  FAILED: count_ok=false, outer_start_ok=false, inner_exec_ok=false, outer_after_ok=false
  This failure indicates the bug is present!
Running test_deep_nested_submissions...
  Deep nested test - Final completion count: 0
  FAILED: Expected 6 completions, got 0
  This failure indicates the bug is causing task drops!
Running test_debug_output_pattern...
  Look for the problematic debug pattern:
	before tasks 0
	pushed task 1
	before tasks 0  <- This should NOT be 0!
  PASSED (check debug output above for the bug pattern)
Running test_concurrent_submissions...
  Concurrent test - Final completion count: 0
  FAILED: Expected 20 completions, got 0
  This failure indicates the bug is causing task drops!

=== Test Results ===
nested_submission: FAIL
deep_nested: FAIL
debug_pattern: PASS
concurrent: FAIL

Passed: 1/4
Some tests failed - this indicates the bug is present!
error: test failed, to rerun pass `--test executor_bug_test`

Caused by:
  process didn't exit successfully: `/Users/drew/Code/app_window/target/debug/deps/executor_bug_test-e9377cf9406fbbfe` (exit status: 1)