235 lines
6.6 KiB
Zig
235 lines
6.6 KiB
Zig
const tests = @import("tests.zig");
|
|
|
|
pub fn addCases(cases: &tests.CompareOutputContext) {
|
|
cases.addDebugSafety("calling panic",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\pub fn main() -> %void {
|
|
\\ @panic("oh no");
|
|
\\}
|
|
);
|
|
|
|
cases.addDebugSafety("out of bounds slice access",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\pub fn main() -> %void {
|
|
\\ const a = []i32{1, 2, 3, 4};
|
|
\\ baz(bar(a));
|
|
\\}
|
|
\\fn bar(a: []const i32) -> i32 {
|
|
\\ a[4]
|
|
\\}
|
|
\\fn baz(a: i32) { }
|
|
);
|
|
|
|
cases.addDebugSafety("integer addition overflow",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\error Whatever;
|
|
\\pub fn main() -> %void {
|
|
\\ const x = add(65530, 10);
|
|
\\ if (x == 0) return error.Whatever;
|
|
\\}
|
|
\\fn add(a: u16, b: u16) -> u16 {
|
|
\\ a + b
|
|
\\}
|
|
);
|
|
|
|
cases.addDebugSafety("integer subtraction overflow",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\error Whatever;
|
|
\\pub fn main() -> %void {
|
|
\\ const x = sub(10, 20);
|
|
\\ if (x == 0) return error.Whatever;
|
|
\\}
|
|
\\fn sub(a: u16, b: u16) -> u16 {
|
|
\\ a - b
|
|
\\}
|
|
);
|
|
|
|
cases.addDebugSafety("integer multiplication overflow",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\error Whatever;
|
|
\\pub fn main() -> %void {
|
|
\\ const x = mul(300, 6000);
|
|
\\ if (x == 0) return error.Whatever;
|
|
\\}
|
|
\\fn mul(a: u16, b: u16) -> u16 {
|
|
\\ a * b
|
|
\\}
|
|
);
|
|
|
|
cases.addDebugSafety("integer negation overflow",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\error Whatever;
|
|
\\pub fn main() -> %void {
|
|
\\ const x = neg(-32768);
|
|
\\ if (x == 32767) return error.Whatever;
|
|
\\}
|
|
\\fn neg(a: i16) -> i16 {
|
|
\\ -a
|
|
\\}
|
|
);
|
|
|
|
cases.addDebugSafety("signed integer division overflow",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\error Whatever;
|
|
\\pub fn main() -> %void {
|
|
\\ const x = div(-32768, -1);
|
|
\\ if (x == 32767) return error.Whatever;
|
|
\\}
|
|
\\fn div(a: i16, b: i16) -> i16 {
|
|
\\ @divTrunc(a, b)
|
|
\\}
|
|
);
|
|
|
|
cases.addDebugSafety("signed shift left overflow",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\error Whatever;
|
|
\\pub fn main() -> %void {
|
|
\\ const x = shl(-16385, 1);
|
|
\\ if (x == 0) return error.Whatever;
|
|
\\}
|
|
\\fn shl(a: i16, b: i16) -> i16 {
|
|
\\ a << b
|
|
\\}
|
|
);
|
|
|
|
cases.addDebugSafety("unsigned shift left overflow",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\error Whatever;
|
|
\\pub fn main() -> %void {
|
|
\\ const x = shl(0b0010111111111111, 3);
|
|
\\ if (x == 0) return error.Whatever;
|
|
\\}
|
|
\\fn shl(a: u16, b: u16) -> u16 {
|
|
\\ a << b
|
|
\\}
|
|
);
|
|
|
|
cases.addDebugSafety("integer division by zero",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\error Whatever;
|
|
\\pub fn main() -> %void {
|
|
\\ const x = div0(999, 0);
|
|
\\}
|
|
\\fn div0(a: i32, b: i32) -> i32 {
|
|
\\ @divTrunc(a, b)
|
|
\\}
|
|
);
|
|
|
|
cases.addDebugSafety("exact division failure",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\error Whatever;
|
|
\\pub fn main() -> %void {
|
|
\\ const x = divExact(10, 3);
|
|
\\ if (x == 0) return error.Whatever;
|
|
\\}
|
|
\\fn divExact(a: i32, b: i32) -> i32 {
|
|
\\ @divExact(a, b)
|
|
\\}
|
|
);
|
|
|
|
cases.addDebugSafety("cast []u8 to bigger slice of wrong size",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\error Whatever;
|
|
\\pub fn main() -> %void {
|
|
\\ const x = widenSlice([]u8{1, 2, 3, 4, 5});
|
|
\\ if (x.len == 0) return error.Whatever;
|
|
\\}
|
|
\\fn widenSlice(slice: []const u8) -> []const i32 {
|
|
\\ ([]const i32)(slice)
|
|
\\}
|
|
);
|
|
|
|
cases.addDebugSafety("value does not fit in shortening cast",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\error Whatever;
|
|
\\pub fn main() -> %void {
|
|
\\ const x = shorten_cast(200);
|
|
\\ if (x == 0) return error.Whatever;
|
|
\\}
|
|
\\fn shorten_cast(x: i32) -> i8 {
|
|
\\ i8(x)
|
|
\\}
|
|
);
|
|
|
|
cases.addDebugSafety("signed integer not fitting in cast to unsigned integer",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\error Whatever;
|
|
\\pub fn main() -> %void {
|
|
\\ const x = unsigned_cast(-10);
|
|
\\ if (x == 0) return error.Whatever;
|
|
\\}
|
|
\\fn unsigned_cast(x: i32) -> u32 {
|
|
\\ u32(x)
|
|
\\}
|
|
);
|
|
|
|
cases.addDebugSafety("unwrap error",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\error Whatever;
|
|
\\pub fn main() -> %void {
|
|
\\ %%bar();
|
|
\\}
|
|
\\fn bar() -> %void {
|
|
\\ return error.Whatever;
|
|
\\}
|
|
);
|
|
|
|
cases.addDebugSafety("cast integer to error and no code matches",
|
|
\\pub fn panic(message: []const u8) -> noreturn {
|
|
\\ @breakpoint();
|
|
\\ while (true) {}
|
|
\\}
|
|
\\pub fn main() -> %void {
|
|
\\ _ = bar(9999);
|
|
\\}
|
|
\\fn bar(x: u32) -> error {
|
|
\\ return error(x);
|
|
\\}
|
|
);
|
|
}
|