From b885519d3bedd0fad463c2d3aaa9770a443feb47 Mon Sep 17 00:00:00 2001 From: David Maxwell Date: Thu, 25 Oct 2018 17:32:18 -0800 Subject: [PATCH] fix failing SIGSEGV spec --- spec/std/kernel_spec.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/std/kernel_spec.cr b/spec/std/kernel_spec.cr index d92ea8556feb..bfe99b0f0223 100644 --- a/spec/std/kernel_spec.cr +++ b/spec/std/kernel_spec.cr @@ -224,7 +224,7 @@ end describe "seg fault" do it "reports SIGSEGV" do status, _, error = build_and_run <<-'CODE' - puts Pointer(Int64).new(0x00FEDCBA).value + puts Pointer(Int64).null.value CODE status.success?.should be_false