Files
sx/examples/1323-ffi-objc-arc-00b-multi-instance.sx
agra 4e942b5373 test: migrate examples to XXXX-category-name layout + split expected streams
Rename all example tests/companions to the XXXX-category-test-name scheme
(per-category 100-blocks: basic 0010, types 0100, ... errors 1000,
diagnostics 1100, ffi 1200, ffi-objc 1300, ffi-jni 1400, vectors 1500,
platform 1600). Companions and dir/C fixtures move in lockstep with their
parent test; #import/#source/#include paths rewritten to match.

Expected output now lives in examples/expected/ (a sibling dir of the
tests) split into three streams per the new convention:
  <name>.exit / <name>.stdout / <name>.stderr  (+ optional <name>.ir)

run_examples.sh rewritten: scans examples/ and issues/ for an
expected/<name>.exit marker, captures stdout and stderr separately (no
more 2>&1), compares each stream + exit + optional IR snapshot.

Behavior validated unchanged: every renamed test reproduces its prior
merged output + exit (diffs limited to file paths/basenames embedded in
diagnostics + traces, which correctly reflect the new names). Suite:
292 passed, 0 failed. 50-smoke.sx split + issue relocation + docs follow
in subsequent commits.
2026-06-01 19:05:15 +03:00

75 lines
2.5 KiB
Plaintext

// ffi-objc-arc-00b — multi-instance allocator threading.
//
// Verifies that EACH sx-defined-class instance captures its own
// allocator and round-trips through it. Catches bugs where:
// - the captured allocator is shared across instances (one global
// slot instead of per-instance).
// - alloc captures the wrong allocator on the 2nd+ instance.
// - dealloc reads garbage if state[0] is overwritten between
// instances.
//
// Three instances → three alloc events → three dealloc events. The
// tracker observes exactly +3 / +3 deltas.
#import "modules/std.sx";
#import "modules/allocators.sx";
#import "modules/std/objc.sx";
#import "modules/compiler.sx";
SxMultiProbe :: #objc_class("SxMultiProbe") {
#extends NSObject;
a: s32;
b: s32;
alloc :: () -> *SxMultiProbe;
}
main :: () -> s32 {
inline if OS == .macos {
gpa := GPA.init();
tracker := TrackingAllocator.init(xx gpa);
push Context.{ allocator = xx tracker, data = null } {
alloc_before := tracker.alloc_count;
dealloc_before := tracker.dealloc_count;
f1 := SxMultiProbe.alloc();
f2 := SxMultiProbe.alloc();
f3 := SxMultiProbe.alloc();
alloc_after_three := tracker.alloc_count - alloc_before;
f1.release();
f2.release();
f3.release();
alloc_delta := tracker.alloc_count - alloc_before;
dealloc_delta := tracker.dealloc_count - dealloc_before;
// alloc_delta MAY include extras from autorelease/etc. but
// each SxMultiProbe.alloc contributes at least 1. Check the
// BALANCE: every alloc paired with a dealloc.
if dealloc_delta != alloc_delta {
print("FAIL: alloc/dealloc unbalanced; alloc={} dealloc={}\n",
alloc_delta, dealloc_delta);
return 1;
}
if alloc_after_three < 3 {
print("FAIL: 3 SxMultiProbe.alloc()s should produce >= 3 tracker allocs; saw {}\n",
alloc_after_three);
return 1;
}
if dealloc_delta < 3 {
print("FAIL: 3 release()s should produce >= 3 tracker deallocs; saw {}\n",
dealloc_delta);
return 1;
}
}
print("multi-instance round-trip: ok\n");
}
inline if OS != .macos {
print("skipped (not macos)\n");
}
0;
}