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.
44 lines
844 B
Plaintext
44 lines
844 B
Plaintext
#import "modules/std.sx";
|
|
SPECIAL_VALUE :u8: 42;
|
|
|
|
resolve :: (x: u8) -> s32 {
|
|
return 12 + x;
|
|
}
|
|
|
|
Foo :: struct {
|
|
a : u2; // this will have 0 as default
|
|
b : u8 = SPECIAL_VALUE;
|
|
c : u8 = ---; // default for c is undefined
|
|
d : u8 = #run xx resolve(5); // converts s32 to u8
|
|
}
|
|
|
|
main :: () {
|
|
a : Foo; // default value of 0
|
|
print("a 0 : {}\n", a);
|
|
a.a = 1;
|
|
// a.c is still undefined at this point
|
|
a.c = 8;
|
|
print("a 1 : {}\n", a);
|
|
|
|
large: f64 = 5989.5;
|
|
b : Foo = ---; // undefined
|
|
b.a = 1;
|
|
b.c = xx large; // converts f64 to u8
|
|
// expect stdout : "b: Foo{a:1, b: 42, c: 7, d: 12}"
|
|
print("b: {}", b);
|
|
print("\n");
|
|
|
|
f := Pack.{1,0,3,5,9,100,3.5};
|
|
print("{}\n", f);
|
|
}
|
|
|
|
Pack :: struct {
|
|
a: u1;
|
|
b: u2;
|
|
c: u8;
|
|
d: u32;
|
|
f: u64;
|
|
v: s32;
|
|
x: f32;
|
|
}
|